/* Table of Content
==================================================
	- Google fonts & font family -
	- General -
    - Typography -
    - Preloader -
	- Header -
    - Main slider -
    - About section -
    - Services section -
    - Portfoilo section -
    - Clients section -
    - Contact section -
    - Footer -
    - Portfolio single page -
	- Cookies -
    - Responsive media queries -
*/


/* Google fonts & font family
==================================================*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,700,600,500);
@font-face {
    font-family: 'bavroregular';
    src: url('../fonts/bavro-regular-webfont.eot');
    src: url('../fonts/bavro-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/bavro-regular-webfont.woff2') format('woff2'), url('../fonts/bavro-regular-webfont.woff') format('woff'), url('../fonts/bavro-regular-webfont.ttf') format('truetype'), url('../fonts/bavro-regular-webfont.svg#bavroregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'texgyreadventorregular';
    src: url('../fonts/texgyreadventor-regular-webfont.eot');
    src: url('../fonts/texgyreadventor-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/texgyreadventor-regular-webfont.woff') format('woff'), url('../fonts/texgyreadventor-regular-webfont.ttf') format('truetype'), url('../fonts/texgyreadventor-regular-webfont.svg#texgyreadventorregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'breakbold';
    src: url('../fonts/break_bold.eot');
    src: url('../fonts/break_bold.eot?#iefix') format('embedded-opentype'), url('../fonts/break_bold.woff2') format('woff2'), url('../fonts/break_bold.woff') format('woff'), url('../fonts/break_bold.ttf') format('truetype'), url('../fonts/break_bold.svg#breakbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'breakextralight';
    src: url('../fonts/break_extralight.eot');
    src: url('../fonts/break_extralight.eot?#iefix') format('embedded-opentype'), url('../fonts/break_extralight.woff2') format('woff2'), url('../fonts/break_extralight.woff') format('woff'), url('../fonts/break_extralight.ttf') format('truetype'), url('../fonts/break_extralight.svg#breakextralight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'breaklight';
    src: url('../fonts/break_light.eot');
    src: url('../fonts/break_light.eot?#iefix') format('embedded-opentype'), url('../fonts/break_light.woff2') format('woff2'), url('../fonts/break_light.woff') format('woff'), url('../fonts/break_light.ttf') format('truetype'), url('../fonts/break_light.svg#breaklight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'breakregular';
    src: url('../fonts/break_regular.eot');
    src: url('../fonts/break_regular.eot?#iefix') format('embedded-opentype'), url('../fonts/break_regular.woff2') format('woff2'), url('../fonts/break_regular.woff') format('woff'), url('../fonts/break_regular.ttf') format('truetype'), url('../fonts/break_regular.svg#breakregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'breaksemibold';
    src: url('../fonts/break_semibold.eot');
    src: url('../fonts/break_semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/break_semibold.woff2') format('woff2'), url('../fonts/break_semibold.woff') format('woff'), url('../fonts/break_semibold.ttf') format('truetype'), url('../fonts/break_semibold.svg#breaksemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* General
==================================================*/

body {
    position: relative;
    margin: 30px !important;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0px;
    word-spacing: 1px;
    background: #f5f5f5;
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
    padding-left: 0;
}

.size-30 {
    font-size: 30px;
}


/*links*/

a {
    color: #60606e;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a.link {
    position: relative;
}

a.link:after {
    content: "";
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00B8E0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    color: #60606e;
    text-decoration: none;
}

a:hover:after {
    width: 50%;
}

.default-btn {
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 0 20px 20px 0;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
}

.default-btn i {
    opacity: 0;
    position: absolute;
    font-size: 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    right: 30px;
    top: 0;
}

.default-btn:hover i {
    opacity: 1;
    right: 0;
}

.default-btn:after {
    content: "";
    position: absolute;
    top: 27px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: #60606e;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.default-btn:hover:after {
    width: 100%;
}

