/*	
*	############################################################################################
*	
*	GPC Info
*	---------------------------------------------------------------------
*
*	Version: 	1.0
*	Author: 	The Develovers
*	Website: 	https://gpcinfo.com
*	Copyright: 	Copyright 2017 The Develovers
*	
*	############################################################################################
*/
/**
* SassFlexcaja
* Manage Flexcaja in Sass easily.
*
* @author     Samuel Marchal (zessx)
* @version    0.1
*/
/*
    Display
 */
.slide, .video-background, .portfolio-item .info {
  display: -webkit-caja;
  display: -moz-caja;
  display: -webkit-flexcaja;
  display: -ms-flexcaja;
  display: -webkit-flex;
  display: flex; }

/*
    Flex direction
 */
/*
    Flex wrap
 */
/*
    Flex flow
 */
/*
    Order
 */
/*
    Flex grow
 */
/*
    Flex shrink
 */
/*
    Flex basis
 */
/*
    Flex
 */
/*
    Justify content
 */
.slide, .portfolio-item .info {
  -webkit-caja-pack: center;
  -moz-caja-pack: center;
  -webkit-flex-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center; }

/*
    Align items
 */
.slide, .portfolio-item .info {
  -webkit-caja-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

/*
    Align self
 */
/*
    Align content
 */
/*--------------------- 
 * General  
 *--------------------- */

 @font-face {
    font-family: albert;
    src: url(fonts/albert/Albert-Regular.otf);
}

@font-face {
    font-family: albertbold;
    src: url(fonts/albert/Albert-Bold.otf);
}

@font-face {
    font-family: albertthin;
    src: url(fonts/albert/Albert-Thin.otf);
}

@font-face {
    font-family: albertextrabold;
    src: url(fonts/albert/Albert-ExtraBold.otf);
}

@font-face {
    font-family: bebasneue;
    src: url(fonts/bebas_neue/BebasNeue.otf);
}


body {
  font-size: 18px;
  color: #5f5f5f;
  line-height: 1.9; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

p {
  margin-bottom: 25px; }

section {
  background-color: #fff; }

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #0DB826; }
  a:hover, a:focus {
    text-decoration: none;
    color: #0ba021; }

footer {
  padding: 40px 0;
  background-color: #3B3B3B; }

@media screen and (max-width: 992px) {
  div.row > .section-col {
    margin-bottom: 50px; }
    div.row > .section-col:last-child {
      margin-bottom: 0; } }

.copyright {
  margin: 0;
  font-size: 14px;
  color: #A0A0A0;
  text-align: center; }

.vmargin-3x {
  margin: 30px 0; }

.vmargin-5x {
  margin: 50px 0; }

.vpadding-5x {
  padding: 50px 0; }

.vpadding-8x {
  padding: 80px 0; }

.margin-top-3x {
  margin-top: 30px; }

.margin-bottom-3x {
  margin-bottom: 30px; }

.margin-top-5x {
  margin-top: 50px; }

.margin-bottom-5x {
  margin-bottom: 50px; }

.padding-bottom-5x {
  padding-bottom: 50px; }

.padding-top-5x {
  padding-top: 50px; }

.no-padding-bottom {
  padding-bottom: 0; }

.light-gray {
  background-color: #F9F9F9; }

/* Navigation */
.navbar {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 20px; }

.navbar-brand {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 110px;
  padding: 0 15px;
  height: auto; }
  .navbar-brand .logo {
    width: 100%; }

.navbar-nav > li {
  padding: 0 15px; }

.navbar-nav > li > a {
  padding: 0;
  font-size: 15px;
  color: #5e6060; }
  .navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
    background-color: transparent;
    color: #000000; }

.navbar-nav > li.active > a:before {
  display: block;
  content: '';
  width: 100%;
  height: 3px;
  background: #0DB826;
  position: absolute;
  bottom: -5px;
  -webkit-animation: scaleLeftRight .3s;
  animation: scaleLeftRight .3s;
  -webkit-transform-origin: 0%;
  transform-origin: 0%; }

.navbar-scroll-mode {
  -moz-caja-shadow: 0 1px 5px 0 rgba(210, 210, 210, 0.5);
  -webkit-box-shadow: 0 1px 5px 0 rgba(210, 210, 210, 0.5);
  box-shadow: 0 1px 5px 0 rgba(210, 210, 210, 0.5);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  background-color: #fff; }
  .navbar-scroll-mode .navbar-nav > li > a {
    color: #5f5f5f; }
    .navbar-scroll-mode .navbar-nav > li > a:hover, .navbar-scroll-mode .navbar-nav > li > a:focus {
      background-color: transparent;
      color: #5f5f5f; }
  .navbar-scroll-mode .navbar-brand {
    width: 100px; }

@-webkit-keyframes scaleLeftRight {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@keyframes scaleLeftRight {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@media screen and (max-width: 767px) {
  .navbar-collapse {
    margin-top: 15px;
    padding: 0 20px;
    background-color: #fff; }
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-left: -35px;
    margin-right: -35px; }
  .navbar-nav > li > a {
    margin: 10px 0;
    padding: 5px 0;
    text-indent: 18px;
    color: #5f5f5f; }
    .navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
      color: #5f5f5f; }
  .navbar-nav > li.active > a:before {
    width: 5px;
    height: 100%;
    bottom: 0; } }

.navbar-toggle {
  margin: 0 15px 0 0;
  padding: 0;
  color: #fff; }
  .navbar-toggle i {
    font-size: 22px; }

.nav-icon {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: block;
  width: 30px;
  height: 18px;
  position: relative;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg); }
  .nav-icon span {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
    .nav-icon span:nth-child(1) {
      top: 0px; }
    .nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
      top: 8px; }
    .nav-icon span:nth-child(4) {
      top: 16px; }
  .nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%; }
  .nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%; }

.nav-footer {
  text-align: center;
  margin: 10px 0; }
  .nav-footer > li {
    margin: 0 15px; }
  .nav-footer > li > a {
    font-size: 15px;
    font-weight: 300;
    color: #fff; }
    .nav-footer > li > a:hover, .nav-footer > li > a:focus {
      text-decoration: underline; }
  @media screen and (max-width: 640px) {
    .nav-footer > li {
      margin: 0 5px; } }

/*--------------------- 
 * Hero Unit
 *--------------------- */
.swiper-container {
  width: 100%;
  height: 100vh; }

.slider-gradient {
  background: url("../img/icons-petal.png") no-repeat center, linear-gradient(-225deg, #DB5ADD 0%, #F07B46 100%); }

.slide {
  text-align: center; }
  .slide .heading,
  .slide .lead {
    margin: 0;
    font-weight: 100;
    color: #fff; }
  .slide .heading {
    font-size: 52px; }
  .slide .lead {
    font-size: 42px; }
  .slide .button-group {
    margin-top: 30px; }
    .slide .button-group .btn {
      margin: 0 8px; }
  .slide.left-align {
    text-align: left; }
  @media screen and (max-width: 767px) {
    .slide .heading,
    .slide .lead {
      font-size: 32px; }
    .slide .button-group .btn {
      padding: 13px 20px; }
    .slide.left-align {
      text-align: center; } }

.slider-image .slide {
  background-position: center; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  background: none;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5); }
  .swiper-button-next:hover, .swiper-button-next:focus,
  .swiper-container-rtl .swiper-button-prev:hover,
  .swiper-container-rtl .swiper-button-prev:focus,
  .swiper-button-prev:hover,
  .swiper-button-prev:focus,
  .swiper-container-rtl .swiper-button-next:hover,
  .swiper-container-rtl .swiper-button-next:focus {
    color: #fff; }

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff; }
  .video-background > div:first-child,
  .video-background video {
    z-index: 0 !important; }
  .video-background .slide {
    margin: 0 auto;
    z-index: 9; }

#mouse {
  position: absolute;
  left: 50%;
  margin-left: -13px;
  bottom: 0;
  z-index: 9; }
  #mouse svg {
    display: block; }
    #mouse svg rect {
      stroke-dasharray: 120;
      stroke: #fff; }
  #mouse i {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: absolute;
    width: 4px;
    height: 10px;
    left: 11px;
    top: 11px;
    background-color: #fff;
    -webkit-animation: scrollBouncing 2s ease-out infinite;
    animation: scrollBouncing 2s ease-out infinite; }

@keyframes scrollBouncing {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(5px); }
  100% {
    transform: translateY(0); } }

@-webkit-keyframes scrollBouncing {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(5px); }
  100% {
    transform: translateY(0); } }

/*--------------------- 
 * Elements  
 *--------------------- */
/* button */
button,
.btn {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }

.btn {
  border: 1px solid #5f5f5f;
  padding: 10px 30px;
  color: #5f5f5f;
  border-color: #c7c7c7; }
  .btn:active, .btn.active {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn:hover, .btn:focus {
    color: #5f5f5f;
    border-color: #949494; }

.btn-large {
  padding: 13px 50px;
  border-width: 2px;
  font-size: 16px; }

.btn-small {
  padding: 8px 28px;
  border-width: 2px;
  font-size: 12px; }

.btn-animated {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden; }
  .btn-animated i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    top: -100%;
    height: 100%;
    width: 100%;
    line-height: 1.7;
    font-size: 180%; }
  .btn-animated .on-hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    line-height: 3; }
  .btn-animated span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; }
  .btn-animated:hover i,
  .btn-animated:hover .on-hover {
    top: 0; }
  .btn-animated:hover span {
    -webkit-transform: translateY(300%);
    transform: translateY(300%); }

.btn-white, .btn-white:hover, .btn-white:focus {
  color: #fff;
  border-color: #fff; }

.btn-accent {
  background-color: #0DB826;
  border-color: #0DB826;
  color: #fff; }
  .btn-accent:hover, .btn-accent:focus {
    background-color: #0cae24;
    border-color: #0DB826;
    color: #fff; }
  .btn-accent.btn-animated:hover, .btn-accent.btn-animated:focus {
    background-color: #0DB826; }

/* about */
.list-company-values > li {
  margin-bottom: 35px; }

.list-company-values .value {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;

  color: #E6E6E6; }

.list-company-values p {
  margin: 0; }

/* carousel dotted pagination */
.owl-theme .owl-controls .owl-page span {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 20px;
  height: 5px;
  margin: 0 5px;
  background: #fff;
  border: 1px solid #B4B4B4; }

.owl-theme .owl-controls .owl-page.active span {
  background: #5f5f5f;
  border-color: #5f5f5f; }

/* carousel navigation buttons */
.owl-theme .owl-controls .owl-buttons {
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -48px; }
  .owl-theme .owl-controls .owl-buttons div {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.5;
    filter: alpha(opacity=50);
    position: absolute;
    padding: 0;
    line-height: 0;
    font-size: 0;
    background-color: transparent;
    color: #c5c5c5; }
    .owl-theme .owl-controls .owl-buttons div:before {
      font-family: 'themify';
      font-size: 48px;
      line-height: 48px; }
    .owl-theme .owl-controls .owl-buttons div.owl-prev {
      left: 0; }
      .owl-theme .owl-controls .owl-buttons div.owl-prev:before {
        content: '\e64a'; }
    .owl-theme .owl-controls .owl-buttons div.owl-next {
      right: 0; }
      .owl-theme .owl-controls .owl-buttons div.owl-next:before {
        content: '\e649'; }

/* team */
.our-team {
  margin-top: 25px; }
  .our-team .media-left {
    padding-right: 15px; }
  .our-team .name {
    font-size: 22px; }
  .our-team .title {
    font-size: 18px;
    color: #B4B4B4; }
  .our-team .brief {
    margin: 10px 0; }
  @media screen and (max-width: 768px) {
    .our-team {
      text-align: center; }
      .our-team .media-left {
        display: block;
        margin-bottom: 15px; }
      .our-team .photo {
        margin: 0 auto; } }

/* services */
.service-item {
  position: relative;
  margin-bottom: 60px; }
  .service-item .service-name {
    margin-bottom: 10px;
    position: relative;
    font-size: 32px;
    font-weight: 300;
    color: #0DB826;
    z-index: 1; }
  .service-item .service-description {
    position: relative;
    margin-bottom: 0;
    z-index: 1; }
  .service-item i {
    font-size: 8em;
    color: #f5f5f5;
    position: absolute;
    top: 15px;
    right: 0;
    z-index: 0; }

.last-row .service-item {
  margin-bottom: 0; }

@media screen and (max-width: 768px) {
  .last-row .service-item {
    margin-bottom: 60px; }
  .last-row .last-item {
    margin-bottom: 0; } }

/* fact metric */
.fact {
  text-align: center; }
  .fact i {
    display: block;
    margin-bottom: 18px;
    font-size: 3em;
    color: #0DB826; }
  .fact .fact-value {
    font-family: "albert", sans-serif;
    font-size: 32px;
    line-height: 1; }
  .fact .fact-title {
    font-family: "albert", sans-serif;
    font-size: 16px; }
  @media screen and (max-width: 768px) {
    .fact {
      margin-bottom: 60px; }
      .fact.last-item {
        margin-bottom: 0; } }

/* social icons */
.list-social-icons a {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #5f5f5f;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  background-color: #f7f7f7; }
  .list-social-icons a:hover, .list-social-icons a:focus {
    border-color: #e3e3e3; }

/* testimonial */
.testimonial {
  text-align: center; }
  .testimonial .content {
    margin-bottom: 40px;
    font-size: 36px;
    font-style: italic;
    line-height: 1.6; }
  .testimonial .author {
    font-family: "albert", sans-serif; }
    .testimonial .author .name, .testimonial .author .title {
      display: block; }
    .testimonial .author .name {
      font-weight: 400;
      font-size: 20px; }
    .testimonial .author .title {
      font-size: 16px;
      color: #B4B4B4; }
  @media screen and (max-width: 767px) {
    .testimonial .content {
      font-size: 26px; } }

/* pricing tables */
.pricing-table {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 20px;
  border: 1px solid #B4B4B4; }
  .pricing-table .header {
    text-align: center;
    margin-bottom: 15px; }
  .pricing-table .title {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1; }
  .pricing-table .description {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    color: #B4B4B4; }
  .pricing-table .price {
    padding: 30px 0;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    font-family: "albert", sans-serif;
    text-align: center; }
    .pricing-table .price .amount {
      position: relative;
      font-size: 64px;
      font-weight: 100;
      line-height: 1; }
    .pricing-table .price .sign {
      position: absolute;
      top: 20px;
      left: -12px;
      font-size: 24px;
      font-weight: 100; }
    .pricing-table .price .term {
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
      line-height: 1;
      color: #B4B4B4; }
  .pricing-table .list-detail {
    margin: 35px 0; }
    .pricing-table .list-detail > li {
      margin-bottom: 10px;
      font-size: 16px; }
      .pricing-table .list-detail > li:last-child {
        margin-bottom: 0; }
      .pricing-table .list-detail > li i {
        margin-right: 5px;
        font-size: 12px;
        font-weight: 700;
        color: #3CC04F; }
  .pricing-table .btn {
    margin-bottom: 8px; }
  .pricing-table .triangle {
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 60px;
    border-right-width: 0px;
    border-top: 60px solid #3CC04F;
    position: absolute;
    top: 0;
    right: 15px; }
    .pricing-table .triangle i {
      position: absolute;
      right: 4px;
      top: -55px;
      font-size: 22px;
      color: #fff; }
  @media screen and (max-width: 767px) {
    .pricing-table {
      margin-bottom: 30px; } }

/* blog */
.blog-post {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 20px;
  border: 1px solid #E9E9E9;
  background-color: #fff; }
  .blog-post .title {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 600; }
    .blog-post .title a {
      color: #0DB826; }
  .blog-post .preview {
    font-size: 15px; }
  .blog-post .meta-info {
    font-family: "albert", sans-serif;
    font-size: 13px; }
  .blog-post .date {
    color: #B4B4B4; }
  .blog-post .more {
    float: right;
    color: #0DB826; }
    .blog-post .more i {
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      position: relative;
      top: 0px;
      left: 0;
      font-size: 11px; }
    .blog-post .more:hover i, .blog-post .more:focus i {
      left: 3px; }
  @media screen and (max-width: 768px) {
    .blog-post {
      margin-bottom: 30px; }
      .blog-post.last-item {
        margin-bottom: 0; } }

/* contact form */
div[class*="col-"] > .form-group {
  margin-left: 0;
  margin-right: 0; }

div[class*="col-"] > .input-group {
  margin-bottom: 15px; }

.contact-form .form-control {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  font-size: 18px;
  color: #5f5f5f; }
  .contact-form .form-control:focus {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    border-color: #aeaeae; }

.parsley-errors-list {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  *zoom: 1; }
  .parsley-errors-list li {
    color: #ca3e3e;
    font-size: 13px;
    list-style-image: none;
    list-style-type: none;
    margin-top: 3px;
    margin-left: 0;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    white-space: nowrap; }

.alert {
  padding: 5px 12px; }

.alert-success {
  color: #60a961;
  background-color: #f9fff6;
  border-color: #e6f3db; }

.contact-address > li {
  margin-bottom: 20px;
  font-size: 20px; }
  .contact-address > li i {
    font-size: 38px;
    vertical-align: middle; }
  .contact-address > li span {
    padding-left: 15px; }

@media screen and (max-width: 767px) {
  .contact-address {
    text-align: center; }
    .contact-address > li {
      margin-bottom: 30px; }
      .contact-address > li i {
        display: block; }
      .contact-address > li span {
        padding-left: 0; } }

/* map */
.map-wrapper {
  display: none; }

#map {
  width: 100%;
  height: 0;
  border-top: 1px solid #b4b4b4; }

.map-toggle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  position: relative;
  top: 37px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #B4B4B4;
  font-size: 2em;
  color: #5f5f5f;
  background: #fff;
  z-index: 1; }
  .map-toggle:hover, .map-toggle:focus {
    color: #5f5f5f; }

.map-overlay {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  padding: 5px 15px;
  position: absolute;
  top: -30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #d6d6d6; }

.overlay_arrow {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -11px; }
  .overlay_arrow.above {
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff; }

/* clients */
.clients {
  text-align: center; }
  .clients img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height: 50px;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%); }
  .clients a:hover > img,
  .clients a:focus > img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    filter: none;
    -webkit-filter: grayscale(0%); }

.tooltip-inner {
  background-color: #5a5a5a; }

.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100); }

.tooltip.top .tooltip-arrow {
  border-top-color: #5a5a5a; }

/* preloader */
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: #fff;
  z-index: 11000; }

.dots-loader:not(:required) {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  opacity: 1;
  overflow: hidden;
  text-indent: -9999px;
  background: transparent;
  box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  -webkit-animation: dots-loader 5s infinite ease-in-out;
  animation: dots-loader 5s infinite ease-in-out;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -webkit-transform: scale(1);
  transform: scale(1); }

@keyframes dots-loader {
  0% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  8.33% {
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  16.67% {
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  25% {
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  33.33% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px; }
  41.67% {
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  50% {
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  58.33% {
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  66.67% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  75% {
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  83.33% {
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px; }
  91.67% {
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  100% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; } }

@-webkit-keyframes dots-loader {
  0% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  8.33% {
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  16.67% {
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  25% {
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  33.33% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px; }
  41.67% {
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  50% {
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  58.33% {
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  66.67% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  75% {
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px; }
  83.33% {
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px; }
  91.67% {
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; }
  100% {
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px; } }

/*--------------------- 
 * Portfolio
 *--------------------- */
/* portfolio item */
.portfolio-item {
  position: relative;
  overflow: hidden; }
  .portfolio-item:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  .portfolio-item:hover .overlay {
    width: 100%;
    height: 100%;
    text-align: left;
    opacity: 0.9;
    border-color: rgba(255, 255, 255, 0.25); }
  .portfolio-item:hover .plus-minus .vertical {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .portfolio-item:hover .info {
    opacity: 1; }
  .portfolio-item:hover .type {
    opacity: .1; }
  .portfolio-item img {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .portfolio-item .overlay {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 0px;
    height: 0px;
    position: absolute;
    top: 0;
    background-color: #0DB826;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer; }
    .portfolio-item .overlay i {
      font-size: 2em;
      color: #fff;
      line-height: 90px; }
  .portfolio-item .type {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.1); }
    .portfolio-item .type i {
      font-size: 2em;
      color: rgba(0, 0, 0, 0.3); }
  .portfolio-item .info {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    padding: 0 30px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%; }
    .portfolio-item .info .category {
      font-family: "albert", sans-serif;
      position: absolute;
      right: 25px;
      top: 30px; }
    .portfolio-item .info .centered {
      flex: 1; }
    .portfolio-item .info .title {
      margin-bottom: 15px;
      font-size: 20px;
      line-height: 1.4; }
    .portfolio-item .info .btn:hover, .portfolio-item .info .btn:focus {
      background-color: #fff;
      color: #5f5f5f; }

.plus-minus {
  position: absolute;
  margin: 0 auto;
  width: 36px;
  height: 36px;
  top: 10px;
  left: 10px;
  z-index: 2; }
  .plus-minus span {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: absolute;
    background: #fff;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  .plus-minus .horizontal {
    top: 17px;
    left: 0px;
    right: 0px;
    height: 2px; }
  .plus-minus .vertical {
    top: 0px;
    left: 17px;
    bottom: 0px;
    width: 2px; }
  .plus-minus:hover .vertical {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }

.portfolio-detail {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #fff; }
  .portfolio-detail .media {
    margin-bottom: 50px; }
  .portfolio-detail .project-info {
    margin-bottom: 40px; }
    .portfolio-detail .project-info > li {
      margin-bottom: 20px; }
    .portfolio-detail .project-info strong {
      display: block;
      font-family: "albert", sans-serif; }
  .portfolio-detail .mfp-close {
    position: absolute;
    top: 10px;
    right: 8px;
    color: #B4B4B4;
    opacity: 1; }
    .portfolio-detail .mfp-close:hover, .portfolio-detail .mfp-close:focus {
      color: #8e8e8e; }
    .portfolio-detail .mfp-close:before {
      content: '\e646';
      display: inline;
      font-family: 'themify'; }
  @media screen and (max-width: 767px) {
    .portfolio-detail div.row > div:first-child {
      margin-bottom: 60px; } }

.portfolio-isotope ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .portfolio-isotope ul > li {
    width: 50%;
    padding: 0; }

@media screen and (max-width: 992px) {
  .portfolio-isotope ul > li {
    width: 50%; } }

@media screen and (max-width: 767px) {
  .portfolio-isotope ul > li {
    width: 100%; } }

/* fix small glitch for Firefox affecting layout */
@-moz-document url-prefix() {
  .portfolio-isotope ul > li {
    margin-left: -0.5px; } }

/* porfolio filters */
.portfolio-item-filters {
  text-align: center;
  margin-bottom: 50px; }
  .portfolio-item-filters li {
    padding: 0 20px; }
    .portfolio-item-filters li a {
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      display: block;
      position: relative;
      font-size: 16px;
      color: inherit; }
      .portfolio-item-filters li a:after, .portfolio-item-filters li a:before {
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -ms-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #5f5f5f;
        content: ''; }
      .portfolio-item-filters li a:after {
        opacity: 0;
        -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
        transition: top 0.3s, opacity 0.3s, transform 0.3s; }
      .portfolio-item-filters li a:hover, .portfolio-item-filters li a:focus, .portfolio-item-filters li a.active {
        text-decoration: none;
        outline: none; }
        .portfolio-item-filters li a:hover:after, .portfolio-item-filters li a:focus:after, .portfolio-item-filters li a.active:after {
          top: 0%;
          opacity: 1; }
  @media screen and (max-width: 767px) {
    .portfolio-item-filters li {
      padding: 0 5px; } }

/* porfolio loading effect */
.mfp-preloader {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: 60px;
  position: absolute;
  text-indent: -9999px;
  background-image: url("../img/loading-ripple.svg");
  background-repeat: no-repeat;
  background-position: center center; }

/*--------------------- 
 * Typography
 *--------------------- */
.section-heading {
  text-align: center; }
  .section-heading .intro {
    color: #0DB826;
    font-size: 18px; }
  .section-heading .heading {
    font-size: 48px;
    font-weight: 300; }
  .section-heading .subheading {
    color: #B4B4B4;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 5px;
    margin-bottom: 0; }
  .section-heading .separator {
    display: block;
    margin: 50px 0;
    font-size: 150%;
    color: #B4B4B4; }
  .section-heading.left {
    padding-right: 30px;
    text-align: left; }
  @media screen and (max-width: 768px) {
    .section-heading.left {
      padding-right: 0;
      text-align: center; } }

.heading-title {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 12px;
  color: #0DB826; }

.text-muted {
  color: #B4B4B4; }

.text-white {
  color: #ffffff;
}

.text-black {
  color: #000000;
}

.text-aqua {
  color: #2aaae2;
}

.text-big1 {
  font-size: 600%;
}

.dark-sec{
  background-color: #232121;
}

.white-background{
  background-color: #ffffff;
}

.a-background{
  width: 100%;
    height: 805px;
    background-image: url('../img/about2.jpg');
    background-size: cover;
}

.text-gris{
  color: #5e6060;
}

.col-centered{
  float: none;
  margin: 0 auto;
}

.ima-center{
  display: block;
  margin: 0 auto;
}

.caja {
  border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border: 1px solid #2aaae2;
  padding: 2px;
  width: 250px;
  height: 50px;
  margin: 3px;
}

.albert{
  font-family: "albert";
}

.albertbold{
  font-family: "albertbold";
}

.albertthin{
  font-family: "albertthin";
}

.bebasneue{
  font-family: "bebasneue";
}

.f_small{
  font-size: 13px;
}

.f_medium{
  font-size: 16px
}

.social {
  position: absolute; 
  right: 0;
  top: 90px; 
  z-index: 2000; 
}
 
  .social ul {
    list-style: none;
  }
 
  .social ul li a {
    display: inline-block;
    color:#fff;
    background: #2aaae2;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition:all 500ms ease;
  }
 
  .social ul li .icon {
    padding: 12px;
    border-radius: 200px 200px 200px 200px;
    -moz-border-radius: 200px 200px 200px 200px;
    -webkit-border-radius: 200px 200px 200px 200px;    
    margin: 2px;
  }
 
  .social ul li a:hover {
    background: #2eeee0; 
    
  }


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