/*
	Theme Name: Eagle Technologies
	Theme URI: http://labs.am-themes.com/CINERGY_WP/
	Description: Cinergy is a theme built mainly for talented people who are looking to showcase their talent in a stylish and yet extremely modern way. Highly customizable and extremely user-friends, it provides a wide range of possibilities.
	Version: 9.9.9
	Author: buildcreate
	Author URI: http://themeforest.net/user/SnoopyIndustries
	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	Tags: light,theme-options,creative,responsive,unique,filtered portfolio
*/
/*==========================================================================
========================Adjust the body and global styles===================
==========================================================================*/
/* line 17, sass/style.scss */
body {
  font-family: "Lato", arial, sans-serif;
}

/* line 20, sass/style.scss */
p {
  margin: 0 0 30px;
}

/* line 23, sass/style.scss */
.full-width-container,
.single-full-width-blog-article,
.two-cols-blog-article {
  width: 100%;
}

/* line 28, sass/style.scss */
main[role="main"] > article {
  width: 100%;
}

/* line 31, sass/style.scss */
main[role="main"], aside[role="complementary"] {
  margin-top: 35px;
  margin-bottom: 35px;
}

/* line 35, sass/style.scss */
main[role="main"].contact-full-content {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 39, sass/style.scss */
main[role="main"] article {
  float: left;
  margin-bottom: 65px;
}

/* line 43, sass/style.scss */
main[role="main"] article.portfolio-article,
main[role="main"] article.team-item-wrap {
  margin-bottom: 30px;
}

/* line 47, sass/style.scss */
main[role="main"] article.fof-full-article {
  float: none;
}

/* line 50, sass/style.scss */
main[role="main"].contact-full-content article {
  margin-bottom: 0;
}

/* line 53, sass/style.scss */
main[role="main"] article.single-full-width-blog-article {
  margin-bottom: 0;
}

/*==========================================================================
========================Some multipurpose colors bellow=====================
==========================================================================*/
/*===========================
bottom footer 3 widgets wrap=
===========================*/
/* line 63, sass/style.scss */
.footer-widgets-container {
  background: #2c3e50;
}

/*===========================
===single page header wrap===
===========================*/
/* line 69, sass/style.scss */
.single-page-header-container {
  background: #ecf0f1;
}

/*==========================================================================
================Adjust the top header aka logo + top menu===================
==========================================================================*/
/*===========================
============The logo=========
===========================*/
/* line 80, sass/style.scss */
.logo-wrap {
  float: left;
  display: table;
  height: 118px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

@media screen and (max-width: 550px) {
  /* line 90, sass/style.scss */
  .logo-wrap a {
    display: block !important;
    margin-top: 62px;
  }

  /* line 95, sass/style.scss */
  .logo-wrap img {
    width: 300px;
  }
}
/* line 100, sass/style.scss */
.logo-wrap a {
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
}

/* line 105, sass/style.scss */
.logo-wrap a span {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 300;
  color: #7F8C8D;
}

/* line 112, sass/style.scss */
.menu_handler_wrap {
  background: #ffffff !important;
}

/* line 116, sass/style.scss */
button.btn-navbar {
  left: auto !important;
  right: 3% !important;
}

@media screen and (max-width: 550px) {
  /* line 122, sass/style.scss */
  button.btn-navbar {
    top: 0px !important;
  }
}
/*===========================
============The menu=========
===========================*/
/* line 131, sass/style.scss */
.utility-nav {
  background: #d9d9d9;
  position: absolute;
  right: 0;
  z-index: 9999;
  padding: .2em;
}

@media screen and (max-width: 1200px) {
  /* line 140, sass/style.scss */
  .utility-nav {
    display: none;
  }
}
/* line 145, sass/style.scss */
.utility-nav li {
  float: left;
  list-style: none;
}

/* line 151, sass/style.scss */
.utility-nav li a {
  display: block;
  float: right;
  padding: .3em 1em;
  font-size: 0.9em;
  color: #264073;
}

/* line 159, sass/style.scss */
.utility-nav li:first-child a {
  border-left: none;
}

/* line 163, sass/style.scss */
.mobile-utility-nav {
  display: none;
}

@media screen and (max-width: 1200px) {
  /* line 168, sass/style.scss */
  .mobile-utility-nav {
    display: block;
  }
}
/* line 173, sass/style.scss */
.menu_handler_wrap .container {
  position: relative;
  width: 95% !important;
  max-width: 1170px;
}

/*the hook for nav menus: .main-nav is the wrapper and has structure like this .main nav -> ul -> li -> a; */
/* line 185, sass/style.scss */
.main-nav {
  float: right;
  margin-bottom: 0 !important;
}

/* line 189, sass/style.scss */
.main-nav ul {
  margin: 0;
  /*this overwrites bootstrap 815 line*/
}

/* line 192, sass/style.scss */
.main-nav ul li {
  position: relative;
  border-bottom: 5px solid transparent;
  list-style: none;
  /*this overwrites default list style*/
  float: left;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 204, sass/style.scss */
.main-nav ul li a {
  /*width: 100px;*/
  min-width: 80px;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  background: transparent !important;
  color: #2c3e50;
  text-align: center;
  line-height: 125px;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 223, sass/style.scss */
.main-nav ul li a:hover {
  text-decoration: none;
}

/* line 226, sass/style.scss */
.main-nav li ul li a {
  text-align: left;
  text-indent: 10px;
}

/*the top level styling first*/
/* line 231, sass/style.scss */
.main-nav li > ul {
  display: none;
}

/* line 234, sass/style.scss */
.main-nav li:hover {
  background: #088ac8;
  border-bottom: 5px solid #fdd01d;
}

/* line 238, sass/style.scss */
.main-nav li:hover > a {
  color: #fff;
}

/* line 241, sass/style.scss */
.main-nav li:hover > ul {
  display: block;
  position: absolute;
  background: #fff;
  top: 130px;
  z-index: 500;
}

/* line 248, sass/style.scss */
.main-nav li > ul li a {
  width: 200px;
  height: 50px;
  line-height: 50px;
  color: #088ac8;
  border-bottom: 1px solid #d3d6d8;
}

/* line 255, sass/style.scss */
.main-nav li > ul li,
.main-nav li > ul li:hover {
  border-bottom: none;
}

/*the second level styling first*/
/* line 260, sass/style.scss */
.main-nav ul li ul li:hover > ul {
  left: 200px;
  top: 0;
}

/*the third level styling first*/
/* line 265, sass/style.scss */
.main-nav ul li ul li ul li:hover > ul {
  left: 200px;
  top: 0;
}

/*==========================================================================
=====================Adjust the bottom footer 3 widgets=====================
==========================================================================*/
/* line 273, sass/style.scss */
.footer-widgets {
  padding: 40px 0 70px;
}

/* line 277, sass/style.scss */
.footer-widget-heading {
  /*height: 50px;*/
  height: 5px;
  margin: 0;
  color: #7f8c8d;
  font-size: 23px;
}

/* line 284, sass/style.scss */
.footer-widget-heading, .footer-widget-heading a {
  /*margin-bottom: 33px;*/
  color: #7f8c8d;
  font-size: 24px;
  line-height: 70px;
  font-weight: normal;
  text-decoration: none;
}

/* line 293, sass/style.scss */
.footer-widget-heading a img {
  margin-top: -17px;
}

/* line 296, sass/style.scss */
.footer-widget-content p {
  padding: 0;
  color: #7f8c8d;
  font-size: 17px;
  font-weight: 300;
  line-height: 22px;
}

/* line 305, sass/style.scss */
.footer-widget-content .footer-social-icons {
  float: left;
  margin-top: 10px;
}

/* line 309, sass/style.scss */
.footer-widget-content .footer-social-icons a {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: 6px;
  margin-right: 6px;
}

/* line 317, sass/style.scss */
.footer-widget-content .footer-social-icons a:after,
.footer-widget-content .footer-social-icons a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% !important;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 333, sass/style.scss */
.footer-widget-content .footer-social-icons a.twitter-footer:after {
  background: url(img/footer-social-icons/twitter.jpg) no-repeat;
  opacity: 1;
}

/* line 337, sass/style.scss */
.footer-widget-content .footer-social-icons a.twitter-footer:before,
.footer-widget-content .footer-social-icons a.twitter-footer:hover:after {
  background: url(img/footer-social-icons/twitterh.jpg) no-repeat;
  opacity: 0;
}

/* line 342, sass/style.scss */
.footer-widget-content .footer-social-icons a.twitter-footer:hover:before {
  opacity: 1;
}

/* line 346, sass/style.scss */
.footer-widget-content .footer-social-icons a.vimeo-footer:after {
  background: url(img/footer-social-icons/vimeo.jpg) no-repeat;
  opacity: 1;
}

/* line 350, sass/style.scss */
.footer-widget-content .footer-social-icons a.vimeo-footer:before,
.footer-widget-content .footer-social-icons a.vimeo-footer:hover:after {
  background: url(img/footer-social-icons/vimeoh.png) no-repeat;
  opacity: 0;
}

/* line 355, sass/style.scss */
.footer-widget-content .footer-social-icons a.vimeo-footer:hover:before {
  opacity: 1;
}

/* line 359, sass/style.scss */
.footer-widget-content .footer-social-icons a.skype-footer:after {
  background: url(img/footer-social-icons/skype.jpg) no-repeat;
  opacity: 1;
}

/* line 363, sass/style.scss */
.footer-widget-content .footer-social-icons a.skype-footer:before,
.footer-widget-content .footer-social-icons a.skype-footer:hover:after {
  background: url(img/footer-social-icons/skypeh.png) no-repeat;
  opacity: 0;
}

/* line 368, sass/style.scss */
.footer-widget-content .footer-social-icons a.skype-footer:hover:before {
  opacity: 1;
}

/* line 372, sass/style.scss */
.footer-widget-content .footer-social-icons a.youtube-footer:after {
  background: url(img/footer-social-icons/youtube.jpg) no-repeat;
  opacity: 1;
}

/* line 376, sass/style.scss */
.footer-widget-content .footer-social-icons a.youtube-footer:before,
.footer-widget-content .footer-social-icons a.youtube-footer:hover:after {
  background: url(img/footer-social-icons/youtubeh.png) no-repeat;
  opacity: 0;
}

/* line 381, sass/style.scss */
.footer-widget-content .footer-social-icons a.youtube-footer:hover:before {
  opacity: 1;
}

/* line 385, sass/style.scss */
.footer-widget-content .footer-social-icons a.lin-footer:after {
  background: url(img/footer-social-icons/lin.jpg) no-repeat;
  opacity: 1;
}

/* line 389, sass/style.scss */
.footer-widget-content .footer-social-icons a.lin-footer:before,
.footer-widget-content .footer-social-icons a.lin-footer:hover:after {
  background: url(img/footer-social-icons/linh.png) no-repeat;
  opacity: 0;
}

/* line 394, sass/style.scss */
.footer-widget-content .footer-social-icons a.lin-footer:hover:before {
  opacity: 1;
}

/* line 398, sass/style.scss */
.footer-widget-content .footer-social-icons a.digg-footer:after {
  background: url(img/footer-social-icons/digg.jpg) no-repeat;
  opacity: 1;
}

/* line 402, sass/style.scss */
.footer-widget-content .footer-social-icons a.digg-footer:before,
.footer-widget-content .footer-social-icons a.digg-footer:hover:after {
  background: url(img/footer-social-icons/diggh.png) no-repeat;
  opacity: 0;
}

/* line 407, sass/style.scss */
.footer-widget-content .footer-social-icons a.digg-footer:hover:before {
  opacity: 1;
}

/* line 411, sass/style.scss */
.footer-widget-content .footer-social-icons a:first-child {
  margin-left: 0;
}

/* line 414, sass/style.scss */
.footer-widget-content .footer-social-icons a:last-child {
  margin-right: 0;
}

/*===========================
=footer recent posts widget==
===========================*/
/* line 421, sass/style.scss */
.footer-recent-posts {
  margin-bottom: 15px;
}

/* line 424, sass/style.scss */
.footer-recent-posts-heading {
  margin: 0;
}

/* line 427, sass/style.scss */
.footer-recent-posts-heading,
.footer-recent-posts-heading a {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 21px;
  font-weight: normal;
  color: #bdc3c7;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 443, sass/style.scss */
.footer-recent-posts-heading a:hover,
.footer-recent-posts-comments-number a:hover {
  color: #fff;
}

/* line 447, sass/style.scss */
.footer-recent-posts-time {
  color: #7f8c8d;
  font-weight: 300;
}

/* line 451, sass/style.scss */
.footer-recent-posts-comments-number,
.footer-recent-posts-comments-number a {
  color: #bdc3c7;
  margin-left: 5px;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/*===========================
====footer dribble widget====
===========================*/
/* line 470, sass/style.scss */
.footer-follow-on-dribble-widget a {
  position: relative;
  overflow: hidden;
  float: left;
  margin-right: 7px;
  margin-bottom: 7px;
}

/* line 477, sass/style.scss */
.footer-follow-on-dribble-widget a:after {
  content: '';
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: -85px;
  width: 85px;
  height: 53px;
  background: url("img/drible/dribble_hover.png") no-repeat;
  background-size: 100%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 495, sass/style.scss */
.footer-follow-on-dribble-widget a:hover:after {
  bottom: 0;
}

/*==========================================================================
=====================Adjust the bottom footer final one=====================
==========================================================================*/
/*===========================
=====adjust the left logo====
===========================*/
/*===========================
=====adjust the footer nav===
===========================*/
/* line 515, sass/style.scss */
footer[role="contentinfo"] .main-nav li:hover > ul {
  top: auto;
  bottom: 125px;
}

/* line 519, sass/style.scss */
footer[role="contentinfo"] .main-nav ul li ul li:hover > ul {
  top: auto;
  bottom: 0;
}

/* line 523, sass/style.scss */
footer[role="contentinfo"] .main-nav ul li ul li ul li:hover > ul {
  top: auto;
  bottom: 0;
}

/*==========================================================================
=======================Custom pages css bellow please=======================
==========================================================================*/
/* line 533, sass/style.scss */
.single-full-width-blog-teaser-img, .blog-pages-tease-img {
  position: relative;
  display: block;
  overflow: hidden;
}

/* line 538, sass/style.scss */
.single-full-width-blog-teaser-img img, .blog-pages-tease-img img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

/* line 545, sass/style.scss */
.single-full-width-blog-teaser-img:hover img, .blog-pages-tease-img:hover img {
  opacity: 0.7;
  transform: scale(1.2) rotate(2deg);
  -webkit-transform: scale(1.2) rotate(2deg);
  -moz-transform: scale(1.2) rotate(2deg);
  -ms-transform: scale(1.2) rotate(2deg);
  -o-transform: scale(1.2) rotate(2deg);
}

/*===========================
=========home pages==========
===========================*/
/*===========================
======fun facts studies======
===========================*/
/* line 561, sass/style.scss */
.fun-facts-item {
  width: 200px;
  display: inline-block;
  margin-top: 0;
  margin-left: 50px;
  margin-right: 50px;
}

/* line 568, sass/style.scss */
.count-number,
.count-number + span {
  font-size: 42px;
  color: #2c3e50;
  line-height: 170px;
}

/* line 574, sass/style.scss */
.fun-facts-counter {
  position: relative;
  width: 200px;
  height: 200px;
  border: 15px solid #fff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

/* line 588, sass/style.scss */
.fun-facts-heading {
  margin: 50px 0;
}

/* line 591, sass/style.scss */
.fun-facts-content-heading {
  margin: 20px 0;
  font-size: 30px;
  color: #2c3e50;
}

/* line 596, sass/style.scss */
.fun-facts-content {
  font-size: 16px;
  margin: 5px 0;
  line-height: 25px;
  color: #7f8c8d;
}

/* line 602, sass/style.scss */
.fun-facts-counter.green-counter-border {
  border-color: #27ae60;
}

/* line 605, sass/style.scss */
.fun-facts-counter.blue-counter-border {
  border-color: #5c85b1;
}

/* line 608, sass/style.scss */
.fun-facts-counter.yellow-counter-border {
  border-color: #fdc100;
}

/*===========================
======latest case studies====
===========================*/
/* line 614, sass/style.scss */
.case-studies-wrapper {
  background: url("img/owl-slider/owl-bg.png") center center;
  background-size: cover;
}

/*owl carousel*/
/* line 619, sass/style.scss */
a.owl-item {
  position: relative;
  padding: 0 5px 10px 0;
}

/* line 623, sass/style.scss */
a.owl-item img {
  box-shadow: 10px 10px rgba(192, 207, 213, 0.8);
  -moz-box-shadow: 10px 10px rgba(192, 207, 213, 0.8);
  -webkit-box-shadow: 10px 10px rgba(192, 207, 213, 0.8);
}

/* line 628, sass/style.scss */
a.owl-item:after,
a.owl-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 92.5%;
  height: 96.76375404530744%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 643, sass/style.scss */
a.owl-item:before {
  background: rgba(52, 160, 210, 0);
  max-width: 370px;
}

/* line 647, sass/style.scss */
a.owl-item:hover:after,
a.owl-item:hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 92.5%;
  height: 96.76375404530744%;
}

/* line 658, sass/style.scss */
a.owl-item:hover:before {
  background: rgba(52, 160, 210, 0.8);
}

/* line 661, sass/style.scss */
a.owl-item:hover:after {
  background: url("img/owl-slider/ohover.png") no-repeat;
  background-size: 60% 60%;
  left: 50%;
  margin-left: -30%;
  top: 50%;
  margin-top: -24%;
}

/*case studies*/
/* line 670, sass/style.scss */
.case-studies-content {
  padding-bottom: 40px;
}

/* line 673, sass/style.scss */
.case-studies-heading {
  font-size: 42px;
  line-height: 42px;
  font-weight: 300;
  margin-top: 90px;
  text-transform: uppercase;
  color: #2c3e50;
}

/* line 681, sass/style.scss */
.case-studies-header-container:hover {
  text-decoration: none !important;
}

/* line 684, sass/style.scss */
.case-studies-tagline {
  font-weight: 300;
  margin: 15px 0 55px;
  display: block;
  font-size: 24px;
  color: #2c3e50;
}

/*===========================
=======meet team dudes=======
===========================*/
/* line 694, sass/style.scss */
.meet-team-wrapper {
  background: url("img/homepage-icons/meet-team/team_bg.png") no-repeat top center;
  margin-top: 70px;
  margin-bottom: 50px;
}

/* line 700, sass/style.scss */
.meet-team-logo {
  margin: 0 0 95px;
}

/* line 703, sass/style.scss */
.meet-team-heading {
  font-size: 24px;
  margin: 16px 0 3px;
  color: #2c3e50;
}

/* line 708, sass/style.scss */
.meet-team-heading-function {
  font-size: 16px;
  margin: 0 0 10px;
  color: #7f8c8d;
}

/* line 713, sass/style.scss */
.meet-team-description {
  font-size: 16px;
  font-weight: 300;
  color: #7f8c8d;
}

/* line 718, sass/style.scss */
.meet-team-social-follow {
  margin: 25px 0;
}

/* line 721, sass/style.scss */
.meet-team-social-follow a {
  margin: 0 5px 0;
}

/* line 724, sass/style.scss */
.meet-team-pic {
  position: relative;
  display: block;
  overflow: hidden;
}

/* line 729, sass/style.scss */
.meet-team-pic:after,
.meet-team-pic:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 742, sass/style.scss */
.meet-team-pic:after {
  top: 50%;
  margin-top: -95px;
  left: 50%;
  margin-left: -95px;
  opacity: 0;
}

/* line 749, sass/style.scss */
.meet-team-pic:hover:after {
  background: url("img/homepage-icons/meet-team/hover.png") no-repeat;
  top: 50%;
  margin-top: -95px;
  left: 50%;
  margin-left: -95px;
  opacity: 1;
}

/* line 757, sass/style.scss */
.meet-team-pic:before {
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  border-bottom: 280px solid rgba(235, 94, 76, 0);
  border-right: 270px solid transparent;
}

/* line 765, sass/style.scss */
.meet-team-pic:hover:before {
  border-bottom: 280px solid rgba(235, 94, 76, 0.8);
  border-right: 270px solid transparent;
}

/*===========================
=========intro services======
===========================*/
/* line 773, sass/style.scss */
.intro-services-wrapper {
  margin: 75px 0;
}

/* line 776, sass/style.scss */
.intro-services-item {
  padding-bottom: 77px;
}

/* line 779, sass/style.scss */
.intro-services-img {
  float: left;
  margin-right: 25px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 788, sass/style.scss */
.intro-services-heading {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 25px;
  color: #2c3e50;
}

/* line 794, sass/style.scss */
.intro-services-content {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #98a3a6;
}

/* line 802, sass/style.scss */
.intro-services-item:hover .intro-services-img {
  opacity: .8;
}

/*===========================
==========404 pages==========
===========================*/
/* line 809, sass/style.scss */
.fof-wrapper {
  position: relative;
  height: 1000px;
  background: url("img/404bg.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
}

/* line 816, sass/style.scss */
.article-heading.fof-heading,
.article-heading.fof-heading a {
  margin: 0;
  padding-top: 90px;
  padding-bottom: 45px;
  font-weight: normal;
  font-size: 46px;
  color: #2c3e50;
  text-decoration: none;
}

/* line 826, sass/style.scss */
.article-heading.fof-heading a:nth-child(2) {
  float: left;
  width: 100%;
  padding-top: 25px;
  font-size: 25px;
}

/* line 832, sass/style.scss */
.fof-button,
.fof-button a {
  width: 370px;
  height: 70px;
  display: inline-block;
  background: white;
  line-height: 70px;
  font-weight: 300;
  font-size: 22px;
  color: #088ac8;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 853, sass/style.scss */
.fof-button:hover,
.fof-button a:hover {
  background: #149e50;
  text-decoration: none;
  color: #fff;
}

/*===========================
=========pricing pages=======
===========================*/
/* line 862, sass/style.scss */
.pricing-content {
  text-align: center;
  overflow: hidden;
}

/* line 866, sass/style.scss */
.pricing-tagline {
  padding: 10px 0 70px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #95a5a6;
}

/* line 873, sass/style.scss */
.pricing-tagline .pricing-important {
  border-bottom: 2px solid #95a5a6;
}

/* line 876, sass/style.scss */
.pricing-item-content {
  padding-top: 50px;
  background: #ecf0f1;
  position: relative;
  z-index: 100;
}

/* line 882, sass/style.scss */
.dark-edition .pricing-item-content {
  background: #2c3e50;
}

/* line 885, sass/style.scss */
.pricing-header-container {
  color: #fff;
  position: relative;
  background: #ecf0f1;
  padding-top: 25px;
}

/* line 891, sass/style.scss */
.dark-edition .pricing-header-container {
  background: #354a5e;
}

/* line 894, sass/style.scss */
.simple-edition-green .pricing-header-container {
  background: #149e50;
}

/* line 897, sass/style.scss */
.simple-edition-orange .pricing-header-container {
  background: #e46e0c;
}

/* line 900, sass/style.scss */
.simple-edition-violet .pricing-header-container {
  background: #7e2883;
}

/* line 903, sass/style.scss */
.simple-edition-blue .pricing-header-container {
  background: #088ac8;
}

/* line 906, sass/style.scss */
.pricing-header-container:after {
  content: '';
  position: absolute;
  z-index: 200;
  left: 0;
  bottom: -45px;
  width: 0;
  height: 0;
  border-left: 350px solid transparent;
  border-right: 350px solid transparent;
  border-top: 60px solid #ecf0f1;
  font-size: 0;
  left: 50%;
  margin-left: -350px;
  line-height: 0;
}

/* line 922, sass/style.scss */
.dark-edition .pricing-header-container:after {
  width: 400px;
  height: 300px;
  background: #354a5e;
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  left: 50%;
  margin-left: -200px;
}

/* line 933, sass/style.scss */
.dark-edition-lightgreen.dark-edition .pricing-header-container:after {
  background: #73af55;
}

/* line 936, sass/style.scss */
.simple-edition-green .pricing-header-container:after {
  border-top: 60px solid #149e50;
}

/* line 939, sass/style.scss */
.simple-edition-orange .pricing-header-container:after {
  border-top: 60px solid #e46e0c;
}

/* line 942, sass/style.scss */
.simple-edition-violet .pricing-header-container:after {
  border-top: 60px solid #7e2883;
}

/* line 945, sass/style.scss */
.simple-edition-blue .pricing-header-container:after {
  border-top: 60px solid #088ac8;
}

/* line 948, sass/style.scss */
.pricing-heading,
.pricing-heading-description,
.pricing-per-year {
  position: relative;
  z-index: 300;
}

/* line 954, sass/style.scss */
.pricing-heading {
  font-size: 31px;
  margin: 0 0 20px;
}

/* line 958, sass/style.scss */
.pricing-heading-description {
  font-size: 51px;
  margin: 0 0 3px;
}

/* line 962, sass/style.scss */
.pricing-per-year {
  font-weight: 300;
  font-size: 16px;
}

/* line 966, sass/style.scss */
.pricing-item-list-wrapper {
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
}

/* line 972, sass/style.scss */
.pricing-item-list-item {
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  color: #7f8c8d;
}

/* line 978, sass/style.scss */
.dark-edition .pricing-item-list-item {
  color: #fff;
}

/* line 981, sass/style.scss */
.pricing-item-list-wrapper .pricing-item-list-item:nth-child(even) {
  background: #dbe1e3;
}

/* line 984, sass/style.scss */
.dark-edition .pricing-item-list-wrapper .pricing-item-list-item:nth-child(even) {
  background: #354a5e;
}

/* line 987, sass/style.scss */
.article-content .pricing-buy {
  font-weight: bold;
  font-size: 18px;
  padding: 10px 45px;
  margin: 20px 0;
  display: inline-block;
  color: #fff;
  background: #2c3e50;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1002, sass/style.scss */
.dark-edition.article-content .pricing-buy {
  color: #088ac8;
  background: #fff;
}

/* line 1006, sass/style.scss */
.pricing-buy:hover,
.dark-edition.article-content .pricing-buy:hover {
  background: #088ac8;
  color: #fff;
}

/*===========================
==handle the deluxe edition==
===========================*/
/* line 1014, sass/style.scss */
.deluxe-edition {
  margin-top: -25px;
}

/* line 1017, sass/style.scss */
.deluxe-edition .pricing-header-container {
  padding: 40px 0 35px;
}

/*===========================
==========team pages=========
===========================*/
/* line 1024, sass/style.scss */
.team-item-wrap {
  position: relative;
}

/* line 1027, sass/style.scss */
.team-item {
  display: block;
}

/* line 1030, sass/style.scss */
.team-teaser-img {
  position: relative;
  float: left;
  width: 100%;
}

/* line 1035, sass/style.scss */
.team-teaser-img:after,
.team-teaser-img:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1048, sass/style.scss */
.team-teaser-img:before {
  bottom: -25px;
  left: 50%;
  margin-left: -25px;
  background: #f46a6a;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* line 1058, sass/style.scss */
.team-teaser-img:after {
  background: url("img/team/icons/icon.png") no-repeat;
  left: 50%;
  margin-left: -13px;
  bottom: -38px;
}

/* line 1064, sass/style.scss */
.team-item-wrap:hover .team-teaser-img:before {
  background: #8e44ad;
}

/* line 1067, sass/style.scss */
.team-content {
  float: left;
  width: 100%;
  background: #ecf0f1;
  border: 1px solid #dce2e3;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 1079, sass/style.scss */
.team-content .team-heading {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 16px;
  font-weight: 700;
  padding: 50px 0 0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

/* line 1092, sass/style.scss */
.team-content .team-heading-description {
  font-size: 16px;
  font-weight: normal;
  color: #95a5a6;
  padding: 0 0 15px;
  margin: 0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

/* line 1108, sass/style.scss */
.team-item-wrap {
  position: relative;
  z-index: 300;
  -webkit-transition: all 0.4s cubic-bezier(0.63, 0.33, 0.87, 1.24);
  -moz-transition: all 0.4s cubic-bezier(0.63, 0.33, 0.87, 1.24);
  -o-transition: all 0.4s cubic-bezier(0.63, 0.33, 0.87, 1.24);
  -ms-transition: all 0.4s cubic-bezier(0.63, 0.33, 0.87, 1.24);
  transition: all 0.4s cubic-bezier(0.63, 0.33, 0.87, 1.24);
}

/* line 1119, sass/style.scss */
.team-item-wrap:hover {
  cursor: pointer;
}

/* line 1122, sass/style.scss */
.team-item-wrap.active {
  z-index: 400;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transform: scale(1.54, 1.5) translateY(35px);
  -ms-transform: scale(1.54, 1.5) translateY(35px);
  -webkit-transform: scale(1.54, 1.5) translateY(35px);
}

/* line 1134, sass/style.scss */
.team-single-content-container {
  position: relative;
}

/* line 1137, sass/style.scss */
.team-item-wrap .team-single-content {
  position: absolute;
  width: 100%;
  left: 0;
  top: -150px;
  background: #ecf0f1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

/* line 1158, sass/style.scss */
.team-item-wrap .team-single-content:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 20px;
  background: #ecf0f1;
}

/* line 1168, sass/style.scss */
.team-item-wrap.active .team-content {
  border-bottom: none;
}

/* line 1171, sass/style.scss */
.team-item-wrap.active .team-content {
  border: none;
}

/* line 1174, sass/style.scss */
.team-item-wrap.active .team-single-content {
  top: 0;
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* line 1181, sass/style.scss */
.team-item-wrap.active .team-single-content div p {
  font-size: 14px;
}

/* line 1184, sass/style.scss */
.team-item-wrap.active .team-content .team-heading,
.team-item-wrap.active .team-content .team-heading-description,
.team-item-wrap.active .team-content .team-single-meta-icons {
  transform: scale(0.64935, 0.66667);
  -ms-transform: scale(0.64935, 0.66667);
  -webkit-transform: scale(0.64935, 0.66667);
}

/* line 1191, sass/style.scss */
.team-item-wrap.active .team-teaser-img:after,
.team-item-wrap.active .team-teaser-img:before {
  transform: scale(0.64935, 0.66667) rotate(45deg);
  -ms-transform: scale(0.64935, 0.66667) rotate(45deg);
  -webkit-transform: scale(0.64935, 0.66667) rotate(45deg);
}

/* line 1197, sass/style.scss */
.team-item-wrap.active .team-single-content div {
  margin-top: -28px;
  float: left;
}

/* line 1201, sass/style.scss */
.team-item-wrap.active .team-content .team-single-meta-icons {
  padding: 0;
  margin: 0px 0 20px -30px;
  width: 100%;
}

/* line 1206, sass/style.scss */
.team-item-wrap.active .team-single-content > div p {
  transform: scale(0.64935, 0.66667);
  -ms-transform: scale(0.64935, 0.66667);
  -webkit-transform: scale(0.64935, 0.66667);
  line-height: 1.5;
  _width: 500px;
  margin-left: -65px;
}

/* line 1215, sass/style.scss */
.team-item-wrap.active .team-single-content > div p:nth-child(1) {
  margin-bottom: -30px;
}

/* line 1218, sass/style.scss */
.team-item-wrap.active .team-single-content > div p:nth-child(2) {
  margin-bottom: -20px;
}

/* line 1221, sass/style.scss */
.team-item-wrap.active .team-teaser-img:before {
  background: #73af55;
}

/* line 1224, sass/style.scss */
.team-item-wrap.active .team-content .team-heading {
  margin-top: -10px;
}

/* line 1227, sass/style.scss */
.team-item-wrap.active .team-content .team-heading-description {
  margin-top: -20px;
  margin-bottom: -10px;
}

/* line 1231, sass/style.scss */
.team-item-wrap.active .team-single-meta-icons {
  padding: 20px 0 0;
}

/* line 1234, sass/style.scss */
.team-item-wrap.active .team-single-meta-icons a {
  margin: 0 5px;
}

/* line 1237, sass/style.scss */
.team-item-wrap.active .team-teaser-img:after {
  margin-left: -24px;
  bottom: -38px;
}

/*===========================
=======portfolio pages=======
===========================*/
/* line 1246, sass/style.scss */
.portfolio-wrapper .meta-info {
  width: 100%;
  clear: both;
}

/* line 1250, sass/style.scss */
.portfolio-wrapper .meta-info span {
  width: 33.33333333333333%;
  position: relative;
  line-height: 100px;
}

/* line 1255, sass/style.scss */
.article-heading.portfolio-heading,
.article-heading.portfolio-heading a {
  padding: 0;
  font-weight: bold;
  font-size: 17px;
  color: #2c3e50;
  text-transform: uppercase;
}

/* line 1263, sass/style.scss */
.portfolio-content-wrap {
  float: left;
  padding: 10px;
  background: #ecf0f1;
  border: 1px solid #dce2e3;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 1274, sass/style.scss */
.four-cols-portfolio .portfolio-content-wrap,
.three-cols-portfolio .portfolio-content-wrap {
  text-align: left;
}

/* line 1278, sass/style.scss */
.article-content.portfolio-content p {
  margin: 0;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #95a5a6;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
}

/* line 1291, sass/style.scss */
.article-content.portfolio-single-content p {
  padding-left: 0;
}

/* line 1294, sass/style.scss */
.portfolio-wrapper .meta-info .meta-info-buttons:before {
  margin: 0;
  position: absolute;
  left: 50%;
  margin-left: -9px;
  top: 17px;
}

/* line 1301, sass/style.scss */
.portfolio-teaser-pic {
  position: relative;
  float: left;
  width: 100%;
}

/* line 1306, sass/style.scss */
.portfolio-teaser-pic:after,
.portfolio-teaser-pic:before {
  content: '';
  position: absolute;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1317, sass/style.scss */
.portfolio-teaser-pic:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* line 1324, sass/style.scss */
.portfolio-teaser-pic:after {
  content: '\f0c1';
  opacity: 0;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  width: 42px;
  height: 42px;
  background: #fff;
  font-size: 1.2em;
  color: #088ac8;
  font-family: FontAwesome;
  line-height: 42px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}

/* line 1346, sass/style.scss */
.portfolio-teaser-pic:hover:after {
  opacity: 1;
}

/* line 1349, sass/style.scss */
.portfolio-teaser-pic:hover:before {
  background: #2c3e50;
  opacity: .7;
}

/* line 1354, sass/style.scss */
.portfolio-teaser-pic img {
  width: 100%;
}

/*===========================
=======portfolio slider======
===========================*/
/* line 1360, sass/style.scss */
.portfolio-project-slider-wrapper {
  position: relative;
}

/* line 1363, sass/style.scss */
.portfolio-project-slider-wrapper .portfolio-project-slider {
  width: 100%;
  float: left;
  padding-right: 70px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 1372, sass/style.scss */
.portfolio-project-slider figure,
ul.slides {
  margin: 0;
}

/* line 1377, sass/style.scss */
.portfolio-project-slider figcaption {
  width: 100%;
  float: left;
  padding: 30px;
  background: #ecf0f1;
  border: 1px solid #dce2e3;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: center;
  color: #58737a;
  font-style: italic;
}

/* line 1391, sass/style.scss */
.portfolio-project-slider-wrapper .meta-info {
  width: 70px;
  position: absolute;
  top: 61px;
  right: 0;
}

/* line 1397, sass/style.scss */
.portfolio-project-slider-wrapper .meta-info span {
  width: 100%;
}

/*===========================
===isotope portfolio pages===
===========================*/
/* line 1404, sass/style.scss */
#isotope-filters {
  margin: 0 0 24px;
  text-transform: uppercase;
}

/* line 1408, sass/style.scss */
#isotope-filters li {
  display: inline-block;
  margin: 0 10px;
}

/* line 1412, sass/style.scss */
#isotope-filters li a,
#isotope-filters li a:visited {
  font-weight: 700;
  color: #088ac8;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1424, sass/style.scss */
#isotope-filters li a:hover {
  color: #8d9aa6;
}

/* line 1427, sass/style.scss */
#isotope-filters li a.active {
  color: #8d9aa6;
}

/* line 1430, sass/style.scss */
.load-more-items {
  width: 100%;
  margin: 0px 0 45px;
  text-align: center;
  display: inline-block;
}

/*===========================
=======pagination tabs=======
===========================*/
/* line 1439, sass/style.scss */
.pagination-tabs {
  width: 100%;
  float: left;
  padding: 50px 0;
  border-top: 1px solid #edf1f2;
  text-align: center;
}

/* line 1447, sass/style.scss */
.pagination-tabs .pagination-list {
  margin: 0;
  padding: 0;
  display: inline-block;
}

/* line 1452, sass/style.scss */
.pagination-list li {
  list-style: none;
  float: left;
}

/* line 1456, sass/style.scss */
.pagination-list li a, .pagination-list li span {
  display: block;
  padding: 24px 25px;
  border-left: 1px solid #bdc3c7;
  border-top: 1px solid #bdc3c7;
  border-bottom: 1px solid #bdc3c7;
  text-transform: uppercase;
  text-decoration: none;
  color: #7f8c8d;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1472, sass/style.scss */
.pagination-list li span.current {
  background-color: #088ac8;
  color: white;
}

/* line 1476, sass/style.scss */
.pagination-list li:last-child a {
  border-right: 1px solid #bdc3c7;
}

/* line 1479, sass/style.scss */
.pagination-list li a:hover {
  background: #f4f4f4;
  color: #2c3e50;
}

/*===========================
====General input fields=====
===========================*/
/* line 1486, sass/style.scss */
.input-fields, select {
  position: relative;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  border: 1px solid #e1e1e1;
  color: #8d9aa6;
  text-indent: 15px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 1499, sass/style.scss */
.select-group {
  float: left;
  display: block;
  position: relative;
}

/* line 1504, sass/style.scss */
.select-group select {
  background: transparent;
}

/* line 1507, sass/style.scss */
#select-group:after {
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  width: 17px;
  height: 44px;
  z-index: 200;
  top: 15px;
  right: 0;
}

/* line 1517, sass/style.scss */
#select-group:before {
  content: "";
  color: #8d9aa6;
  font-family: FontAwesome;
  z-index: 100;
  position: absolute;
  width: 17px;
  height: 44px;
  background: white;
  right: 1px;
  top: 1px;
}

/* line 1529, sass/style.scss */
#select-group select {
  padding: 0;
  background: transparent;
  line-height: 46px;
  padding: 0;
  height: 46px;
  padding-top: 0;
  text-indent: 12px;
  color: #8d9aa6;
  z-index: 350;
  border: 1px solid #e1e1e1;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

@-moz-document url-prefix() {
  /* line 1549, sass/style.scss */
  #select-group select {
    padding-top: 13px;
    padding-left: 12px;
    text-indent: 0.01px;
    -moz-appearance: none !important;
    text-overflow: '';
  }
}
/* line 1558, sass/style.scss */
input.input-fields::-webkit-input-placeholder {
  color: #8d9aa6 !important;
  opacity: 1 !important;
  text-indent: 15px;
}

/* line 1563, sass/style.scss */
input.input-fields:-moz-placeholder {
  color: #8d9aa6 !important;
  text-indent: 15px;
  opacity: 1 !important;
}

/* line 1568, sass/style.scss */
input.input-fields::-moz-placeholder {
  color: #8d9aa6 !important;
  text-indent: 15px;
  opacity: 1 !important;
}

/*===========================
single pages top headings====
===========================*/
/* line 1577, sass/style.scss */
.single-page-header-container {
  /*height: 100px;*/
}

/* line 1580, sass/style.scss */
.contact-full-teaser-img {
  position: relative;
  float: left;
  max-width: 100% !important;
  max-height: 470px !important;
}

/* line 1586, sass/style.scss */
.contact-full-teaser-img iframe {
  max-width: 100%;
}

/* line 1589, sass/style.scss */
.single-page-heading, .single-page-heading a {
  display: inline;
  color: #8d9aa6;
  font-weight: 300;
  font-size: 24px;
  line-height: 100px;
  text-transform: uppercase;
}

/* line 1598, sass/style.scss */
.single-page-breadcrumbs {
  float: right;
  margin: 40px 0 0;
  padding: 0;
  color: #8d9aa6;
  line-height: 20px;
}

/* line 1605, sass/style.scss */
.single-page-breadcrumbs a {
  color: #088ac8;
}

/* line 1608, sass/style.scss */
.single-page-breadcrumbs {
  color: #8d9aa6;
  margin-right: 0;
}

/*===========================
single blog page with 2 cols=
===========================*/
/*===========================
the header bellow teaser img=
===========================*/
/* line 1624, sass/style.scss */
.meta-info-container {
  width: 100%;
  display: inline-block;
  background: #2c3e50;
}

/*===========================
==the 3b. meta info buttons==
===========================*/
/* line 1632, sass/style.scss */
.meta-info {
  float: left;
}

/* line 1635, sass/style.scss */
.meta-info .meta-info-buttons {
  float: left;
  width: 70px;
  height: 70px;
  text-align: center;
  color: #fff;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1648, sass/style.scss */
.meta-info .meta-info-buttons a {
  text-decoration: none;
  display: block;
  color: #fff;
  max-height: 100%;
}

/* line 1654, sass/style.scss */
.meta-info .meta-info-buttons:before {
  content: '';
  float: left;
  clear: both;
  width: 100%;
  height: 18px;
  margin: 17px 0 6px 27px;
}

/* line 1662, sass/style.scss */
.meta-info .likes-no {
  background: #e10c82;
}

/* line 1665, sass/style.scss */
.meta-info .likes-no:before {
  background: url("img/meta-icons/likes-no.png") no-repeat;
}

/* line 1668, sass/style.scss */
.meta-info .likes-no:hover {
  background: #ce0075;
}

/* line 1671, sass/style.scss */
.meta-info .comments-no {
  background: #264073;
}

/* line 1674, sass/style.scss */
.meta-info .comments-no:before {
  background: url("img/meta-icons/comments-no.png") no-repeat;
}

/* line 1677, sass/style.scss */
.meta-info .comments-no:hover {
  background: #162e60;
}

/* line 1680, sass/style.scss */
.meta-info .download-no {
  background: #149e50;
}

/* line 1683, sass/style.scss */
.meta-info .download-no:before {
  background: url("img/meta-icons/download-no.png") no-repeat;
}

/* line 1686, sass/style.scss */
.meta-info .download-no:hover {
  background: #018541;
}

/*===========================
the 3b. article info buttons=
===========================*/
/* line 1693, sass/style.scss */
.article-info {
  float: left;
  line-height: 70px;
}

/* line 1697, sass/style.scss */
.article-info .article-info-buttons {
  float: left;
  padding-left: 30px;
  padding-right: 30px;
  border-right: 1px solid #495b6e;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 1707, sass/style.scss */
.article-info .article-info-buttons:last-child {
  border-right: none;
}

/* line 1710, sass/style.scss */
.article-info .article-info-buttons:before {
  content: '';
  width: 18px;
  height: 18px;
  float: left;
  margin-top: 25px;
  margin-right: 10px;
}

/* line 1718, sass/style.scss */
.article-info-buttons, .article-info-buttons a {
  color: #95a5a6;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1727, sass/style.scss */
.article-info-buttons a:hover {
  color: #b4c7c8;
  text-decoration: none;
}

/* line 1731, sass/style.scss */
.article-info .publish-date:before {
  background: url("img/meta-icons/publish-date.png") no-repeat;
}

/* line 1734, sass/style.scss */
.article-info .author:before {
  background: url("img/meta-icons/author.png") no-repeat;
}

/* line 1737, sass/style.scss */
.article-info .tags:before {
  background: url("img/meta-icons/tags.png") no-repeat;
}

/*===========================
=the heading on the articles=
===========================*/
/* line 1744, sass/style.scss */
.article-heading, .article-heading a {
  margin: 0;
  padding-top: 40px;
  padding-bottom: 25px;
  font-weight: normal;
  font-size: 28px;
  color: #2c3e50;
  text-decoration: none;
}

/* line 1754, sass/style.scss */
.contact-full-article .article-heading {
  padding-top: 45px;
}

/* line 1757, sass/style.scss */
.article-heading a:nth-child(2) {
  float: left;
  width: 100%;
  padding-top: 0;
}

/* line 1763, sass/style.scss */
.portfolio-content h1 {
  margin-left: 0;
}

/* line 1767, sass/style.scss */
.isotope-portfolio .article-heading,
.isotope-portfolio .article-heading a {
  padding-left: 5px;
}

/* line 1772, sass/style.scss */
.portfolio-wrapper .article-heading,
.portfolio-wrapper .article-heading a {
  float: left;
  /*margin-top: -10px;*/
  margin-top: 0;
  padding-top: 0px;
  width: 100%;
  line-height: 2.3;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 700;
}

/* line 1785, sass/style.scss */
.portfolio-heading.equal-padding-text {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 1793, sass/style.scss */
.portfolio-2cols-heading.portfolio-heading {
  float: none;
  display: inline-block;
}

/* line 1797, sass/style.scss */
.portfolio-description-heading.article-heading,
.portfolio-description-heading.article-heading a {
  width: 100%;
  clear: both;
  margin: 15px 0 10px;
  padding-bottom: 0;
  font-size: 20px;
  text-transform: none;
}

/*===========================
===the content in articles===
===========================*/
/* line 1810, sass/style.scss */
.main-article-content a:hover {
  text-decoration: underline;
}

/* line 1813, sass/style.scss */
.article-content p {
  font-size: 17px;
  line-height: 30px;
  color: #2c3e50;
}

/* line 1818, sass/style.scss */
.single-full-width-blog-article .article-content p,
.single-with-sidebar-blog-content .article-content p {
  margin-bottom: 40px;
}

/* line 1822, sass/style.scss */
.single-full-width-blog-article .article-content a,
.single-with-sidebar-blog-content .article-content a {
  color: #088ac8;
}

/* line 1826, sass/style.scss */
.single-full-width-blog-article .article-content blockquote,
.single-with-sidebar-blog-content .article-content blockquote {
  margin-bottom: 40px;
  padding-left: 25px;
  border-left-color: #088ac8;
  font-style: italic;
  font-size: 17px;
  line-height: 30px;
}

/* line 1836, sass/style.scss */
.portfolio-content .article-content p {
  margin: 0;
  color: #2c3e50;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 25px;
}

/* line 1844, sass/style.scss */
.single-post-with-sidebar-cw {
  width: 800px;
}

/* line 1847, sass/style.scss */
main[role="main"] article.single-post-content-wrap {
  margin-bottom: 0;
}

/*===========================
the teaser content in article
===========================*/
/* line 1853, sass/style.scss */
.article-content a {
  color: #2c3e50;
  text-decoration: none;
}

/* line 1857, sass/style.scss */
a.read-more-button {
  float: left;
  margin-top: 25px;
  padding: 25px 50px;
  text-decoration: none;
  background: #088ac8;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1873, sass/style.scss */
a.read-more-button:hover {
  background: #0071a7;
}

/*===========================
==the comments in articles===
===========================*/
/* line 1880, sass/style.scss */
.comments-wrapper {
  padding-bottom: 40px;
}

/* line 1884, sass/style.scss */
.single-post-no-sidebar {
  float: left;
  width: 100%;
}

/* line 1888, sass/style.scss */
.single-post-no-sidebar > .span8 {
  float: none;
  display: table;
  margin: auto;
}

/* line 1893, sass/style.scss */
.comments-wrapper hr {
  float: left;
  width: 100%;
  height: 5px;
  border: none;
  background: #ecf0f1;
}

/* line 1900, sass/style.scss */
.comments-wrapper-heading {
  margin: 0 0 25px;
  font-size: 20px;
  color: #2c3e50;
  font-weight: normal;
  text-transform: uppercase;
}

/* line 1907, sass/style.scss */
.comments-wrapper ul {
  margin: 0;
}

/* line 1910, sass/style.scss */
.comments-wrapper ul li {
  width: 100%;
  float: left;
  clear: both;
  list-style: none;
}

/* line 1916, sass/style.scss */
.comments-wrapper .comment-body {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

/* line 1931, sass/style.scss */
.comments-wrapper .comment.level-2 {
  float: right;
  width: 90%;
}

/* line 1935, sass/style.scss */
.bypostauthor .comment-body {
  background: #ecf0f1;
}

/* line 1938, sass/style.scss */
.comments-wrapper ul li .comment-author {
  float: left;
  overflow: hidden;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

/* line 1945, sass/style.scss */
.comments-wrapper ul li .comment-meta-info,
.comments-wrapper ul li .comment-content,
.comments-wrapper ul li .comment-date {
  margin-left: 85px;
  color: #2c3e50;
  display: block;
}

/* line 1952, sass/style.scss */
.comments-wrapper ul li .comment-date {
  font-size: 13px;
}

/* line 1955, sass/style.scss */
.comments-wrapper ul li .url,
.comments-wrapper ul li .comment-reply-link {
  color: #088ac8;
  font-weight: bold;
}

/* line 1960, sass/style.scss */
.comments-wrapper ul li .comment-reply-link {
  float: right;
}

/* line 1963, sass/style.scss */
.comments-wrapper ul li .comment-meta-info {
  color: #98a3a6;
}

/* line 1967, sass/style.scss */
.comment-form .commentform-element input {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 1976, sass/style.scss */
.comment-form .commentform-element textarea {
  min-width: 100%;
  min-height: 160px;
  margin-bottom: 30px;
  padding-top: 15px;
  outline: none;
  font-family: "Lato";
  font-size: 14px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 1989, sass/style.scss */
.form-submit-button, #submit {
  float: right;
  padding: 25px;
  background: #27ae60;
  border: none;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2005, sass/style.scss */
.form-submit-button:hover, #submit:hover {
  background: #1e874a;
}

/*===========================
=======the contact maps======
===========================*/
/* line 2013, sass/style.scss */
#map-canvas {
  height: 100%;
}

/* line 2014, sass/style.scss */
.contact-full-teaser-img {
  width: 100%;
  float: left;
  height: 500px;
}

/*===========================
=======the contact form======
===========================*/
/* line 2022, sass/style.scss */
.contact-full-article {
  width: 100%;
}

/* line 2025, sass/style.scss */
.contact-form-wrapper {
  float: left;
  width: 100%;
  margin-top: 20px;
}

/* line 2030, sass/style.scss */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper select {
  width: 570px;
  margin-bottom: 30px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 2039, sass/style.scss */
.contact-form-wrapper #email,
.contact-form-wrapper #subject_title,
input.contact-info-submit {
  float: right;
}

/* line 2044, sass/style.scss */
.contact-info-submit {
  margin-bottom: 30px;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}

/*handle the inputs on contact page with a sidebar*/
/* line 2052, sass/style.scss */
.contact-with-sidebar .contact-form-wrapper input[type="text"],
.contact-with-sidebar .contact-form-wrapper select {
  width: 418px;
}

/* line 2056, sass/style.scss */
.contact-form-wrapper textarea {
  min-width: 100%;
  min-height: 160px;
  margin-bottom: 25px;
  padding-top: 15px;
  outline: none;
  font-family: "Lato";
  font-size: 14px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/*===========================
===the contact accordion=====
===========================*/
/* line 2073, sass/style.scss */
.contact-full-container {
  padding-bottom: 100px;
}

/* line 2076, sass/style.scss */
.faq-wrapper {
  float: left;
}

/* line 2079, sass/style.scss */
.container .faq-wrapper:nth-child(2) {
  float: right;
}

/* line 2083, sass/style.scss */
.faq-wrapper ul {
  margin: 0;
  padding: 0;
}

/* line 2087, sass/style.scss */
.faq-wrapper ul li {
  list-style: none;
}

/* line 2090, sass/style.scss */
.faq-heading {
  margin: 0 0 15px;
  padding: 0;
  font-size: 24px;
  font-weight: normal;
  color: #2c3e50;
}

/* line 2097, sass/style.scss */
.accordion-head {
  color: #088ac8;
  text-decoration: none;
  padding: 18px 20px;
  font-size: 16px;
  display: block;
  position: relative;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2111, sass/style.scss */
.accordion-head:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 21px;
  width: 12px;
  height: 12px;
  background: url("img/contact/contact_expand.jpg") no-repeat;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2126, sass/style.scss */
.accordion-content {
  display: none;
  padding: 0 20px 20px;
}

/* line 2130, sass/style.scss */
.accordion-content p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #8d9aa6;
}

/* line 2136, sass/style.scss */
.accordion-wrap li {
  position: relative;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2148, sass/style.scss */
.accordion-wrap li:before {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 100%;
}

/* line 2155, sass/style.scss */
.accordion-wrap li.opened .accordion-content,
.accordion-wrap li.opened .accordion-head,
.accordion-wrap li.opened .accordion-content p,
.accordion-wrap li.opened .accordion-content a,
a.accordion-head {
  color: #8d9aa6;
  text-decoration: none;
}

/* line 2163, sass/style.scss */
a.accordion-head {
  color: #088ac8;
}

/* line 2166, sass/style.scss */
a.accordion-head:hover {
  color: #8d9aa6;
}

/* line 2169, sass/style.scss */
.accordion-wrap li.opened .accordion-head:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 21px;
  width: 12px;
  height: 12px;
  background: url("img/contact/contact_close.jpg") no-repeat;
}

/* line 2178, sass/style.scss */
.accordion-wrap li.green-border:before {
  background: #149e50;
}

/* line 2181, sass/style.scss */
.accordion-wrap li.yellow-border:before {
  background: #fdd01d;
}

/* line 2184, sass/style.scss */
.accordion-wrap li.orange-border:before {
  background: #e46e0c;
}

/* line 2187, sass/style.scss */
.accordion-wrap li.red-border:before {
  background: #d7031c;
}

/* line 2190, sass/style.scss */
.accordion-wrap li.pink-border:before {
  background: #e10c82;
}

/* line 2193, sass/style.scss */
.accordion-wrap li:last-child {
  border-bottom: 1px solid #e1e1e1;
}

/*==========================================================================
==========================handle the sidebar widgets========================
==========================================================================*/
/* line 2199, sass/style.scss */
.sidebar-widget {
  width: 100%;
  margin-bottom: 30px;
  display: inline-block;
  background-color: #ffffff;
}

/* line 2205, sass/style.scss */
.sidebar-widget.contact-widget {
  margin-top: 20px;
}

/* line 2208, sass/style.scss */
.sidebar-widget p {
  margin: 0;
  padding: 0;
  color: #7f8c8d;
  line-height: 20px;
}

/* line 2215, sass/style.scss */
.main-sidebar-widget .sidebar-widget-title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 5px 5px 5px 15px;
  background: #2c3e50;
  font-size: 16px;
  font-weight: normal;
  color: #95a5a6;
  text-transform: uppercase;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 2230, sass/style.scss */
.main-sidebar-widget.contact-widget .sidebar-widget-content, .main-sidebar-widget.contact-widget .textwidget {
  background: #ecf0f1;
  border: 1px solid #e1e1e1;
  padding: 5px 5px 5px 15px;
}

/* line 2235, sass/style.scss */
.secondary-sidebar-widget .sidebar-widget-title {
  margin: 0;
  padding: 5px 5px 5px 0;
  font-size: 16px;
  line-height: 2;
  font-weight: normal;
  color: #2c3e50;
  text-transform: uppercase;
  background: none;
}

/* line 2245, sass/style.scss */
.sidebar-widget ul {
  margin: 0;
}

/* line 2248, sass/style.scss */
.sidebar-widget ul li {
  list-style: none;
  position: relative;
                   /*
height: 46px;
min-height: 46px;
max-height: 46px;*/
  border: 1px solid #e1e1e1;
  border-top: none;
  line-height: 2;
  color: #8d9aa6;
}

/* line 2261, sass/style.scss */
.sidebar-widget ul li a {
  color: #088ac8;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 2271, sass/style.scss */
.sidebar-widget select {
  width: 100%;
  padding-top: 10px;
  padding-left: 0;
}

/* line 2277, sass/style.scss */
.sidebar-widget select option {
  line-height: 40px !important;
  border-bottom: 1px solid #E1E1E1;
  padding: 10px 10px !important;
}

/* line 2283, sass/style.scss */
#wp-calendar {
  width: 95%;
  margin: 10px 10px;
}

/* line 2288, sass/style.scss */
#wp-calendar {
  text-align: center;
}

/* line 2292, sass/style.scss */
#wp-calendar #prev {
  text-align: left;
}

/* line 2296, sass/style.scss */
#wp-calendar #next {
  text-align: right;
}

/* line 2300, sass/style.scss */
.sidebar-widget ul li ul li {
  text-indent: 10px;
  border-left: 0;
}

/* line 2305, sass/style.scss */
.sidebar-widget ul li ul li ul li {
  text-indent: 20px;
  border-left: 0;
}

/* line 2310, sass/style.scss */
.sidebar-widget ul li {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2318, sass/style.scss */
.sidebar-widget ul li:hover {
  background: #ECF0F1;
  border-left: 4px solid #45A5D3;
}

/* line 2323, sass/style.scss */
.dribble-profile li:hover {
  background: none !important;
  border-left: none !important;
}

/* line 2328, sass/style.scss */
.sidebar-widget-title .rsswidget {
  color: #95A5A6;
}

/* line 2332, sass/style.scss */
.sidebar-widget ul li .rsswidget {
  width: 100%;
  display: block;
  border-bottom: 1px solid #e1e1e1;
}

/* line 2338, sass/style.scss */
.sidebar-widget ul li span.rss-date {
  background-color: #ECF0F1;
  display: block;
  width: 100%;
  padding: 10px 0;
  text-indent: 15px;
}

/* line 2346, sass/style.scss */
.sidebar-widget .rssSummary {
  padding: 10px 10px 0;
}

/* line 2350, sass/style.scss */
.sidebar-widget ul li cite {
  color: #088AC8;
  text-indent: 10px;
  display: block;
  padding-bottom: 10px;
}

/* line 2357, sass/style.scss */
.sidebar-search {
  margin-bottom: 0;
}

/* line 2361, sass/style.scss */
.sidebar-widget {
  background-color: none !important;
}

/* line 2365, sass/style.scss */
.tagcloud a {
  border: 1px solid #E1E1E1;
  color: #2C3E50;
  display: inline-block;
  font-size: 14px !important;
  line-height: 2;
  margin: 0 5px 5px 0;
  padding: 7px 21px;
}

/*===========================
=======project sidebar=======
===========================*/
/* line 2378, sass/style.scss */
.project-single-sidebar {
  width: 200px;
  float: left;
  margin-left: 30px;
  margin-top: 10px;
}

/* line 2384, sass/style.scss */
.project-single-sidebar-container {
  display: block;
}

/* line 2387, sass/style.scss */
.project-single-sidebar-heading {
  background: #11a8ab;
  color: #fff;
  font-weight: normal;
  font-size: 18px;
  width: 100%;
  padding: 7px 18px;
  float: left;
  margin-bottom: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 2401, sass/style.scss */
.project-single-sidebar-content {
  background: #394264;
  padding: 0 18px;
  float: left;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 2411, sass/style.scss */
.project-single-description-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 2416, sass/style.scss */
.project-single-description-item {
  margin: 15px 0;
  color: #a9b5e6;
}

/* line 2420, sass/style.scss */
.project-single-description-item:after {
  content: '';
  float: left;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  margin-right: 5px;
}

/* line 2428, sass/style.scss */
.project-single-description-item.project-date:after {
  background: url("img/portfolio/single/meta-icons/project-date.png") no-repeat;
}

/* line 2431, sass/style.scss */
.project-single-description-item.project-tags:after {
  background: url("img/portfolio/single/meta-icons/project-tags.png") no-repeat;
}

/* line 2434, sass/style.scss */
.project-single-description-item.project-likes:after {
  background: url("img/portfolio/single/meta-icons/project-likes.png") no-repeat;
}

/* line 2437, sass/style.scss */
.project-single-description-item.project-downloads:after {
  background: url("img/portfolio/single/meta-icons/project-downloads.png") no-repeat;
}

/* line 2440, sass/style.scss */
.project-single-description-item.project-awards:after {
  background: url("img/portfolio/single/meta-icons/project-awards.png") no-repeat;
}

/* line 2443, sass/style.scss */
.project-single-description-item.project-link:after {
  background: url("img/portfolio/single/meta-icons/project-link.png") no-repeat;
}

/* line 2446, sass/style.scss */
.project-single-description-item.project-link a {
  text-decoration: none;
  color: #a9b5e6;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2456, sass/style.scss */
.project-single-description-item.project-link a:hover {
  text-decoration: none;
  color: #c3cef6;
}

/*===========================
=======contact widget========
===========================*/
/* line 2464, sass/style.scss */
.main-sidebar-widget.contact-widget address {
  line-height: 23px;
  font-size: 13px;
  padding-top: 10px;
  color: #7f8c8d;
}

/*===========================
=======search widget=========
===========================*/
/* line 2473, sass/style.scss */
#search-field {
  width: 100%;
}

/* line 2476, sass/style.scss */
#search-submit {
  float: right;
  width: 14px;
  height: 14px;
  position: relative;
  margin-top: -31px;
  margin-right: 15px;
  background: url("img/search-button.png") no-repeat;
  border: none;
}

/*===========================
=========lists rundown=======
===========================*/
/* line 2490, sass/style.scss */
.lists-rundown li a {
  display: block;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2499, sass/style.scss */
.lists-rundown li a:hover {
  background: #ecf0f1;
}

/* line 2502, sass/style.scss */
.lists-rundown li:hover:before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #45a5d3;
}

/* line 2511, sass/style.scss */
.lists-rundown li:first-child:hover:before {
  height: 100%;
  top: 0;
}

/* line 2515, sass/style.scss */
.lists-rundown-no {
  margin-left: 5px;
  color: #7f8c8d;
}

/*===========================
latest-blog-posts-rundown====
===========================*/
/* line 2524, sass/style.scss */
.latest-blog-post-article li {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* line 2529, sass/style.scss */
.latest-blog-post-article li:nth-child(3n+2) {
  background: #ecf0f1;
}

/* line 2532, sass/style.scss */
.latest-blog-post-article li:nth-child(3n+2) a {
  display: inline-block;
  color: #7f8c8d;
}

/* line 2536, sass/style.scss */
.latest-blog-post-article li:nth-child(3n+3) {
  text-indent: 0;
  height: auto;
  max-height: inherit;
}

/* line 2541, sass/style.scss */
.latest-blog-post-article li:nth-child(3n+3) a {
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #7f8c8d;
  line-height: 26px;
}

/*===========================
=====tags list rundows=======
===========================*/
/* line 2552, sass/style.scss */
ul.tags-lists li {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  /*
  padding: 5px 10px;
  height: 28px;
  min-height: 28px;
  max-height: 28px;
  margin-bottom: 5px;
  margin-right: 5px;*/
  border: 1px solid #e1e1e1;
  /*line-height: 28px;*/
  color: #2c3e50;
  text-indent: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2574, sass/style.scss */
ul.tags-lists li:hover {
  border-color: #088ac8;
}

/* line 2577, sass/style.scss */
ul.tags-lists li a {
  padding: 7px 21px;
  float: left;
  line-height: 2;
  color: #2c3e50;
}

/* line 2584, sass/style.scss */
ul.tags-lists li a:hover {
  color: #088ac8;
  background: #fff;
}

/* line 2588, sass/style.scss */
ul.tags-lists li:hover:before {
  display: none;
}

/*===========================
=======dribble-profile=======
===========================*/
/* line 2595, sass/style.scss */
ul.dribble-profile li {
  float: left;
  width: 85px;
  height: 85px;
  min-height: 85px;
  max-height: 85px;
  border: none;
  padding: 0;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* line 2606, sass/style.scss */
ul.dribble-profile li a {
  padding: 0;
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
}

/* line 2613, sass/style.scss */
ul.dribble-profile li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -85px;
  width: 85px;
  height: 53px;
  background: url("img/drible/dribble_hover.png") no-repeat;
  background-size: 100%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 2629, sass/style.scss */
ul.dribble-profile li a:hover:after {
  bottom: 0;
}

/* line 2632, sass/style.scss */
ul.dribble-profile li a img {
  float: left;
}

/* line 2635, sass/style.scss */
.dribble-profile li:hover:before {
  display: none;
}

/* line 2640, sass/style.scss */
.fullwidthbanner-container {
  height: 600px;
  width: 100% !important;
  position: relative;
  padding: 0;
  max-height: 600px !important;
  overflow: hidden;
}

/* line 2652, sass/style.scss */
.simple-caption {
  padding: 20px 50px;
  color: #2c3e50;
  font-size: 30px;
  -webkit-transform: none !important;
  transform: none !important;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

/* line 2662, sass/style.scss */
.simple-caption.with-bg-slim {
  background: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* line 2666, sass/style.scss */
.simple-caption.title-caption {
  padding-left: 0 !important;
  font-weight: 400 !important;
}

/* line 2670, sass/style.scss */
.aproved-caption {
  background: url("img/rev_slider/slide2/caption_img_1.png") no-repeat left center;
  font-weight: 300;
}

/* line 2674, sass/style.scss */
.multiple-captions-wrapper {
  max-width: 498px !important;
}

/* line 2677, sass/style.scss */
.multiple-captions-wrapper .boxed-captions {
  float: right;
  clear: both;
  margin-top: 3px;
}

/* line 2682, sass/style.scss */
.multiple-captions-wrapper2 {
  max-width: 600px;
}

/* line 2685, sass/style.scss */
.multiple-captions-wrapper2 .misc-captions {
  float: left;
  clear: both;
}

/* line 2689, sass/style.scss */
.button-caption {
  position: relative;
  padding: 20px 50px 20px 30px;
  background: #fff;
  color: #088ac8;
  font-size: 20px;
  border: 5px solid rgba(90, 90, 90, 0.1) !important;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

/* line 2701, sass/style.scss */
.button-caption.follow-link:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 15px;
  width: 24px;
  height: 11px;
  background: url("img/rev_slider/slide3/caption_img_1.png") no-repeat right center;
}

/* line 2711, sass/style.scss */
.t-button-caption {
  float: left;
  margin-top: 15px;
  margin-left: 15px;
  padding: 20px 20px 20px 30px;
  background: #fff;
  color: #088ac8;
  font-size: 20px;
  border: 5px solid rgba(90, 90, 90, 0.1) !important;
  font-weight: 400 !important;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

/* line 2726, sass/style.scss */
.t-button-caption > img {
  margin-left: 20px;
}

/* line 2729, sass/style.scss */
.para-caption {
  position: relative;
  max-width: 500px;
  line-height: 50px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
}

/* line 2738, sass/style.scss */
.para-caption p {
  color: #2c3e50;
}

/* line 2743, sass/style.scss */
.with-left-border.pink-border:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 125px;
  left: 0;
  top: 15px;
  background: #e10c82;
}

/* line 2752, sass/style.scss */
.border-left {
  border-left: 4px solid #fff !important;
}

/* line 2755, sass/style.scss */
.border-left.yellow-border {
  border-color: #ebc838 !important;
}

/* line 2758, sass/style.scss */
.border-left.green-border {
  border-color: #3baa6c !important;
}

/* line 2761, sass/style.scss */
.border-left.violet-border {
  border-color: #de348a !important;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
/* line 2774, sass/style.scss */
.isotope-item {
  z-index: 2;
}

/* line 2778, sass/style.scss */
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
/* line 2785, sass/style.scss */
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

/* line 2794, sass/style.scss */
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

/* line 2802, sass/style.scss */
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
/* line 2812, sass/style.scss */
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
/* line 2827, sass/style.scss */
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/**** Isotope styles ****/
/* line 2842, sass/style.scss */
.element {
  width: 110px;
  height: 110px;
  margin: 5px;
  float: left;
  overflow: hidden;
  position: relative;
  background: #888;
  color: #222;
  -webkit-border-top-right-radius: 1.2em;
  -moz-border-radius-topright: 1.2em;
  border-top-right-radius: 1.2em;
}

/* line 2856, sass/style.scss */
.element.alkali {
  background: #F00;
  background: red;
}

/* line 2857, sass/style.scss */
.element.alkaline-earth {
  background: #F80;
  background: #ff9900;
}

/* line 2858, sass/style.scss */
.element.lanthanoid {
  background: #FF0;
  background: #ccff00;
}

/* line 2859, sass/style.scss */
.element.actinoid {
  background: #0F0;
  background: #33ff00;
}

/* line 2860, sass/style.scss */
.element.transition {
  background: #0F8;
  background: #00ff66;
}

/* line 2861, sass/style.scss */
.element.post-transition {
  background: #0FF;
  background: cyan;
}

/* line 2862, sass/style.scss */
.element.metalloid {
  background: #08F;
  background: #0066ff;
}

/* line 2863, sass/style.scss */
.element.other.nonmetal {
  background: #00F;
  background: #3300ff;
}

/* line 2864, sass/style.scss */
.element.halogen {
  background: #F0F;
  background: #cc00ff;
}

/* line 2865, sass/style.scss */
.element.noble-gas {
  background: #F08;
  background: #ff0099;
}

/* line 2868, sass/style.scss */
.element * {
  position: absolute;
  margin: 0;
}

/* line 2873, sass/style.scss */
.element .symbol {
  left: 0.2em;
  top: 0.4em;
  font-size: 3.8em;
  line-height: 1.0em;
  color: #FFF;
}

/* line 2880, sass/style.scss */
.element.large .symbol {
  font-size: 4.5em;
}

/* line 2884, sass/style.scss */
.element.fake .symbol {
  color: #000;
}

/* line 2888, sass/style.scss */
.element .name {
  left: 0.5em;
  bottom: 1.6em;
  font-size: 1.05em;
}

/* line 2894, sass/style.scss */
.element .weight {
  font-size: 0.9em;
  left: 0.5em;
  bottom: 0.5em;
}

/* line 2900, sass/style.scss */
.element .number {
  font-size: 1.25em;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  right: 0.5em;
  top: 0.5em;
}

/* line 2908, sass/style.scss */
.variable-sizes .element.width2 {
  width: 230px;
}

/* line 2910, sass/style.scss */
.variable-sizes .element.height2 {
  height: 230px;
}

/* line 2912, sass/style.scss */
.variable-sizes .element.width2.height2 {
  font-size: 2.0em;
}

/* line 2916, sass/style.scss */
.element.large,
.variable-sizes .element.large,
.variable-sizes .element.large.width2.height2 {
  font-size: 3.0em;
  width: 350px;
  height: 350px;
  z-index: 100;
}

/* line 2925, sass/style.scss */
.clickable .element:hover {
  cursor: pointer;
}

/* line 2929, sass/style.scss */
.clickable .element:hover h3 {
  text-shadow: 0 0 10px white, 0 0 10px white;
}

/* line 2936, sass/style.scss */
.clickable .element:hover h2 {
  color: white;
}

/**** Infinite Scroll ****/
/* line 2941, sass/style.scss */
#infscr-loading {
  position: fixed;
  text-align: center;
  bottom: 30px;
  left: 42%;
  z-index: 100;
  background: white;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  color: #222;
  font-size: 15px;
  font-weight: bold;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/*responsive stuff*/
@media (max-width: 1600px) {
  /*this is used for menu purposes*/
  /*handle the begining and the endings*/
  /* line 2966, sass/style.scss */
  .main-nav ul li:nth-child(1) ul li:hover > ul,
  .main-nav ul li:nth-child(2) ul li:hover > ul,
  .main-nav ul li:nth-child(3) ul li:hover > ul {
    left: 100px;
    top: 35px;
  }

  /* line 2972, sass/style.scss */
  .main-nav ul li:nth-child(4) ul li:hover > ul,
  .main-nav ul li:nth-child(5) ul li:hover > ul,
  .main-nav ul li:nth-child(6) ul li:hover > ul {
    left: 50px;
    top: 35px;
  }

  /* line 2978, sass/style.scss */
  footer[role="contentinfo"] .main-nav ul li:nth-child(1) ul li:hover > ul,
  footer[role="contentinfo"] .main-nav ul li:nth-child(2) ul li:hover > ul,
  footer[role="contentinfo"] .main-nav ul li:nth-child(3) ul li:hover > ul {
    top: auto;
    bottom: 35px;
  }
}
@media (max-width: 1200px) {
  /*fix team.html*/
  /* line 2989, sass/style.scss */
  .team-item-wrap.active .team-single-content > div p {
    width: 400px;
    margin-left: -50px;
  }

  /*fix the meet the team widget*/
  /* line 2994, sass/style.scss */
  .meet-team-item {
    width: 50%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  /* line 3002, sass/style.scss */
  .meet-team-item .meet-team-pic:after, .meet-team-item .meet-team-pic:before {
    display: none;
  }

  /*fix the 3 circle counters*/
  /* line 3009, sass/style.scss */
  .fun-facts-item {
    margin-left: 20px;
    margin-right: 20px;
  }

  /*fix the homepage latest case studies*/
  /* line 3015, sass/style.scss */
  a.owl-item:after, a.owl-item:before {
    display: none;
  }

  /* line 3018, sass/style.scss */
  a.owl-item {
    margin: 0 15px !important;
    padding: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  /* line 3025, sass/style.scss */
  a.owl-item img {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
  }

  /*fix the slider*/
  /* line 3031, sass/style.scss */
  .large-responsive {
    width: 400px !important;
  }

  /* line 3034, sass/style.scss */
  .small-responsive {
    width: 100px !important;
    margin-left: 5.5%;
    margin-top: 2.5%;
  }

  /* line 3039, sass/style.scss */
  .simple-caption {
    margin-left: 0 !important;
    left: 10% !important;
    font-size: 20px;
    margin-top: -5% !important;
  }

  /* line 3045, sass/style.scss */
  .responsive-caption-img img {
    width: 350px !important;
  }

  /* line 3048, sass/style.scss */
  .fullwidthbanner-container {
    height: 400px;
  }

  /* line 3051, sass/style.scss */
  .tp-bullets.simplebullets.square-old .bullet {
    width: 100px;
  }

  /*item 2*/
  /* line 3055, sass/style.scss */
  .responsive-caption-img.slide_2 img {
    width: 400px !important;
    height: auto !important;
  }

  /*fix the logo*/
  /* line 3062, sass/style.scss */
  .logo-wrap {
    float: none;
    margin: auto !important;
  }

  /*fix intro services*/
  /* line 3070, sass/style.scss */
  .intro-services-item {
    text-align: center;
    display: inline-block;
    width: 33.333333333333%;
    margin: 0;
  }

  /* line 3078, sass/style.scss */
  .intro-services-img {
    margin: 0 auto 10px;
    display: inline-block;
    float: none;
  }

  /*fix the left widget in footer services*/
  /*fix the fof page*/
  /* line 3088, sass/style.scss */
  .fof-wrapper {
    max-height: 600px;
  }

  /* line 3091, sass/style.scss */
  .fof-heading {
    line-height: 1.15;
  }

  /* line 3094, sass/style.scss */
  .fof-button,
  .fof-button a {
    max-width: 100%;
  }

  /*fix the blog.html */
  /* line 3100, sass/style.scss */
  aside[role="complementary"] {
    width: 200px;
  }

  /* line 3103, sass/style.scss */
  .article-info .article-info-buttons {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* line 3107, sass/style.scss */
  .pagination-tabs .pagination-list {
    text-align: center;
  }

  /* line 3110, sass/style.scss */
  .pagination-list li {
    float: none;
    display: inline-block;
    margin-right: -5px;
  }

  /*fix the breadcrumbs*/
  /* line 3118, sass/style.scss */
  .single-page-heading, .single-page-heading a {
    line-height: 1.5;
    display: inline-block;
  }

  /* line 3122, sass/style.scss */
  .single-page-breadcrumbs {
    float: none;
    width: 100%;
    display: inline-block;
    margin: 0 0 15px;
  }

  /* line 3128, sass/style.scss */
  .single-page-header-container {
    height: auto;
    text-align: center;
    margin-top: -5px;
  }

  /* line 3133, sass/style.scss */
  .single-page-breadcrumbs li {
    float: none;
    display: inline-block;
  }

  /* line 3138, sass/style.scss */
  .span12 iframe {
    height: 530px !important;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  /*fix the contact form page + faq-wrappers*/
  /* line 3146, sass/style.scss */
  .contact-form-wrapper input[type="text"], .contact-form-wrapper select, .faq-wrapper, .select-group,
  .contact-form-wrapper.contact-form-with-sidebar input[type="text"], .contact-form-wrapper.contact-form-with-sidebar .select-group {
    width: 40%;
  }

  /* line 3151, sass/style.scss */
  .select-group select,
  .contact-form-wrapper.contact-form-with-sidebar .select-group select {
    width: 100%;
  }
}
@media (max-width: 1200px) and (min-width: 979px) {
  /*fix the menu again*/
  /* line 3160, sass/style.scss */
  nav.main-nav {
    float: none;
    text-align: center;
    width: 100%;
    display: inline-block;
  }

  /* line 3166, sass/style.scss */
  .main-nav ul {
    display: inline-block;
  }

  /*fix the footer*/
  /* line 3171, sass/style.scss */
  .footer-widget-content > a {
    float: none;
    margin: auto;
  }

  /* line 3175, sass/style.scss */
  .footer-social-icons {
    width: 100%;
  }

  /* line 3178, sass/style.scss */
  .footer-follow-on-dribble-widget a,
  .footer-social-icons a {
    float: none;
    margin: 5px 5px !important;
    display: inline-block;
  }

  /* line 3184, sass/style.scss */
  .footer-widget-content .footer-social-icons a {
    width: 36px;
    height: 36px;
  }

  /* line 3188, sass/style.scss */
  .footer-follow-on-dribble-widget a {
    width: 62px;
  }

  /* line 3192, sass/style.scss */
  .footer-follow-on-dribble-widget a:after {
    bottom: -38px;
    width: 68px;
    height: 38px;
  }
}
@media (max-width: 979px) and (min-width: 768px) {
  /* line 3200, sass/style.scss */
  .meet-team-item {
    height: 600px;
  }

  /* line 3204, sass/style.scss */
  .span12 iframe {
    height: 410px !important;
  }
}
@media (max-width: 979px) {
  /* line 3213, sass/style.scss */
  .team-item-wrap.active .team-single-content > div p {
    width: 300px;
    margin-left: -37px;
  }

  /*fix the articles again please*/
  /* line 3218, sass/style.scss */
  .single-post-with-sidebar-cw, .comments-wrapper.span8 {
    width: 100%;
  }

  /*fix the pricing tables please*/
  /* line 3222, sass/style.scss */
  .pricing-item-wrap {
    max-width: 100% !important;
    width: 350px;
    float: none !important;
    margin-left: auto;
    margin-right: auto;
    display: table;
  }

  /*fix the contact form again*/
  /* line 3231, sass/style.scss */
  .contact-form-wrapper.contact-form-with-sidebar .select-group {
    width: 100%;
  }

  /*fix the 3 counters again*/
  /* line 3235, sass/style.scss */
  .fun-facts-item {
    margin-top: 30px;
  }

  /* line 3238, sass/style.scss */
  .fun-facts-counter {
    display: inline-block;
  }

  /*fix the menu*/
  /* line 3242, sass/style.scss */
  .nav-collapse .nav > li {
    float: left !important;
  }

  /* line 3245, sass/style.scss */
  .main-nav {
    float: right;
    margin-right: 0;
  }

  /* line 3249, sass/style.scss */
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    padding: 0 0 0 15px;
    font-weight: normal;
    color: inherit;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  /* line 3257, sass/style.scss */
  .large-responsive {
    width: 400px !important;
  }

  /* line 3260, sass/style.scss */
  .small-responsive {
    width: 100px !important;
    margin-left: 5.5%;
    margin-top: 2.5%;
  }

  /*fix the menu*/
  /* line 3267, sass/style.scss */
  .menu_handler_wrap {
    position: relative;
    background: #efefef;
  }

  /* line 3271, sass/style.scss */
  button.btn-navbar {
    position: absolute;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    background: #f6f6f6;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border: none;
    outline: none;
    left: 3%;
    top: 20px;
  }

  /* line 3286, sass/style.scss */
  button.btn-navbar > span {
    color: #838383;
  }

  /* line 3289, sass/style.scss */
  .main-nav {
    float: none;
  }

  /* line 3292, sass/style.scss */
  .main-nav {
    margin-bottom: 40px;
  }

  /* line 3295, sass/style.scss */
  .main-nav ul li,
  .main-nav ul li:hover,
  .main-nav li > ul li a {
    width: 100%;
    height: auto !important;
    border-bottom: none;
  }

  /* line 3302, sass/style.scss */
  .main-nav ul li a,
  .main-nav li > ul li a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-bottom: 2px solid #eaeaea;
    text-align: left;
    color: #6a6a6a;
  }

  /* line 3311, sass/style.scss */
  .main-nav ul li a:hover,
  .main-nav li:hover > a {
    color: #2c3e50;
  }

  /* line 3315, sass/style.scss */
  .main-nav ul li {
    text-indent: 0;
  }

  /* line 3318, sass/style.scss */
  .main-nav ul li ul li {
    text-indent: 30px;
  }

  /* line 3321, sass/style.scss */
  .main-nav ul li ul li ul li {
    text-indent: 60px;
  }

  /* line 3324, sass/style.scss */
  .main-nav ul li ul li ul li ul li {
    text-indent: 90px;
  }

  /* line 3327, sass/style.scss */
  .main-nav ul li:hover {
    background: none;
  }

  /* line 3330, sass/style.scss */
  .main-nav li:hover > ul,
  .main-nav li > ul {
    display: block;
    position: static;
  }

  /* line 3335, sass/style.scss */
  li.dropdown {
    position: relative;
  }

  /* line 3338, sass/style.scss */
  li.dropdown:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 400;
    background: rgba(37, 187, 187, 0);
    width: 100%;
    height: 42px;
  }

  /* line 3348, sass/style.scss */
  li.dropdown:hover {
    cursor: pointer;
  }

  /* line 3353, sass/style.scss */
  .main-nav li:hover > ul,
  .main-nav li > ul {
    display: none;
  }

  /* line 3359, sass/style.scss */
  .main-nav li.active ul {
    display: block;
  }

  /*fix the footer*/
  /* line 3363, sass/style.scss */
  .footer-widgets-container {
    text-align: center;
  }

  /* line 3366, sass/style.scss */
  .footer-widget-content > a {
    float: none;
    margin: auto;
  }

  /* line 3370, sass/style.scss */
  .footer-social-icons {
    width: 100%;
  }

  /* line 3373, sass/style.scss */
  .footer-follow-on-dribble-widget a,
  .footer-social-icons a {
    float: none;
    margin: 5px 5px !important;
    display: inline-block;
  }

  /* line 3379, sass/style.scss */
  .footer-social-icons a {
    float: none;
  }

  /*fix intro services*/
  /* line 3385, sass/style.scss */
  .intro-services-item {
    text-align: center;
  }

  /* line 3388, sass/style.scss */
  .intro-services-img {
    margin: 0 0 10px;
    display: inline-block;
  }

  /*fix meet the team guys in homepage*/
  /* line 3396, sass/style.scss */
  .meet-team-social-follow {
    text-align: center;
  }

  /* line 3399, sass/style.scss */
  .meet-team-social-follow a {
    display: inline-block;
    margin: 5px 0;
  }

  /* line 3405, sass/style.scss */
  .case-studies-content {
    margin: auto;
  }

  /*fix the blog.html */
  /* line 3410, sass/style.scss */
  main[role="main"] {
    width: 100%;
    margin: 15px 0;
  }

  /*fix the contact form page*/
  /* line 3416, sass/style.scss */
  .contact-form-wrapper input[type="text"], .contact-form-wrapper select,
  .contact-with-sidebar .contact-form-wrapper input[type="text"], .contact-with-sidebar .contact-form-wrapper select,
  .select-group {
    width: 100%;
  }

  /*fix the read mored button*/
  /* line 3423, sass/style.scss */
  a.read-more-button {
    display: table;
    margin: 25px auto 0;
    float: none;
  }
}
@media (max-width: 767px) {
  /* line 3430, sass/style.scss */
  .team-item-wrap.active .team-single-content > div p {
    width: 600px;
    margin-left: -95px;
  }

  /*templ fix for rev slider*/
  /* line 3435, sass/style.scss */
  .tempclass {
    opacity: 0;
    height: 1px;
  }

  /*fix the portfolio single slider*/
  /* line 3440, sass/style.scss */
  .portfolio-project-slider-wrapper .portfolio-project-slider {
    padding-right: 0;
    margin-top: 70px;
  }

  /* line 3444, sass/style.scss */
  .portfolio-project-slider-wrapper .meta-info {
    width: 100%;
  }

  /* line 3447, sass/style.scss */
  .portfolio-project-slider-wrapper .meta-info span {
    width: 33.3333%;
  }

  /*fix the slider*/
  /* line 3451, sass/style.scss */
  .hidden-phone {
    display: none !important;
  }

  /*fix the footer widgets*/
  /* line 3455, sass/style.scss */
  .footer-widgets {
    float: left;
    padding: 15px 0 5px;
  }

  /*fix meet the team guys in homepage*/
  /* line 3461, sass/style.scss */
  .meet-team-pic:after, .meet-team-pic:before {
    display: none;
  }

  /*fix team.html*/
  /* line 3466, sass/style.scss */
  .team-teaser-img {
    width: 100%;
  }

  /* line 3469, sass/style.scss */
  .team-teaser-img img {
    width: 100%;
  }

  /*fix the meet the team widget*/
  /* line 3473, sass/style.scss */
  .meet-team-item {
    width: 100%;
  }

  /*fix the meta icons + info buttons */
  /* line 3479, sass/style.scss */
  .meta-info {
    width: 100%;
    text-align: center;
  }

  /* line 3483, sass/style.scss */
  .meta-info .meta-info-buttons {
    width: 33.333333333333333333333333333333%;
  }

  /* line 3486, sass/style.scss */
  .meta-info .meta-info-buttons:before {
    background-position: center center;
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
  }

  /* line 3493, sass/style.scss */
  .article-info .article-info-buttons {
    width: 100%;
    border: none;
    text-align: center;
  }

  /* line 3498, sass/style.scss */
  .article-info .article-info-buttons:before {
    content: '';
    width: 18px;
    height: 18px;
    float: none;
    margin-top: -4px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
  }

  /*fix some issues on the pricing tables*/
  /* line 3510, sass/style.scss */
  .dark-edition .pricing-header-container:after {
    width: 650px;
    margin-left: -325px;
  }

  /*fix intro services*/
  /* line 3516, sass/style.scss */
  .intro-services-item {
    width: 100%;
  }

  /* line 3520, sass/style.scss */
  .pagination-list li {
    display: none;
  }

  /* line 3523, sass/style.scss */
  .pagination-list li.first, .pagination-list li.prev, .pagination-list li.next, .pagination-list li.last {
    display: inline-block;
    margin-right: -3px;
  }

  /* line 3528, sass/style.scss */
  .span12 iframe {
    height: 240px !important;
  }
}
/*Shortcodes page*/
/* line 3536, sass/style.scss */
.sidequote {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin: 15px 20px 15px 0 !important;
  width: 260px;
}

/* line 3545, sass/style.scss */
.span12 iframe {
  height: 660px;
  width: 100% !important;
}

/* line 3550, sass/style.scss */
a.big-button {
  float: left;
  display: block;
  margin-top: 25px;
  padding: 25px 50px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  text-align: center;
}

/* line 3566, sass/style.scss */
a.small-button {
  float: left;
  display: block;
  margin-top: 25px;
  padding: 15px 25px;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  text-align: center;
}

/* line 3583, sass/style.scss */
a.blue {
  background: #088ac8;
}

/* line 3587, sass/style.scss */
a.blue:hover {
  background: #0071a7;
}

/* line 3591, sass/style.scss */
a.pink {
  background: #E10C82;
}

/* line 3595, sass/style.scss */
a.pink:hover {
  background: #CE0075;
}

/* line 3599, sass/style.scss */
a.green {
  background: #27AE60;
}

/* line 3603, sass/style.scss */
a.green:hover {
  background: #1E874A;
}

/* line 3607, sass/style.scss */
a.green {
  background: #27AE60;
}

/* line 3611, sass/style.scss */
a.green:hover {
  background: #1E874A;
}

/* line 3615, sass/style.scss */
a.darkblue {
  background: #264073;
}

/* line 3619, sass/style.scss */
a.darkblue:hover {
  background: #162E60;
}

/* line 3623, sass/style.scss */
a.orange {
  background: #E46E0C;
}

/* line 3627, sass/style.scss */
a.orange:hover {
  background: #d7670a;
}

/* line 3631, sass/style.scss */
a.yellow {
  background: #FDD01D;
}

/* line 3635, sass/style.scss */
a.yellow:hover {
  background: #f0c51b;
}

/* line 3639, sass/style.scss */
.half-bottom {
  margin-bottom: 20px;
}

/* line 3643, sass/style.scss */
.alert-message {
  background-color: #F9F9F9;
  border: 1px solid #DDDDDD;
  box-shadow: 0 1px 1px 0 rgba(180, 180, 180, 0.1);
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 20px 40px;
  position: relative;
}

/* line 3654, sass/style.scss */
.warning {
  background-color: #FBF6E3;
  border-color: #EFD877;
  color: #FDD01D;
}

/* line 3660, sass/style.scss */
.success {
  background-color: #E9F2D2;
  border-color: #C0DA66;
  color: #27AE60;
}

/* line 3666, sass/style.scss */
.error {
  background-color: #FFE9E9;
  border-color: #E99F9F;
  color: #D25C5A;
}

/* line 3672, sass/style.scss */
.info {
  background-color: #DBE9F3;
  border-color: #9FC2DD;
  color: #468BBF;
}

/* line 3678, sass/style.scss */
.alert-message span.close {
  cursor: pointer;
  display: block;
  opacity: 0.5;
}

@media (max-width: 480px) {
  /* line 3685, sass/style.scss */
  .shortcode-container a.small-button {
    margin-left: 30px;
  }

  /* line 3689, sass/style.scss */
  .contact-form-wrapper textarea {
    max-width: 300px;
    min-width: 0 !important;
  }

  /* line 3694, sass/style.scss */
  .comment-form .commentform-element textarea {
    max-width: 300px;
    min-width: 0 !important;
  }

  /* line 3699, sass/style.scss */
  .contact-full-teaser-img iframe {
    max-height: 350px !important;
  }

  /* line 3703, sass/style.scss */
  .contact-full-teaser-img {
    max-height: 350px !important;
  }

  /* line 3707, sass/style.scss */
  .team-item-wrap.active {
    transform: none !important;
    transform: none !important;
  }

  /* line 3712, sass/style.scss */
  .team-item-wrap.active .team-single-content > div p {
    width: 380px !important;
    margin-left: -40px !important;
  }
}
/*Wp related*/
/* line 3724, sass/style.scss */
.alignright {
  float: right;
  margin-left: 20px;
}

/* line 3728, sass/style.scss */
.alignleft {
  float: left;
  margin-right: 20px;
}

/* line 3732, sass/style.scss */
.aligncenter {
  text-align: center;
  margin: 0px auto;
}

/* line 3737, sass/style.scss */
.footer-follow-on-dribble-widget img {
  width: 85px;
  height: 85px;
}

/* line 3742, sass/style.scss */
.post_tags {
  margin-top: 40px;
}

/* line 3745, sass/style.scss */
.widget_text h2 {
  color: #2C3E50 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 2 !important;
  margin: 0 !important;
  padding: 5px 5px 5px 0 !important;
  text-transform: uppercase !important;
  background: none !important;
  text-align: left !important;
}

/* line 3756, sass/style.scss */
.widget_text .textwidget {
  color: #7F8C8D !important;
  line-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 3763, sass/style.scss */
.widget_tag_cloud h2 {
  color: #2C3E50 !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 2 !important;
  margin: 0 !important;
  padding: 5px 5px 5px 0 !important;
  text-transform: uppercase !important;
  background: none !important;
  text-align: left !important;
}

/* line 3774, sass/style.scss */
.article-content blockquote {
  border-left-color: #088AC8;
  font-size: 17px;
  font-style: italic;
  line-height: 30px;
  margin-bottom: 40px;
  padding-left: 25px;
}

/* line 3783, sass/style.scss */
a:focus {
  border: 0 !important;
  outline: 0 !important;
}

/* line 3788, sass/style.scss */
main[role="main"] > .pricing-item-wrap {
  width: auto !important;
}

/* line 3792, sass/style.scss */
.pagination-list > li {
  border-bottom: 1px solid #BDC3C7;
  border-left: 1px solid #BDC3C7;
  border-top: 1px solid #BDC3C7;
  display: block;
  width: 65px;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  background-color: #088AC8;
  color: #FFFFFF;
}

/* line 3807, sass/style.scss */
.pagination-list > li a {
  display: block;
  background-color: #fff !important;
  border-bottom: 0;
  border-top: 0;
  padding: 0;
  width: 100%;
  line-height: 70px;
}

/*=============================================================================
=======================CUSTOM CAPTIONS FOR CINERGY TEMPLATE====================
=============================================================================*/
/*the bullets*/
/* line 3824, sass/style.scss */
.tp-bullets .bullet {
  cursor: pointer !important;
  position: relative !important;
  width: 390px !important;
  height: 11px !important;
  float: left !important;
  background: rgba(255, 255, 255, 0.5) !important;
  margin-left: 0 !important;
  -webkit-transition: all 0.2s ease-in-out !important;
  -moz-transition: all 0.2s ease-in-out !important;
  -o-transition: all 0.2s ease-in-out !important;
  -ms-transition: all 0.2s ease-in-out !important;
  transition: all 0.2s ease-in-out !important;
}

/* line 3839, sass/style.scss */
.tp-bullets .bullet.last {
  margin-right: 0 !important;
}

/* line 3842, sass/style.scss */
.tp-bullets .bullet.selected, .custom_bullets .bullet:hover {
  background: white !important;
  -webkit-transition: all 0.2s ease-in-out !important;
  -moz-transition: all 0.2s ease-in-out !important;
  -o-transition: all 0.2s ease-in-out !important;
  -ms-transition: all 0.2s ease-in-out !important;
  transition: all 0.2s ease-in-out !important;
}

/* line 3851, sass/style.scss */
.tp-leftarrow.default {
  background: url("http://labs.am-themes.com/Cinergy_WP/wp-content/themes/cinergy/img/rev_slider/build/slider-left-arrow.png") no-repeat scroll left top transparent;
  cursor: pointer;
  height: 38px;
  position: relative;
  width: 21px;
  z-index: 100;
}

/* line 3859, sass/style.scss */
.tp-rightarrow.default {
  background: url("http://labs.am-themes.com/Cinergy_WP/wp-content/themes/cinergy/img/rev_slider/build/slider-right-arrow.png") no-repeat scroll left top transparent;
  cursor: pointer;
  height: 38px;
  position: relative;
  width: 21px;
  z-index: 100;
}

@media (max-width: 1300px) {
  /* line 3868, sass/style.scss */
  .tp-bullets .bullet {
    width: 100px !important;
  }
}
/* line 3873, sass/style.scss */
#login-portal input, #login-portal label {
  display: block;
}

/* line 3874, sass/style.scss */
#login-portal input[type="text"], #login-portal input[type="password"] {
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  border: 1px solid #e1e1e1;
  color: #8d9aa6;
  text-indent: 15px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* line 3887, sass/style.scss */
.bc-wrapper {
  width: 95%;
  max-width: 1170px;
  margin: 0 auto;
}

/* line 3893, sass/style.scss */
.bc-page-header {
  height: 200px;
  display: flex;
  align-items: flex-end;
}

/* line 3899, sass/style.scss */
.bc-page-title {
  color: #ffffff;
  margin: 0;
  padding: 1em 0;
}

/* line 3905, sass/style.scss */
.bc-content {
  font-size: 1.2em;
  line-height: 1.4em;
}

/* line 3910, sass/style.scss */
.bc-partners-grid-wrap {
  padding: 4em 0;
  display: flex;
  justify-content: space-around;
  flex-flow: row;
  flex-wrap: wrap;
}

/* line 3918, sass/style.scss */
.bc-partner {
  width: 30%;
  padding-bottom: 3em;
}

/* line 3923, sass/style.scss */
.bc-partner-image {
  margin-bottom: 1em;
  height: 200px;
  text-align: center;
}

/* line 3929, sass/style.scss */
.bc-partner-image img {
  max-height: 100%;
  width: auto;
}

/* line 3934, sass/style.scss */
.bc-partner-content p {
  margin-bottom: 1em;
}

@media screen and (max-width: 800px) {
  /* line 3939, sass/style.scss */
  .bc-partner {
    width: 46%;
  }
}
@media screen and (max-width: 500px) {
  /* line 3945, sass/style.scss */
  .bc-partners-grid-wrap {
    display: block;
  }

  /* line 3949, sass/style.scss */
  .bc-partner {
    width: 100%;
  }
}
/* line 7, sass/partials/_buildcreate.scss */
body.buildcreate * {
  box-sizing: border-box;
}
/* line 12, sass/partials/_buildcreate.scss */
body.buildcreate .user-content h1, body.buildcreate .user-content h2, body.buildcreate .user-content h3 {
  font-size: 2em;
  color: #a63d09;
  text-transform: uppercase;
  margin-bottom: 0.6em;
}
/* line 19, sass/partials/_buildcreate.scss */
body.buildcreate .user-content p {
  line-height: 1.3em;
}
/* line 25, sass/partials/_buildcreate.scss */
body.buildcreate .wrapper {
  width: 100%;
  height: 100%;
  /*max-width: 1100px;*/
  margin: 0 auto;
padding:0 50px;
}
@media screen and (max-width: 1100px) {
  /* line 25, sass/partials/_buildcreate.scss */
  body.buildcreate .wrapper {
    padding: 0 1em;
  }
}
/* line 37, sass/partials/_buildcreate.scss */
body.buildcreate.logged-in #header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  /* line 37, sass/partials/_buildcreate.scss */
  body.buildcreate.logged-in #header {
    top: 46px;
  }
}
/* line 47, sass/partials/_buildcreate.scss */
body.buildcreate #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
/* line 56, sass/partials/_buildcreate.scss */
body.buildcreate #header.scrolling .utility-row {
  background: #1c3044;
}
/* line 62, sass/partials/_buildcreate.scss */
body.buildcreate #header.scrolling .utility-row .utility-nav > ul li a {
  padding: 0.5em 1em;
}
/* line 72, sass/partials/_buildcreate.scss */
body.buildcreate #header.scrolling .header-row .header-wrap .logo {
  padding: 0.5em 0 0.6em;
}
/* line 80, sass/partials/_buildcreate.scss */
body.buildcreate #header.scrolling .header-row .header-wrap .main-nav > ul > li:hover > ul {
  top: 45px;
}
/* line 91, sass/partials/_buildcreate.scss */
body.buildcreate #header .utility-row {
  width: 100%;
  transition: 100ms all ease-in;
}
@media screen and (max-width: 700px) {
  /* line 91, sass/partials/_buildcreate.scss */
  body.buildcreate #header .utility-row {
    display: none;
  }
}
/* line 99, sass/partials/_buildcreate.scss */
body.buildcreate #header .utility-row .utility-nav {
  position: static;
  background: none;
  right: auto;
  z-index: inherit;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  /* line 99, sass/partials/_buildcreate.scss */
  body.buildcreate #header .utility-row .utility-nav {
    display: block;
  }
}
/* line 110, sass/partials/_buildcreate.scss */
body.buildcreate #header .utility-row .utility-nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  /* line 110, sass/partials/_buildcreate.scss */
  body.buildcreate #header .utility-row .utility-nav > ul {
    justify-content: center;
  }
}
/* line 121, sass/partials/_buildcreate.scss */
body.buildcreate #header .utility-row .utility-nav > ul li a {
  color: white;
  text-decoration: none;
  padding: 1em;
}
/* line 131, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row {
  width: 100%;
  background: white;
}
/* line 135, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
/* line 140, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .logo {
  padding: 1em 0;
  min-width: 200px;
  transition: all 100ms ease-in;
}
/* line 145, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .logo a {
  display: block;
}
/* line 150, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .nav-handle {
  display: none;
  align-items: center;
  font-size: 2em;
  text-decoration: none;
  color: #254c88;
  margin-left: 1em;
}
@media screen and (max-width: 1000px) {
  /* line 150, sass/partials/_buildcreate.scss */
  body.buildcreate #header .header-row .header-wrap .nav-handle {
    display: flex;
  }
}
/* line 163, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav {
  float: none;
  margin-left: 1em;
}
@media screen and (max-width: 1200px) {
  /* line 163, sass/partials/_buildcreate.scss */
  body.buildcreate #header .header-row .header-wrap .main-nav {
    width: auto;
  }
}
@media screen and (max-width: 1000px) {
  /* line 163, sass/partials/_buildcreate.scss */
  body.buildcreate #header .header-row .header-wrap .main-nav {
    display: none;
  }
}
/* line 175, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
/* line 181, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul > li {
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 100%;
  float: none;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* line 190, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul > li:hover {
  background: #254c88;
  border-bottom: 5px solid #a63d09;
}
/* line 194, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul > li:hover > a {
  color: white;
}
/* line 198, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul > li:hover > ul {
  top: 58px;
}
/* line 203, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul > li > a {
  color: #254c88;
  line-height: 1em;
}
/* line 208, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul > li.mobile-utility-nav {
  display: none;
}
/* line 214, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul .sub-menu li {
  white-space: normal;
  line-height: 1em;
}
/* line 218, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul .sub-menu li:hover {
  background: #225d9f;
}
/* line 221, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul .sub-menu li:hover > a {
  color: white;
}
/* line 226, sass/partials/_buildcreate.scss */
body.buildcreate #header .header-row .header-wrap .main-nav > ul .sub-menu li a {
  color: #254c88;
  line-height: 1.2em;
  text-indent: 0;
  display: inline-block;
  padding: 1em;
  height: auto;
}
/* line 245, sass/partials/_buildcreate.scss */
body.buildcreate.home .home-cover {
  height: 80vh;
  min-height: 600px;
  padding: 8em 0 2em;
}
/* line 250, sass/partials/_buildcreate.scss */
body.buildcreate.home .home-cover .home-cover-text-outer-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
/* line 257, sass/partials/_buildcreate.scss */
body.buildcreate.home .home-cover .home-cover-text-outer-wrap .home-cover-text-inner-wrap .home-cover-title {
  color: white;
  max-width: 600px;
  text-transform: uppercase;
  font-size: 3.5em;
  line-height: 1.2em;
}
@media screen and (max-width: 750px) {
  /* line 257, sass/partials/_buildcreate.scss */
  body.buildcreate.home .home-cover .home-cover-text-outer-wrap .home-cover-text-inner-wrap .home-cover-title {
    font-size: 2.5em;
  }
}
/* line 268, sass/partials/_buildcreate.scss */
body.buildcreate.home .home-cover .home-cover-text-outer-wrap .home-cover-text-inner-wrap .home-cover-title:after {
  content: "";
  display: block;
  width: 25%;
  min-width: 100px;
  border-bottom: 8px solid #a63d09;
  margin: 0.5em 0 0.7em;
}
/* line 278, sass/partials/_buildcreate.scss */
body.buildcreate.home .home-cover .home-cover-text-outer-wrap .home-cover-text-inner-wrap .home-cover-text {
  color: white;
  font-size: 1.5em;
  text-transform: uppercase;
  max-width: 320px;
  line-height: 1.2em;
  margin-bottom: 1.5em;
}
/* line 287, sass/partials/_buildcreate.scss */
body.buildcreate.home .home-cover .home-cover-text-outer-wrap .home-cover-text-inner-wrap .home-cover-button {
  background: #225d9f;
  color: white;
  padding: 1em 2.5em;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.5em;
}
/* line 299, sass/partials/_buildcreate.scss */
body.buildcreate.home .secondary-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0;
  flex-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  /* line 299, sass/partials/_buildcreate.scss */
  body.buildcreate.home .secondary-links {
    padding: 0;
  }
}
/* line 310, sass/partials/_buildcreate.scss */
body.buildcreate.home .secondary-links .secondary-link {
  flex: 0 0 33%;
  height: 200px;
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.2em;
  transition: all 100ms ease-in;
}
@media screen and (max-width: 600px) {
  /* line 310, sass/partials/_buildcreate.scss */
  body.buildcreate.home .secondary-links .secondary-link {
    flex: 1 1 100%;
    height: 100px;
  }
}
/* line 329, sass/partials/_buildcreate.scss */
body.buildcreate.home .secondary-links .secondary-link:hover {
  transform: scale(1.05);
  text-decoration: none;
}
/* line 337, sass/partials/_buildcreate.scss */
body.buildcreate.home .page-content .content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4em 0;
  flex-wrap: wrap;
}
body.buildcreate.home .page-content .index-news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height:38px;
  border-bottom:1px solid #ccc;
  font-size:14px;
  color:#666;
}
body.buildcreate.home .page-content .index-news .left2{width:75%;height:38px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
@media screen and (max-width: 750px) {
  /* line 337, sass/partials/_buildcreate.scss */
  body.buildcreate.home .page-content .content-wrap {
    padding: 2em 0;
  }
}
/* line 348, sass/partials/_buildcreate.scss */
body.buildcreate.home .page-content .content-wrap .left {
  flex: 0 0 60%;
  font-size: 1.4em;
}
@media screen and (max-width: 750px) {
  /* line 348, sass/partials/_buildcreate.scss */
  body.buildcreate.home .page-content .content-wrap .left {
    flex: 1 1 100%;
    margin-bottom: 1em;
    font-size: 1.2em;
  }
}
/* line 359, sass/partials/_buildcreate.scss */
body.buildcreate.home .page-content .content-wrap .right {
  flex: 0 0 35%;
  background: #eeeeee;
  padding: 0 1.5em;
}
@media screen and (max-width: 750px) {
  /* line 359, sass/partials/_buildcreate.scss */
  body.buildcreate.home .page-content .content-wrap .right {
    flex: 1 1 100%;
    margin-bottom: 2em;
  }
}
/* line 369, sass/partials/_buildcreate.scss */
body.buildcreate.home .page-content .content-wrap .right .content-link {
  background: white;
  display: block;
  margin: 1em 0;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  text-align: center;
  padding: 1em;
  color: #1c3044;
  font-size: 1.5em;
  transition: all 100ms ease-in;
}
/* line 381, sass/partials/_buildcreate.scss */
body.buildcreate.home .page-content .content-wrap .right .content-link:hover {
  text-decoration: none;
  transform: scale(1.05);
  color: #a63d09;
}
/* line 392, sass/partials/_buildcreate.scss */
body.buildcreate .page-cover {
  margin: 0;
  height: 30vh;
  min-height: 300px;
  padding: 6em 0 3em;
}
@media screen and (max-width: 750px) {
  /* line 392, sass/partials/_buildcreate.scss */
  body.buildcreate .page-cover {
    min-height: 200px;
  }
}
/* line 402, sass/partials/_buildcreate.scss */
body.buildcreate .page-cover .page-cover-wrap {
  color: white;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
}
/* line 410, sass/partials/_buildcreate.scss */
body.buildcreate .page-cover .page-cover-wrap .page-title {
  font-size: 2.4em;
}
@media screen and (max-width: 750px) {
  /* line 410, sass/partials/_buildcreate.scss */
  body.buildcreate .page-cover .page-cover-wrap .page-title {
    font-size: 2em;
  }
}
/* line 420, sass/partials/_buildcreate.scss */
body.buildcreate .after-page-cover {
  border-bottom: 0.8em solid #a63d09;
  margin-bottom: 0.8em;
}
/* line 426, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .primary-content-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  /* line 426, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .primary-content-wrap {
    padding: 0.8em 0 1em;
  }
}
/* line 435, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .primary-content-wrap .left {
  flex: 0 0 50%;
  height: 400px;
}
@media screen and (max-width: 1100px) {
  /* line 435, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .primary-content-wrap .left {
    flex: 1 1 100%;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  /* line 435, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .primary-content-wrap .left {
    height: 200px;
  }
}
/* line 449, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .primary-content-wrap .right {
  flex: 0 0 50%;
  padding: 1em 3em;
}
@media screen and (max-width: 1100px) {
  /* line 449, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .primary-content-wrap .right {
    padding: 0;
    flex: 1 1 100%;
  }
}
/* line 458, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .primary-content-wrap .right .intro-title {
  color: #a63d09;
  text-transform: uppercase;
  max-width: 60%;
  margin-bottom: 1em;
}
@media screen and (max-width: 1100px) {
  /* line 458, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .primary-content-wrap .right .intro-title {
    max-width: 100%;
  }
}
/* line 469, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .primary-content-wrap .right .intro-text {
  font-size: 1.2em;
}
/* line 475, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid {
  padding: 2em 0;
}
/* line 478, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
/* line 484, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner {
  padding: 2em;
  flex: 0 0 33%;
}
@media screen and (max-width: 850px) {
  /* line 484, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner {
    flex: 0 0 50%;
    padding: 2em 1em;
  }
}
@media screen and (max-width: 450px) {
  /* line 484, sass/partials/_buildcreate.scss */
  body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner {
    flex: 1 1 100%;
    padding: 2em 0em;
  }
}
/* line 498, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner .partner-image {
  height: 200px;
  margin-bottom: 1em;
}
/* line 503, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner h3 {
  color: #a63d09;
  text-transform: uppercase;
  font-size: 1.4em;
}
/* line 509, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner .partner-content {
  margin-bottom: 1em;
}
/* line 513, sass/partials/_buildcreate.scss */
body.buildcreate .partners-content-wrap .partners-grid .partners-grid-wrap .partner a {
  color: #a63d09;
  text-decoration: underline;
}
/* line 527, sass/partials/_buildcreate.scss */
body.buildcreate #footer .main-nav li:hover {
  background: #225d9f;
  border-bottom: 5px solid #a63d09;
}
.pagess {clear: both;margin: 20px;overflow: hidden;margin-left: 0px;text-align: center;font-size:12px}
.pagess ul li { display:inline-block;border: 1px solid #ccc;padding: 2px 9px;margin: 0 3px;line-height: 20px;background: #fff;color:#999}
.pagess ul li:hover{ background:#ccc; color:#fff;border: 1px solid #ccc}
.pagess ul li:hover a{color:#fff;}
.pagess ul li.thisclass {display: inline-block;border: 1px solid #ccc;padding: 2px 9px;margin: 0 3px;background: #ccc;color: #fff;}
.pagess ul li.thisclass a {color: #fff;}
.pagess ul li a{ display:block;color:#999}
.pagess ul li a:hover {color: #fff;}