.slider-btn {
    font-family: 'breakregular';
    color: #fff;
    font-size: 20px;
}

.slider-btn:hover {
    color: #fff;
}

.slider-btn:after {
    top: 45px;
    background-color: #fff;
}


.frame-line {
    position: fixed;
    left: 0;
    right: 0;
    display: block;
    background: #fff;
    z-index: 999999;
}

.frame-line.top-frame {
    height: 30px;
    top: 0
}

.frame-line.bottom-frame {
    height: 30px;
    bottom: 0
}

.frame-line.right-frame {
    width: 30px;
    right: 0;
    height: 100%;
    left: auto
}

.frame-line.left-frame {
    width: 30px;
    left: 0;
    height: 100%;
    right: auto;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.no-padding [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.subtitle {
    font-family: 'Droid Serif', serif;
    font-size: 14px;
    font-style: italic;
}

.h50 {
    height: 50px;
}

.full-height {
    height: 100vh;
}

.full-height-flex {
    height: 100vh;
    padding: 50px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.display-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display-flex div:first-of-type {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.vertical-align {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.container-wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.padding-30 {
    padding: 30px;
}

.padding-50 {
    padding: 50px
}

.padding-tb-50 {
    padding: 50px 0;
}

.padding-tb-30 {
    padding: 30px 0;
}

.numbers-div h1 {
    font-family: 'bavroregular';
    font-size: 50px;
    margin-bottom: 0;
}

.numbers-div {
    text-align: center;
    width: 70px;
    margin: 100px auto 0;
}

.numbers-div .vertical-line,
.vertical-div .vertical-line {
    height: 40px;
    width: 2px;
    background: #636B70;
    display: block;
    text-align: center;
    margin: 10px auto 0;
}

.numbers-div h4,
.vertical-div h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: bottom left 0;
    transform-origin: bottom left 0;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0 29px 0;
    white-space: nowrap;
}

.numbers-div h4:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    width: 100%;
}

.center {
    text-align: center
}
.center img {
    margin: 0 auto;
}

.relative {
    position: relative
}

.mt-30 {
    margin-top: 30px;
}

.sound-iframe {
    width: 100% !important;
    border: none;
}

.video-iframe {
    width: 100% !important;
    border: none;
    height: 300px;
}

.with-out-frame .frame-line {
    display: none;
}

body.with-out-frame {
    margin: 0 !important;
}
.with-out-frame .nav-container {
    right: 0;
}

.with-out-frame .nav-trigger {
    right: 20px;
    top: 20px;
}
.with-out-frame .sp-horizontal .sp-previous-arrow {
    left: 10px;
}
.with-out-frame .sp-horizontal .sp-next-arrow {
    right: 10px;
}
.with-out-frame .nav-container {
    top:13px;
}

/* Typography
==================================================*/

h1 {
    font-family: 'texgyreadventorregular';
    font-size: 30px;
}

h3 {
    font-family: 'texgyreadventorregular';
    font-size: 30px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h4 {
    font-family: 'texgyreadventorregular';
}





/* Preloader
==================================================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    /* change if the mask should be a color other than white */
    z-index: 1000;
    /* makes sure it stays on top */
}

.pre-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.logo-circle {
    position: relative;
    background: #636B70;
    color: #fff;
    display: block;
    line-height: 70px;
    font-size: 15px;
    -webkit-animation: white-shadow 1s infinite;
    animation: white-shadow 1s infinite;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    text-align: center;
}

@-webkit-keyframes white-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.3);
        -webkit-transition: box-shadow 0.3s ease-in-out;
    }
    100% {
        box-shadow: 0 0 0 30px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-transition: box-shadow 0.4s ease-in-out;
    }
}

@keyframes white-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.3);
        -webkit-transition: box-shadow 0.3s ease-in-out;
        transition: box-shadow 0.3s ease-in-out;
    }
    100% {
        box-shadow: 0 0 0 30px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: box-shadow 0.4s ease-in-out;
        transition: box-shadow 0.4s ease-in-out;
    }
}


/* Header
==================================================*/

header {
    position: fixed;
    z-index: 200;
    padding: 20px;
}

.main-logo {
    font-family: 'breaksemibold';
    font-size: 25px;
    color: #fff;
    background: #636B70;
    padding: 5px 10px 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-transform: uppercase;
}

.main-logo:hover,
.main-logo:focus {
    color: #fff;
}

.main-logo.active-link {
    color: #fff !important;
}


/* navbar */

.nav-trigger {
    position: fixed;
    z-index: 4;
    top: 40px;
    right: 40px;
    height: 44px;
    width: 44px;
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
    text-indent: 100%;
}

.nav-trigger span,
.nav-trigger span::before,
.nav-trigger span::after {
    position: absolute;
    height: 2px;
    width: 30px;
    background: #fff;
}

.nav-trigger span {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background .3s;
    transition: background .3s;
}

.nav-trigger span::before,
.nav-trigger span::after {
    content: '';
    top: 0;
    left: 0;
    -webkit-transition: background .3s, -webkit-transform .3s;
    transition: background .3s, -webkit-transform .3s;
    transition: background .3s, transform .3s;
    transition: background .3s, transform .3s, -webkit-transform .3s;
}

.nav-trigger span::before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.nav-trigger span::after {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.nav-trigger:hover span,
.nav-trigger:hover span::before,
.nav-trigger:hover span::after {
    background: white;
}

.nav-open .nav-trigger span {
    background: transparent;
}

.nav-open .nav-trigger span::before,
.nav-open .nav-trigger span::after {
    background: #fff;
}

.nav-open .nav-trigger span::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-open .nav-trigger span::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-container {
    position: fixed;
    z-index: 100;
    top: 33px;
    right: 33px;
    height: 57px;
    width: auto;
    max-width: 70%;
    padding: 0 20px;
    background: rgba(99, 107, 112, 1);
    /*	overflow: auto;*/
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.07, .23, .34, 1);
    transition: -webkit-transform .5s cubic-bezier(.07, .23, .34, 1);
    transition: transform .5s cubic-bezier(.07, .23, .34, 1);
    transition: transform .5s cubic-bezier(.07, .23, .34, 1), -webkit-transform .5s cubic-bezier(.07, .23, .34, 1);
}

.nav-open .nav-container {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.nav {
    list-style: none;
    padding: 0 30px 0 0;
}

.nav li {
    float: left;
    margin-right: 20px;
}

.nav a {
    display: block;
    padding: 16px 0 !important;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
    color: #00B8E0;
}

.active-link {
    color: #00B8E0 !important;
}

.nav-open .nav a {
    -webkit-animation: slide-in .4s .2s backwards;
    animation: slide-in .4s .2s backwards;
}

.nav-open .nav li:nth-of-type(2) a {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.nav-open .nav li:nth-of-type(3) a {
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.nav-open .nav li:nth-of-type(4) a {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.nav-open .nav li:nth-of-type(5) a {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.nav-open .nav li:nth-of-type(6) a {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.nav-open .nav li:nth-of-type(7) a {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.nav-open .nav li:nth-of-type(8) a {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/* Main slider
==================================================*/

.slider-3 h2.sp-layer {
    font-family: 'Montserrat', sans-serif;
    font-size: 4em !important;
    color: #fff;
    text-transform: uppercase;
}
.slider-3 p.sp-layer.subtitle {
    color: #fff;
    font-size: 16px;
    text-align: center;
    white-space: normal !important;
}
.slider-3 {
    text-align: center;
}

/* About section
==================================================*/

#section-1 {
    background: #f5f5f5;
}

.intro-img-section {
    position: relative;
}

.intro-img-section .gray-bg {
    position: absolute;
    top: 30px;
    left: 25px;
    width: 85%;
    height: 335px;
    display: block;
    z-index: 0;
    border: 8px solid #ccc;
}

.intro-img-section img {
    position: relative;
    z-index: 1;
}

.vertical-div {
    position: absolute;
    top: -4px;
    right: 30px;
    width: 4px;
}

.vertical-div h4 {
    margin: -3px !important;
}

#section-1 .subtitle {
    color: #636B70;
}


/* Services section
==================================================*/

#section-2 {
    background: #636B70;
    color: #fff;
}

#section-2 .numbers-div .vertical-line {
    background: #f5f5f5;
}

#section-2 .bg-div-cover {
    background: url(../img/servicios.jpg);
    background-size: cover;
}

.icon-container {
    padding: 100px 10px 80px;
}

.icon-box {
    margin-bottom: 50px;
    padding-right: 10px;
}

.divider {
    width: 40px;
    margin: 20px 0;
    height: 1px;
    border-bottom: 2px solid #636B70;
}

.icon-box .divider {
    width: 40px;
    height: 1px;
    display: block;
    margin: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.icon-box:hover .divider {
    -webkit-transform: scale(2, 1);
    transform: scale(2, 1);
    -webkit-transform-origin: left;
    transform-origin: left
}


/* Portfolio section
==================================================*/

#section-3 {
    background: #f5f5f5;
    color: #555;
    padding: 100px 0 0;
}

#section-3 .subtitle {
    color: #636B70;
}

.portfolio .categories-grid span {
    font-size: 30px;
    margin-bottom: 50px;
    display: inline-block;
}

.portfolio .categories-grid .categories ul li {
    list-style: none;
    margin: 20px 0;
}

.portfolio .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    margin-left: 20px;
}

.portfolio .categories-grid .categories ul li a.active {
    margin-left: 0;
    background-color: #636B70;
    padding: 0 10px;
    color: white;
}

.portfolio_filter {
    padding-left: 0;
}

@media (max-width: 991px) {
    .portfolio .categories-grid span {
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    .portfolio .categories-grid .categories ul li {
        text-align: center;
    }
    .portfolio .categories-grid .categories ul li a {
        margin-left: 0;
    }
}

.portfolio_item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
}

.portfolio_item .portfolio_item_hover {
    position: absolute;
    top: 10px;
    left: 10px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    background-color: rgba(255, 255, 2551, .95);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.portfolio-border {
    border: 1px solid #00B8E0;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    position: absolute;
    top: 5px;
    left: 5px;
}
.portfolio_item .portfolio_item_hover .item_info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 100%;
}

.portfolio_item .portfolio_item_hover .item_info span {
    display: block;
    color: #00B8E0;
    font-size: 18px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease-in-out .3s;
    transition: all .5s ease-in-out .3s;
    opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
    background-color: #00B8E0;
    padding: 0 10px;
    color: white;
    margin-top: 10px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .4s ease-in-out .4s;
    transition: all .4s ease-in-out .4s;
    opacity: 0;
    font-size: 10px;
    letter-spacing: 2px;
}

.portfolio_item:hover .portfolio_item_hover {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* Clients section
==================================================*/

#section-4 {
    background: -webkit-linear-gradient( rgba(51, 51, 51, .5), rgba(51, 51, 51, .5)), url(../img/clientes.jpg);
    background: linear-gradient( rgba(51, 51, 51, .5), rgba(51, 51, 51, .5)), url(../img/clientes.jpg);
    background-size: cover;
    color: #f5f5f5;
    padding: 150px 0 150px;
}

#section-4 .numbers-div .vertical-line {
    background: #f5f5f5;
}

.clients-list {
    text-align: center;
    display: inline-block;
    margin: 50px auto;
}

.clients-list li {
    float: left;
    margin: 0 30px;
}

.clients-list li img {
    -webkit-transition: all .5s;
    transition: all .5s;
    opacity: .5
}

.clients-list li img:hover {
    opacity: 1
}

#clients-slider .sp-button {
    border: 2px solid #fff;
}

#clients-slider .sp-selected-button {
    background-color: #fff;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

.quote-container {
    margin-bottom: 30px;
}

.quote-container i {
    font-size: 45px;
}

.Job {
    font-size: 12px;
    color: #ccc;
}


/* Contact section
==================================================*/

#section-5 {
    color: #636B70;
    padding: 150px 0 150px;
    background: -webkit-linear-gradient( rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url(../img/contacto.jpg);
    background: linear-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url(../img/contacto.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

#section-5 .subtitle {
    color: #636B70
}
.formu {
    margin: 0px; 
    font-size: 10px;
    line-height: 12px;
	text-align:justify;
    word-spacing: 1px;
}

.ver {
    color:#00B8E0;
}

.w-bg {
    background: rgba(255, 255, 255, .8);
}

.w-bg i {
    margin-right: 7px;
    line-height: 27px;
}

.b-bg {
    background: rgba(99, 107, 112, .9);
}

.b-bg .wrap {
    margin: 0 auto;
}

.contact-div {
    margin-bottom: 30px;
}

.mat-label {
    display: block;
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    color: #e2e2e2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: normal;
}

.mat-input {
    position: relative;
    background: transparent;
    width: 100%;
    border: none;
    outline: none;
    padding: 2px 0;
    color: #fff;
}

.mat-div {
    padding: 10px 0 0 0;
    position: relative;
}

.mat-div textarea {
    resize: none;
}

.mat-div:after,
.mat-div:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #e2e2e2;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.mat-div::after {
    background-color: #999;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.is-active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.is-active .mat-label {
    color: #999;
    margin: 0;
}

.is-completed .mat-label {
    font-size: 12px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #636B70 inset;
    -webkit-text-fill-color: #fff !important;
}

#submit_btn {
    color: #f5f5f5;
    background-color: transparent;
    border: none;
    margin-top: 30px;
    outline: none;
}

#submit_btn:after {
    background-color: #f5f5f5;
}

#result {
    color: #fff;
}

.mat-input.error {
    border-bottom: 1px solid red;
}
.email:hover {
    color: #00B8E0;
}


/* Footer
==================================================*/

footer {
    padding: 50px;
    position: relative;
    background: #eee;
}

footer .nav {
    display: inline-block;
    padding-left: 0;
}

footer .nav li a {
    color: #666;
    font-size: 14px;
}

.social-footer {
    display: inline-block;
    margin-top: 10px;
}

.social-footer li {
    float: left;
    margin: 5px 10px;
    font-size: 14px;
}
.enlace:hover {
    color: #00B8E0;
}

.back-to-top {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #636B70;
    color: #f5f5f5;
    line-height: 50px;
    text-align: center;
    top: -25px;
    -webkit-transition: all .5s;
    transition: all .5s;
    font-size: 30px;
    left: 60px;
}

.back-to-top:hover {
    background: rgba(51, 51, 51, .8);
    line-height: 45px;
    color: #fff;
}


/* Portfolio single page
==================================================*/

.portfolio-hed {
    background: url(../img/portafolio.jpg);
    padding: 100px 20px;
    text-align: center;
    color: #f5f5f5;
    position: relative;
}

.portfolio-hed a {
    color: #f5f5f5
}

.portfolio-hed a:hover {
    color: #00B8E0
}

.navigation-container {
    font-size: 35px;
    background: #eee;
    text-align: center;
}

.navigation-container a {
    margin: 0 30px;
    padding: 15px;
    color: #636B70;
    display: inline-block;
}

.navigation-container a:hover {
    color: #fff;
    background: #636B70;
}

.description-container {
    padding: 50px;
}

.Project-container {
    padding: 50px;
}

.social-shere {
    padding-left: 0;
    font-size: 25px;
}

.social-shere li {
    float: left;
}

.social-shere li a {
    display: block;
	
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid #636B70;
    line-height: 30px;
    margin: 3px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.social-shere li a:hover {
    opacity: .7;
}
.url:hover {
    color: #00B8E0;
}

/* Legal
==================================================*/

.legal-hed {
    background: url(../img/legal.jpg);
    padding: 100px 20px;
    text-align: center;
    color: #f5f5f5;
    position: relative;
}

.legal-hed a {
    color: #f5f5f5
}

.legal-hed a:hover {
    color: #00B8E0
}

.active {
    color: #00B8E0;
}

.navigation-container {
    font-size: 35px;
    background: #eee;
    text-align: center;
}

.navigation-container a {
    margin: 0 30px;
    padding: 15px;
    color: #636B70;
    display: inline-block;
}

.navigation-container a:hover {
    color: #fff;
    background: #636B70;
}

.description-container {
    padding: 50px;
}

.Project-container {
    padding: 50px;
}

.social-shere {
    padding-left: 0;
    font-size: 25px;
}

.social-shere li {
    float: left;
}

.social-shere li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid #636B70;
    line-height: 30px;
    margin: 3px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.social-shere li a:hover {
    opacity: .7;
}

/* Conent */

.content {
    margin: 0 auto;
    padding: 0 0 3em;
}

.content > div:not(.title) {
    margin: -80px auto 0;
    max-width: 900px;
    padding: 0 1.25em;
}

.content > div:not(.title) p {
    margin: 0 auto 1.5em auto;
}

.content > div:not(.title) p:first-child {
    font-size: 1.35em;
}

.content h3 {
    margin: 0;
    font-size: 1.4em;
}

.content blockquote {
    padding: 0.25em;
    font-style: italic;
    font-size: 1.65em;
    font-family: 'Lora', serif;
    line-height: 1.4;
}

.content blockquote::before {
    content: '\201C';
}

.content blockquote::after {
    content: '\201D';
}

.intro-effect-fadeout.modify .bg-img {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}

.intro-effect-fadeout .bg-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 101%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    background: -webkit-linear-gradient(top, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 1) 100%);
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 1) 100%);
}

.intro-effect-fadeout.modify .bg-img::after {
    opacity: 1;
}

.intro-effect-fadeout .title {
    text-align: left;
    max-width: 900px;
}

.intro-effect-fadeout.modify .header h1,
.intro-effect-fadeout .header p,
.intro-effect-fadeout.modify .header h4 {
    color: #514753;
}

.intro-effect-fadeout .header p:nth-child(2) {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
}

.intro-effect-fadeout .header p:nth-child(3) {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
}

.intro-effect-fadeout.modify .header p:nth-child(2),
.intro-effect-fadeout.modify .header p:nth-child(3) {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* Cookies
==================================================*/

#barraaceptacion {
    display:none;
    position:fixed;
    left:0px;
    right:0px;
    bottom:0px;
    padding-bottom:20px;
    width:100%;
    min-height:65px;
    background-color: rgba(0, 0, 0, 0.8);
    color:#999;
    z-index:99999;
}

.aviso {
	float:left;
    width:50%;
	text-align:left;
    position:relative;
    padding-left:50px;
    font-size:12px;
	top:5px;
}

.botones {
	float:right;
	width:50%;
	text-align:right;
    position:relative;
    padding-right:50px;
    font-size:12px;
	text-decoration:none;
	top:5px;

}

.aceptar {
	background-color:#00B8E0;
	color:#f5f5f5;
	padding:2px;
	padding-left:10px;
	padding-right:10px;
	margin-left:5px;
	margin-right:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	cursor:pointer;
}

.aceptar:hover{
	background-color:#f5f5f5;
	color:#00B8E0;
}

.info {
	background-color:#636B70;
	color:#ccc;
	padding:2px;
	padding-left:10px;
	padding-right:10px;
	margin-left:5px;
	margin-right:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	cursor:pointer;
}

.info:hover{
	background-color:#ccc;
	color:#636B70;
}


/* Responsive media queries
==================================================*/

@media (max-width: 990px) {
    .full-height-flex,
    .full-height {
        height: auto;
    }
    .bg-div-cover {
        min-width: 100%;
    }
    .numbers-div {
        margin: 20px auto;
    }
    .text-body {
        text-align: center;
        margin-bottom: 30px;
    }
    .text-body img {
        margin: 0 auto;
    }
    .portfolio-div {
        text-align: center;
    }
    .intro-img-section .gray-bg {
        width: 60%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .intro-img-section img {
        margin: 0 auto;
    }
    #section-3 {
        padding-top: 0;
    }
    #section-6,
    #section-7 {
        padding: 0;
    }
    .cd-horizontal-timeline .events-content h2 {
        margin-top: 30px;
    }
    footer {
        text-align: center;
    }
    footer .pull-right,
    footer .pull-left {
        float: none !important;
        padding-left: 0;
    }
    .social-footer {
        margin-top: 10px;
    }
    .back-to-top {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    footer {
        padding: 50px 10px;
    }
    .numbers-div {
        width: auto;
    }
    .numbers-div h4 {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@media (max-width: 900px) {
    .nav-container {
        height: 100%;
        width: 100%;
        max-width: 220px;
        right: 20px;
    }
    .nav-container .nav li {
        float: none;
    }
}
@media (max-width: 990px) {
    .slider-3 h2.sp-layer {
        font-size: 2.5em !important;
    }
}

@media (max-width: 767px) {
    #section-2 {
        text-align: center;
    }
    .intro-img-section .gray-bg {
        width: 80%;
    }
    .icon-box .divider {
        margin: 15px auto;
    }
    .icon-box:hover .divider {
        -webkit-transform: scale(2, 1);
        transform: scale(2, 1);
        -webkit-transform-origin: center;
        transform-origin: center
    }
    .img-responsive {
        margin: 0 auto;
    }
    .clients-list li {
        margin: 0 15px;
    }
    .nav li {
        margin-right: 10px;
    }
    footer .nav li a {
        font-size: 14px;
    }
    .title h1 {
        font-size: 40px;
    }
    .title h4 {
        font-size: 20px;
    }
    .title p.subline {
        font-size: 15px;
    }
	
}

@media (max-width: 500px) {
    body {
        margin: 0 !important;
    }
    .frame-line {
        display: none;
    }
    .nav-trigger {
        right: 10px;
        top: 10px;
    }
    .nav-container {
        right: 0;
        top: 4px;
    }
    h1.sp-layer {
        display: none;
    }
	img.sp-layer {
        display: none;
    }
    h2.sp-layer {
        left: 0 !important;
    }
    .vertical-div {
        display: none;
    }
    .clients-list li {
        margin: 0 15px;
    }
    .clients-list li img {
        width: 90px;
    }
    .description-container,
    .Project-container {
        padding: 20px;
    }
    .title h1 {
        font-size: 30px;
    }
    .title h4 {
        font-size: 17px;
    }
    .title p.subline {
        font-size: 13px;
    }
    .title p.subline img {
        margin-right: 2px;
        width: 30px;
    }
}
@media (max-width: 500px) {
    .slider-3 h2.sp-layer,
    .slider-3 p.sp-layer.subtitle {
        width: auto !important;
    }
    .slider-3 h2.sp-layer {
        font-size: 2.3em !important;
    }
}
@-moz-document url-prefix() {
    .portfolio_container .img-responsive,
    .blog_container .img-responsive,
    .team-style-2 .img-responsive,
    #section-5 .img-responsive,
    .portfolio-style-3 .img-responsive {
        width: 100%
    }
    .blog-img-container span {
        top: 20px !important;
    }
}