@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,600,700,300,800);


/*************************
*******Typography******
**************************/
html {
    height: 100%;
}

body {
    background: #FFF7EC;
    font-family: 'Open Sans', sans-serif;
    color: #624F41;
    line-height: 22px;
    height: 100%;
}

.wrapper {
    min-height: 100%;
    margin-bottom: -120px; /* altura del footer */
}


.imgGris {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
}

    .imgGris:hover {
        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"); /* Firefox 10+, Firefox on Android */
        -webkit-filter: grayscale(99%);
        -moz-filter: grayscale(99);
        -ms-filter: grayscale(99);
        filter: grayscale(99%);
        filter: gray; /* IE 6-9 */
    }

.letraGrande {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}



.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: #D91020;
    color: #fff;
    width: 40px;
    height: 38px;
    line-height: 32px;
    right: 15px;
    bottom: 15px;
    padding-top: 2px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .scroll-top-wrapper:hover {
        background-color: #ccc;
        opacity: 0.4;
    }

    .scroll-top-wrapper.show {
        visibility: visible;
        cursor: pointer;
        opacity: 0.7;
    }

    .scroll-top-wrapper i.fa {
        line-height: inherit;
    }

.thumbnail {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border: 1px solid #444;
}

    .thumbnail img {
        opacity: .75;
    }

        .thumbnail img:hover {
            opacity: 1;
        }

.clear10 {
    clear: both;
    height: 10px;
}

.clear20 {
    clear: both;
    height: 20px;
}

.clear200 {
    clear: both;
    height: 200px;
}

.clear300 {
    clear: both;
    height: 300px;
}

.clear400 {
    clear: both;
    height: 400px;
}

.imgMargenesLeft {
    margin: 0px 10px 10px 0px;
}

.imgMargenesRight {
    margin: 0px 0px 10px 10px;
}

.textoImportante {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #BF011A;
    font-size: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #624F41;
}

h1 {
    font-size: 3em;
    /*color:#fff;*/
}

h2 {
    font-size: 20px !important;
}

.font2em {
    font-size: 2em !important;
}

h3 {
    font-size: 16px !important;
    color: #787878;
    font-weight: 400;
    line-height: 24px;
}

h4 {
    font-size: 16px;
}


a {
    color: #D91020;
    -webkit-transition: color 300ms, background-color 300ms;
    -moz-transition: color 300ms, background-color 300ms;
    -o-transition: color 300ms, background-color 300ms;
    transition: color 300ms, background-color 300ms;
}

    a:hover, a:focus {
        color: #d43133;
    }

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}


.btn-primary {
    padding: 8px 20px;
    background: #D91020;
    color: #fff;
    border-radius: 4px;
    border: none;
    margin-top: 10px;
}


    .btn-primary:hover,
    .btn-primary:focus {
        background: #BF011A;
        outline: none;
        box-shadow: none;
    }

.btn-transparent {
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
}

    .btn-transparent:hover {
        border-color: rgba(255, 255, 255, 0.5);
    }

a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}

.dropdown-menu {
    margin-top: -1px;
    min-width: 180px;
}

.center h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.media > .pull-left {
    margin-right: 20px;
}

.media > .pull-right {
    margin-left: 20px;
}

body > section {
    padding: 70px 0;
}

.center {
    text-align: center;
    padding-bottom: 55px;
}

.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
}

.lead {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.transparent-bg {
    background-color: transparent !important;
    margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}


/*************************
*******Header******
**************************/

#header .search {
    display: inline-block;
}

.navbar > .container .navbar-brand {
    margin-left: 0;
}

.top-bar {
    padding: 10px 0;
    background: #191919;
    border-bottom: 1px solid #222;
    line-height: 28px;
}

.top-number {
    color: #fff;
}

    .top-number p {
        margin: 0
    }

.social {
    text-align: right;
}

.social-share {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.social-share li {
    display: inline-block;
}

    ul.social-share li a {
        display: inline-block;
        color: #fff;
        background: #404040;
        width: 25px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        border-radius: 2px;
    }

        ul.social-share li a:hover {
            background: #D91020;
            color: #fff;
        }

.search i {
    color: #fff;
}

input.search-form {
    background: transparent;
    border: 0 none;
    width: 60px;
    padding: 0 10px;
    color: #FFF;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

    input.search-form::-webkit-input-placeholder {
        color: transparent;
    }

    input.search-form:hover::-webkit-input-placeholder {
        color: #fff;
    }

    input.search-form:hover {
        width: 180px;
    }


.navbar-inverse .navbar-toggle {
    border-color: transparent;
}

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: #624F41;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #A48A7D; 
    }


.navbar-brand {
    padding: 0;
    margin: 0; 
}

    .navbar-brand img {
        position: absolute;
        top: 11px;
    }

.navbar {
    border-radius: 0;
    margin-bottom: 0;
    background: #FFF7EC;
    padding: 15px 0;
    padding-bottom: 0;
}

.navbar-nav {
    margin-top: 22px;
}

    .navbar-nav > li {
        margin-left: 1px;
        padding-bottom: 35px;
    }

.navbar-inverse .navbar-nav > li > a {
    padding: 5px 8px;
    margin: 0;
    /* border-radius: 5px;*/
    color: #010101;
    line-height: 20px;
    display: inline-block;
    font-size: 1.1em;
}

    .navbar-inverse .navbar-nav > li > a:hover {
        /*background-color: #D91020;*/
        color: #A48A7D;
    }

.navbar-inverse {
    border: none;
    border-bottom: 2px solid #D91020;
}

    .navbar-inverse .navbar-brand {
        font-size: 36px;
        line-height: 50px;
        color: #fff;
    }

    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus,
    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus {
        background-color: #D91020;
        color: #A48A7D;
    }

    .navbar-inverse .navbar-nav .dropdown-menu {
        background-color: rgba(0,0,0,.85);
        -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.125);
        border: 0;
        padding: 0;
        margin-top: 0;
        border-top: 0;
        border-radius: 0;
        left: 0;
    }

        .navbar-inverse .navbar-nav .dropdown-menu:before {
            position: absolute;
            top: 0;
        }

        .navbar-inverse .navbar-nav .dropdown-menu > li > a {
            padding: 8px 15px;
            color: #A48A7D;
        }

        .navbar-inverse .navbar-nav .dropdown-menu > li:hover > a,
        .navbar-inverse .navbar-nav .dropdown-menu > li:focus > a,
        .navbar-inverse .navbar-nav .dropdown-menu > li.active > a {
            background-color: #D91020;
            color: #fff;
        }

        .navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
            border-radius: 0 0 3px 3px;
        }

        .navbar-inverse .navbar-nav .dropdown-menu > li.divider {
            background-color: transparent;
        }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-top: 0;
        padding-bottom: 0;
    }


/*************************
*******Home Page******
**************************/


#main-slider {
    position: relative;
}

.no-margin {
    margin: 0;
    padding: 0;
}

#main-slider .carousel .carousel-content h1, h2 {
    color: #fff;
}

#main-slider .carousel .carousel-content {
    margin-top: 0px;
    position: absolute;
    top: 300px;
    left: 0;
    z-index: 100;
}

#main-slider .carousel .slide-margin {
    margin-top: -1px;
}

#main-slider .carousel h2 {
    color: #fff;
}



.btn-slideXS {
    padding: 8px 20px;
    background: #624F41;
    text-align: center;
    color: #fff;
    border-radius: 10px 10px 10px 10px;
    margin-top: 25px;
    display: inline-block;
    width: 100%;
}

.btn-slide {
    padding: 8px 20px;
    background-color: #624F41;
    color: #fff !important;
    border-radius: 30px;
    margin-top: 25px;
    display: inline-block;
}

    .btn-slide:hover {
        color: #624F41 !important;
    }

.item-XS {
    border-top: 2px solid #D91020;
}

    .item-XS h1 {
        color: #D91020;
        text-align: center;
    }

#main-slider .carousel .slider-img {
    text-align: right;
    position: absolute;
}


#main-slider .carousel .item {
    background-color: #f2f2f2;
    left: 0 !important;
    opacity: 0;
    top: 0;
    position: absolute;
    width: 100%;
    display: block !important;
    -webkit-transition: opacity ease-in-out 500ms;
    -moz-transition: opacity ease-in-out 500ms;
    -o-transition: opacity ease-in-out 500ms;
    transition: opacity ease-in-out 500ms;
    border-bottom: 3px solid #D91020;
}

    #main-slider .carousel .item:first-child {
        top: auto;
        position: relative;
    }

    #main-slider .carousel .item.active {
        opacity: 1;
        -webkit-transition: opacity ease-in-out 500ms;
        -moz-transition: opacity ease-in-out 500ms;
        -o-transition: opacity ease-in-out 500ms;
        transition: opacity ease-in-out 500ms;
        z-index: 1;
    }



#main-slider .prev,
#main-slider .next {
    position: absolute;
    top: 48%;
    background-color: #D91020;
    color: #fff;
    display: inline-block;
    margin-top: -25px;
    height: 35px;
    width: 40px;
    padding-top: 10px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    z-index: 5;
}

    #main-slider .prev:hover,
    #main-slider .next:hover {
        background-color: #000;
    }

#main-slider .prev {
    left: 10px;
}

#main-slider .next {
    right: 10px;
}

#main-slider .carousel-indicators li {
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin: 0 15px 0 0;
    position: relative;
}

    #main-slider .carousel-indicators li:after {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        border-radius: 100%;
        background: rgba(0, 0, 0, 0);
        border: 1px solid #FFF;
        left: -3px;
        top: -3px;
    }

#main-slider .carousel-indicators .active {
    width: 20px;
    height: 20px;
    background-color: #D91020;
    margin: 0 15px 0 0;
    border: 1px solid #D91020;
    position: relative;
}

    #main-slider .carousel-indicators .active:after {
        position: absolute;
        content: "";
        width: 24px;
        height: 24px;
        border-radius: 100%;
        background: #D91020;
        border: 1px solid #D91020;
        left: -3px;
        top: -3px;
    }

#main-slider .active .animation.animated-item-1 {
    -webkit-animation: fadeInUp 300ms linear 300ms both;
    -moz-animation: fadeInUp 300ms linear 300ms both;
    -o-animation: fadeInUp 300ms linear 300ms both;
    -ms-animation: fadeInUp 300ms linear 300ms both;
    animation: fadeInUp 300ms linear 300ms both;
}

#main-slider .active .animation.animated-item-2 {
    -webkit-animation: fadeInUp 300ms linear 600ms both;
    -moz-animation: fadeInUp 300ms linear 600ms both;
    -o-animation: fadeInUp 300ms linear 600ms both;
    -ms-animation: fadeInUp 300ms linear 600ms both;
    animation: fadeInUp 300ms linear 600ms both;
}

#main-slider .active .animation.animated-item-3 {
    -webkit-animation: fadeInUp 300ms linear 900ms both;
    -moz-animation: fadeInUp 300ms linear 900ms both;
    -o-animation: fadeInUp 300ms linear 900ms both;
    -ms-animation: fadeInUp 300ms linear 900ms both;
    animation: fadeInUp 300ms linear 900ms both;
}

#main-slider .active .animation.animated-item-4 {
    -webkit-animation: fadeInUp 300ms linear 1200ms both;
    -moz-animation: fadeInUp 300ms linear 1200ms both;
    -o-animation: fadeInUp 300ms linear 1200ms both;
    -ms-animation: fadeInUp 300ms linear 1200ms both;
    animation: fadeInUp 300ms linear 1200ms both;
}

#feature {
    background: #ffffff;
    padding-bottom: 40px;
    padding-top: 30px;
}

    #feature h1, h2 {
        color: #BF011A;
    }

.features {
    padding: 0;
}

.feature-wrap {
    margin-bottom: 35px;
    overflow: hidden;
}

    .feature-wrap h2 {
        margin-top: 50px;
        font-size: 48px;
    }

    .feature-wrap .pull-left {
        margin-right: 25px;
    }

    .feature-wrap i {
        font-size: 48px;
        height: 110px;
        width: 110px;
        margin: 30px;
        border-radius: 100%;
        line-height: 110px;
        text-align: center;
        background: #ffffff;
        color: #D91020;
        border: 3px solid #ffffff;
        box-shadow: inset 0 0 0 5px #f2f2f2;
        -webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
        -webkit-transition: 500ms;
        -moz-transition: 500ms;
        -o-transition: 500ms;
        transition: 500ms;
        float: left;
        margin-right: 25px;
    }

        .feature-wrap i:hover {
            background: #D91020;
            color: #fff;
            box-shadow: inset 0 0 0 5px #D91020;
            -webkit-box-shadow: inset 0 0 0 5px #D91020;
            border: 3px solid #D91020;
        }

#recent-works .col-xs-12.col-sm-4.col-md-3 {
    padding: 0;
}

#recent-works {
    padding-bottom: 70px;
}

.recent-work-wrap {
    position: relative;
}

    .recent-work-wrap img {
        width: 100%;
    }

    .recent-work-wrap .recent-work-inner {
        top: 0;
        background: transparent;
        opacity: .8;
        width: 100%;
        border-radius: 0;
        margin-bottom: 0;
    }

        .recent-work-wrap .recent-work-inner h3 {
            margin: 10px 0;
        }

            .recent-work-wrap .recent-work-inner h3 a {
                font-size: 24px;
                color: #fff;
            }

.hovereffect {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
}

    .hovereffect .overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
    }

    .hovereffect img {
        display: block;
        position: relative;
        -webkit-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
    }

    .hovereffect:hover img {
        filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
        filter: grayscale(1) blur(3px);
        -webkit-filter: grayscale(1) blur(3px);
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    .hovereffect h2 {
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        text-align: left;
        padding: 10px;
        background: #D91020;
    }

    .hovereffect p.info {
        display: inline-block;
        text-decoration: none;
        padding: 0px 14px;
        margin: 5px 0 0 0;
        background-color: transparent;
    }

        .hovereffect p.info:hover {
            box-shadow: 0 0 5px #FFF;
        }

    .hovereffect p.info, .hovereffect h2 {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
        opacity: 0;
        filter: alpha(opacity=0);
        color: #fff;
    }

    .hovereffect:hover p.info, .hovereffect:hover h2 {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

/*
.recent-work-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  background: #D91020;
  color: #fff;
  vertical-align: middle;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;  
  padding: 30px;
}

.recent-work-wrap .overlay .preview {
  bottom: 0;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  border-radius: 0;
  background: transparent;
  text-align: center;
  color: #fff;
}

.recent-work-wrap:hover .overlay {
  opacity: 1;
}*/

#services {
    background: #000 url(../images/services/bg_services.png);
    background-size: cover;
}

    #services .lead,
    #services h2 {
        color: #fff;
    }

.services-wrap {
    padding: 40px 30px;
    background: #fff;
    border-radius: 4px;
    margin: 0 0 40px;
}

    .services-wrap h3 {
        font-size: 20px;
        margin: 10px 0;
    }

    .services-wrap .pull-left {
        margin-right: 20px;
    }

#middle {
    background: #f2f2f2;
}

.skill h2 {
    margin-bottom: 25px;
}

.progress-wrap {
    position: relative;
}

.progress .color1,
.progress .color1 .bar-width {
    background: #2d7da4;
}

.progress .color2,
.progress .color2 .bar-width {
    background: #6aa42f;
}

.progress .color3,
.progress .color3 .bar-width {
    background: #ffcc33;
}

.progress .color4,
.progress .color4 .bar-width {
    background: #db3615;
}

.progress,
.progress-bar {
    height: 15px;
    line-height: 15px;
    background: #e6e6e6;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    text-align: right;
}

.progress {
    position: relative;
}

    .progress .bar-width {
        position: absolute;
        width: 40px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        top: -30px;
        border-radius: 2px;
        margin-left: -30px;
    }

    .progress span {
        position: relative;
    }

        .progress span:before {
            content: " ";
            position: absolute;
            width: auto;
            height: auto;
            border-width: 8px 5px;
            border-style: solid;
            bottom: -15px;
            right: 8px;
        }

    .progress .color1 span:before {
        border-color: #2d7da4 transparent transparent transparent;
    }

    .progress .color2 span:before {
        border-color: #6aa42f transparent transparent transparent;
    }

    .progress .color3 span:before {
        border-color: #ffcc33 transparent transparent transparent;
    }

    .progress .color4 span:before {
        border-color: #db3615 transparent transparent transparent;
    }

.accordion h2 {
    margin-bottom: 25px;
}

.panel-default {
    border-color: transparent;
}

    .panel-default > .panel-heading,
    .panel {
        background-color: #e6e6e6;
        border: 0 none;
        box-shadow: none;
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            background: #fff;
            color: #858586;
        }

.panel-body {
    padding: 20px 20px 10px;
}

.panel-group .panel + .panel {
    margin-top: 0;
    border-top: 1px solid #d9d9d9;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-heading {
    border-radius: 0;
}

.panel-title > a {
    color: #624F41;
}

.accordion-inner img {
    border-radius: 4px;
}

.accordion-inner h4 {
    margin-top: 0;
}

.panel-heading.active {
    background: #585551;
}

    .panel-heading.active .panel-title > a {
        color: #fff;
    }

a.accordion-toggle i {
    width: 45px;
    line-height: 44px;
    font-size: 20px;
    margin-top: -10px;
    text-align: center;
    margin-right: -15px;
    background: #c9c9c9;
}

.panel-heading.active a.accordion-toggle i {
    background: #D91020;
    color: #fff;
}

.panel-heading.active a.accordion-toggle.collapsed i {
    background: #D91020;
    color: #fff;
}

.nav-tabs > li {
    margin-bottom: 0px;
    border-bottom: 1px solid #e6e6e6;
}

.nav-tabs {
    border-bottom: transparent;
    border-right: 1px solid #e6e6e6;
}

    .nav-tabs > li > a {
        background: #f5f5f5;
        color: #666;
        border-radius: 0;
        border: 0 none;
        line-height: 24px;
        margin-right: 0;
        padding: 13px 15px;
    }

    .nav-tabs li:last-child {
        border-bottom: 0 none;
    }

.nav-stacked > li + li {
    margin-top: 0;
}

.nav-tabs > li > a:hover {
    background: #585551;
    color: #fff;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: 0;
    color: #fff;
    background: #585551;
    position: relative;
}

    .nav-tabs > li.active > a:after {
        position: absolute;
        content: "";
        width: auto;
        height: auto;
        border-style: solid;
        border-color: transparent transparent transparent #585551;
        border-width: 25px 22px;
        right: -44px;
        top: 0;
    }

.tab-wrap {
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
}

.tab-content {
    padding: 20px;
}

    .tab-content h2 {
        margin-top: 0;
    }

    .tab-content img {
        border-radius: 4px;
    }

.testimonial h2 {
    margin-top: 0;
}

.testimonial-inner {
    color: #858586;
    font-size: 14px;
}

    .testimonial-inner .pull-left {
        border-right: 1px solid #e7e7e7;
        padding-right: 15px;
        position: relative;
    }

        .testimonial-inner .pull-left:after {
            content: "";
            position: absolute;
            width: 9px;
            height: 9px;
            top: 50%;
            margin-top: -5px;
            background: #FFF;
            -webkit-transform: rotate(45deg);
            border: 1px solid #e7e7e7;
            right: -5px;
            border-left: 0 none;
            border-bottom: 0 none;
        }

#partner {
    background: url(../img/partner_bg.png) 50% 50% no-repeat;
    background-size: cover;
}

#partner {
    color: #fff;
    text-align: center;
}

    #partner h2,
    #partner h3 {
        color: #fff;
    }

.partners ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .partners ul li {
        display: inline-block;
        float: left;
        width: 20%;
    }

#conatcat-info {
    background: #fff url(../images/contact.png) no-repeat 90% 0;
    padding: 30px 0;
}

.contact-info i {
    width: 60px;
    height: 60px;
    font-size: 40px;
    line-height: 60px;
    color: #fff;
    background: #000;
    text-align: center;
    border-radius: 10px;
}

.contact-info h2 {
    margin-top: 0;
    color: #000;
}

.contact-info {
    color: #000;
}

/*************************
********* About Us Page CSS ******
**************************/

.about-us {
    margin-top: 110px;
    margin-bottom: -110px;
}

    .about-us h2,
    .skill_text h2 {
        color: #624F41;
        font-size: 30px;
        font-weight: 600;
    }

    .about-us p {
        color: #624F41;
    }

#carousel-slider {
    position: relative;
}

    #carousel-slider .carousel-indicators {
        bottom: -25px;
    }

        #carousel-slider .carousel-indicators li {
            border: 1px solid #BF011A;
        }

    #carousel-slider a i {
        border: 1px solid #777;
        border-radius: 50%;
        font-size: 28px;
        height: 50px;
        padding: 8px;
        position: absolute;
        top: 50%;
        width: 50px;
        color: #777;
    }

        #carousel-slider a i:hover {
            background: #bfbfbf;
            color: #fff;
            border: 1px solid #bfbfbf;
        }

    #carousel-slider
    .carousel-control {
        width: inherit;
    }

        #carousel-slider .carousel-control.left i {
            left: -54px
        }

        #carousel-slider .carousel-control.right i {
            right: -54px;
        }

        #carousel-slider
        .carousel-control.left,
        #carousel-slider
        .carousel-control.right {
            background: none;
        }

.skill_text {
    display: block;
    margin-bottom: 60px;
    margin-top: 25px;
    overflow: hidden;
}

.sinlge-skill {
    background: #f2f2f2;
    border-radius: 100%;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: bold;
    height: 200px;
    position: relative;
    width: 200px;
    text-transform: uppercase;
    overflow: hidden;
    margin: 30px 0;
}

    .sinlge-skill p em {
        color: #FFFFFF;
        font-size: 38px;
    }

    .sinlge-skill p {
        line-height: 1;
    }

.joomla-skill,
.html-skill,
.css-skill,
.wp-skill {
    position: absolute;
    height: 100%;
    bottom: 0;
    width: 100%;
    border-radius: 100%;
    padding: 70px 0;
    text-align: center;
}


.joomla-skill {
    background: rgb(242,242,242); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 28%, rgba(45,125,164,1) 28%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(28%,rgba(242,242,242,1)), color-stop(28%,rgba(45,125,164,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 28%,rgba(45,125,164,1) 28%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#2d7da4',GradientType=0 ); /* IE6-9 */
}

.html-skill {
    background: rgb(242,242,242); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 9%, rgba(106,164,47,1) 9%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(9%,rgba(242,242,242,1)), color-stop(9%,rgba(106,164,47,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 9%,rgba(106,164,47,1) 9%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#6aa42f',GradientType=0 ); /* IE6-9 */
}

.css-skill {
    background: rgb(242,242,242); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 32%, rgba(255,189,32,1) 32%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(32%,rgba(242,242,242,1)), color-stop(32%,rgba(255,189,32,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 32%,rgba(255,189,32,1) 32%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#BF011A',GradientType=0 ); /* IE6-9 */
}

.wp-skill {
    background: rgb(242,242,242); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(242,242,242,1) 0%, rgba(242,242,242,1) 19%, rgba(219,54,21,1) 19%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,242,242,1)), color-stop(19%,rgba(242,242,242,1)), color-stop(19%,rgba(219,54,21,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(242,242,242,1) 0%,rgba(242,242,242,1) 19%,rgba(219,54,21,1) 19%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#db3615',GradientType=0 ); /* IE6-9 */
}

.skill-wrap {
    display: block;
    overflow: hidden;
    margin: 60px 0;
}

.team h4 {
    margin-top: 0;
    text-transform: uppercase;
}

.team h5 {
    font-weight: 300;
}

.single-profile-top,
.single-profile-bottom {
    font-weight: 400;
    line-height: 24px;
}

.single-profile-top,
.single-profile-bottom {
    border: 1px solid #ddd;
    padding: 0px;
    position: relative;
}

.media_image {
    margin-bottom: 10px;
}

.team .btn {
    background: transparent;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 3px;
    padding: 1px 5px;
    text-transform: uppercase;
    border: 1px solid#ddd;
    margin-right: 3px;
}


ul.social_icons,
ul.tag {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: block;
}

    ul.social_icons li,
    ul.tag li {
        display: inline-block;
        margin-right: 5px;
    }

        ul.social_icons li a i {
            border-radius: 50%;
            color: #FFFFFF;
            height: 25px;
            line-height: 25px;
            font-size: 12px;
            padding: 0;
            text-align: center;
            width: 25px;
            opacity: .8;
        }


.team .social_icons .fa-facebook:hover,
.team .social_icons .fa-twitter:hover,
.team .social_icons .fa-google-plus:hover {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transition-duration: 2s;
    transition-property: all;
    transition-timing-function: ease;
    opacity: 1;
    transition: all 0.9s ease 0s;
    -moz-transition: all 0.9s ease 0s;
    -webkit-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
}

.team .social_icons .fa-facebook {
    background: #0182c4;
}

.team .social_icons .fa-twitter {
    background: #20B8FF
}

.team .social_icons .fa-google-plus {
    background: #D34836
}


.team-bar .first-one-arrow {
    float: left;
    margin-right: 30px;
    width: 2%;
}

.team-bar .first-arrow {
    float: left;
    margin-left: 5px;
    margin-right: 35px;
    width: 22%;
}

.team-bar .second-arrow {
    float: left;
    margin-left: 5px;
    width: 21%;
}

.team-bar .third-arrow {
    float: left;
    margin-left: 40px;
    margin-right: 12px;
    width: 22%;
}

.team-bar .fourth-arrow {
    float: left;
    margin-left: 25px;
    width: 20%;
}

.team-bar .first-one-arrow hr {
    border-bottom: 1px solid #2D7DA4;
    border-top: 1px solid #2D7DA4;
}

.team-bar .first-arrow hr {
    border-bottom: 1px solid #2D7DA4;
    border-top: 1px solid #2D7DA4;
}

.team-bar .second-arrow hr {
    border-bottom: 1px solid #6aa42f;
    border-top: 1px solid #6aa42f;
}

.team-bar .third-arrow hr {
    border-bottom: 1px solid #BF011A;
    border-top: 1px solid #BF011A;
}

.team-bar .fourth-arrow hr {
    border-bottom: 1px solid #db3615;
    border-top: 1px solid #db3615;
}

.team-bar {
    margin-bottom: 15px;
    margin-top: 30px;
    position: relative;
}

    .team-bar i {
        border-radius: 50%;
        color: #FFFFFF;
        display: block;
        height: 24px;
        line-height: 24px;
        margin-top: -32px;
        overflow: hidden;
        padding: 0;
        text-align: center;
        width: 24px;
        position: absolute;
    }

    .team-bar .first-arrow .fa-angle-up {
        background: #2D7DA4;
        margin-left: -33px
    }

    .team-bar .second-arrow .fa-angle-down {
        background: #6AA42F;
        margin-left: -33px;
    }

    .team-bar .third-arrow .fa-angle-up {
        background: #BF011A;
        margin-left: -32px;
    }

    .team-bar .fourth-arrow .fa-angle-down {
        background: #db3615;
        margin-left: -32px;
    }

.team .single-profile-top:before,
.team .single-profile-top:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.team .single-profile-top:before {
    left: 26px;
    bottom: -20px;
    border-width: 10px;
    border-color: #fff transparent transparent transparent;
    z-index: 1;
}


.team .single-profile-top:after {
    left: 25px;
    bottom: -22px;
    border-style: solid;
    border-width: 11px;
    border-color: #ddd transparent transparent transparent;
    z-index: 0;
}

.team .single-profile-bottom:before,
.team .single-profile-bottom:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
}

.team .single-profile-bottom:before {
    left: 30px;
    top: -20px;
    border-width: 10px;
    border-color: transparent transparent #fff transparent;
    z-index: 1;
}

.team .single-profile-bottom:after {
    left: 29px;
    top: -22px;
    border-style: solid;
    border-width: 11px;
    border-color: transparent transparent #DDD transparent;
    z-index: 0;
}

/***********************
****Service page css****
***********************/

.services {
    padding: 0;
}

.get-started {
    background: none repeat scroll 0 0 #FFF7EC;
    border-radius: 3px;
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 18px;
    margin-top: 0px;
    border: 1px solid #fff;
}

    .get-started h1, h2 {
        padding-top: 15px;
        margin-bottom: 5px;
        color: #BF011A;
    }

    .get-started i {
        color: #BF011A;
    }

.request {
    bottom: -35px;
    left: 50%;
    position: absolute;
    margin-left: -110px;
}

    .request h4 {
        position: absolute;
        width: 220px;
        position: relative;
    }

        .request h4 a {
            background: #D91020;
            color: #fff;
            font-size: 14px;
            font-weight: normal;
            border-radius: 3px;
            padding: 5px 15px;
        }

        .request h4:after {
            border-color: #D91020 transparent transparent;
            border-style: solid;
            border-width: 12px;
            bottom: -18px;
            content: "";
            height: 0;
            position: absolute;
            right: 13px;
            z-index: -99999;
        }

        .request h4:before {
            border-color: #D91020 transparent transparent;
            border-style: solid;
            border-width: 12px;
            bottom: -18px;
            content: "";
            height: 0;
            left: 13px;
            position: absolute;
            z-index: -99999;
        }

.clients-area {
    padding: 60px;
}

.banderas img {
    line-height: 110px;
    border: 3px solid #ccc;
    box-shadow: inset 0 0 0 5px #f2f2f2;
    transition: all 0.9s ease 0s;
    -moz-transition: all 0.9s ease 0s;
    -webkit-transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
}

    .banderas img:hover {
        background: #D91020;
        color: #fff;
        box-shadow: inset 0 0 0 5px #D91020;
        -webkit-box-shadow: inset 0 0 0 5px #D91020;
        border: 3px solid #D91020;
    }

.clients-comments {
    background-image: url("../images/image_bg.png");
    background-position: center 118px;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

    /*.clients-comments img {
  background:#DDDDDD;
  border: 1px solid #DDDDDD;
  height: 182px;
  padding: 3px;
  width: 182px;
  transition: all 0.9s ease 0s;
  -moz-transition: all 0.9s ease 0s;
  -webkit-transition: all 0.9s ease 0s;
  -o-transition: all 0.9s ease 0s;
  
}*/

    .clients-comments img {
        height: 150px;
        width: 150px;
        border-radius: 100%;
        line-height: 110px;
        border: 3px solid #ccc;
        box-shadow: inset 0 0 0 5px #f2f2f2;
        transition: all 0.9s ease 0s;
        -moz-transition: all 0.9s ease 0s;
        -webkit-transition: all 0.9s ease 0s;
        -o-transition: all 0.9s ease 0s;
    }

        .clients-comments img:hover {
            background: #D91020;
            color: #fff;
            box-shadow: inset 0 0 0 5px #D91020;
            -webkit-box-shadow: inset 0 0 0 5px #D91020;
            border: 3px solid #D91020;
        }

    .clients-comments h3 {
        margin-top: 55px;
        font-weight: 300;
        padding: 0 40px;
    }

    .clients-comments .tituloDiaChico {
        font-size: 25px;
        color: #BF011A;
        font-weight: bold;
    }


    .clients-comments h1 {
        color: #BF011A;
    }

        .clients-comments h1 a {
            color: #624F41;
        }

            .clients-comments h1 a:hover {
                color: #BF011A;
            }


    .clients-comments h4 a {
        color: #624F41;
    }

        .clients-comments h4 a:hover {
            color: #BF011A;
        }



    .clients-comments h4 {
        font-weight: 500;
        margin-top: 15px;
        font-size: 1.2em;
    }


        .clients-comments h4 span {
            font-size: 0.8em;
            color: #BF011A;
        }

    .clients-comments ul {
        font-weight: 500;
        margin-top: 15px;
        font-size: 1.2em;
    }

        .clients-comments ul i {
            font-size: 0.8em;
            color: #BF011A;
        }

.footer {
    background: none repeat scroll 0 0 #2E2E2E;
    border-top: 5px solid #D91020;
    height: 84px;
    margin-top: 110px;
}

.footer_left {
    padding: 10px;
}

.text-left {
    color: #FFFFFF;
    font-size: 12px;
    margin-top: 15px;
}

/*************************
********* Portfolio CSS ******
**************************/

#portfolio_page {
    margin-top: 115px;
    padding-bottom: 0;
}

.portfolio-items,
.portfolio-filter {
    list-style: none outside none;
    margin: 0 0 40px 0;
    padding: 0;
}

    .portfolio-filter > li {
        display: inline-block;
    }

        .portfolio-filter > li a {
            background: none repeat scroll 0 0 #FFFFFF;
            font-size: 14px;
            font-weight: 400;
            margin-right: 20px;
            text-transform: uppercase;
            transition: all 0.9s ease 0s;
            -moz-transition: all 0.9s ease 0s;
            -webkit-transition: all 0.9s ease 0s;
            -o-transition: all 0.9s ease 0s;
            border: 1px solid #F2F2F2;
            outline: none;
            border-radius: 3px;
        }

            .portfolio-filter > li a:hover,
            .portfolio-filter > li a.active {
                color: #fff;
                background: #D91020;
                border: 1px solid #D91020;
                box-shadow: none;
                -webkit-box-shadow: none;
            }

    .portfolio-items > li {
        float: left;
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.portfolio-item {
    margin: 0;
    padding: 0;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.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;
}

.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;
}

    .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 ****/
        .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*/
    .isotope.infinite-scrolling {
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
        transition: none;
    }


/**************************
********* Pricing Table CSS *
**************************/

.pricing_heading {
    margin-top: 120px
}

    .pricing_heading h2,
    .pricing_heading p {
        color: #624F41;
    }

.pricing-area h1 {
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 15px;
}

.pricing-area span {
    font-weight: 700;
    font-size: 18px;
}

.pricing-area h3,
.pricing-area span {
    color: #fff;
}

.plan {
    position: relative;
    margin-bottom: 70px;
}

.pricing-area ul {
    background: #FAFAFA;
    padding: 0;
    margin: 0;
}

    .pricing-area ul li {
        list-style: none;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 400;
    }

        .pricing-area ul li:nth-child(even) {
            background: #f5f5f5
        }

.pricing-area .price-three img,
.pricing-area .price-six img {
    position: absolute;
    right: 15px;
    top: 0;
}

.pricing-area .heading-one,
.pricing-area .heading-two,
.pricing-area .heading-three {
    padding: 17px 0;
    border-radius: 2px 2px 0 0;
}

.pricing-area .heading-one,
.pricing-area .heading-two,
.pricing-area .heading-three,
.pricing-area .heading-four,
.pricing-area .heading-five,
.pricing-area .heading-six,
.pricing-area .heading-seven {
    margin-left: -10px
}


.pricing-area .heading-one,
.pricing-area .price-one .plan-action .btn-primary {
    background: #e24f43
}

.pricing-area .heading-two,
.pricing-area .price-two .plan-action .btn-primary {
    background: #27AE60;
}

.pricing-area .heading-three,
.pricing-area .price-three .plan-action .btn-primary {
    background: #f39c12;
}

.pricing-area .heading-four,
.pricing-area .price-four .plan-action .btn-primary {
    background: #5c5c5c
}

.pricing-area .heading-five,
.pricing-area .price-five .plan-action .btn-primary {
    background: #5c5c5c
}

.pricing-area .heading-six,
.pricing-area .price-six .plan-action .btn-primary {
    background: #e24f43;
}

.pricing-area .heading-seven,
.pricing-area .price-seven .plan-action .btn-primary {
    background: #5c5c5c
}

.pricing-area .bg {
    background: #fafafa
}

.pricing-area .heading-one h3:before {
    border-color: #bf4539 transparent transparent;
}

.pricing-area .heading-two h3:before {
    border-color: #1f8c4d transparent transparent;
}

.pricing-area .heading-three h3:before {
    border-color: #d4880f transparent transparent;
}

.pricing-area .heading-four h3:before {
    border-color: #424242 transparent transparent;
}

.pricing-area .heading-five h3:before {
    border-color: #424242 transparent transparent;
}

.pricing-area .heading-six h3:before {
    border-color: #bf4539 transparent transparent;
}

.pricing-area .heading-seven h3:before {
    border-color: #424242 transparent transparent;
}

.pricing-area h3:before {
    border-color: #D4880F transparent transparent;
    border-radius: 5px 0 0 0px;
    border-style: solid;
    border-width: 12px;
    content: "";
    height: 0;
    left: 4px;
    position: absolute;
    top: 78px;
    width: 0;
    z-index: -999;
}

.small-pricing h3:after {
    height: 94px;
}

.small-pricing h3:before {
    top: 74px;
}

.plan-action {
    height: 40px;
}

.pricing-area .plan-action .btn-primary {
    position: relative;
    padding: 5px 20px;
    color: #fff;
    margin-top: 5px;
}

    .pricing-area .plan-action .btn-primary:before {
        border-color: #E24F43 transparent transparent;
        border-radius: 5px 0 0 0;
        border-style: solid;
        border-width: 12px;
        bottom: -12px;
        content: "";
        height: 0;
        left: -9px;
        position: absolute;
        width: 0;
        z-index: -1;
    }

    .pricing-area .plan-action .btn-primary:after {
        border-color: #E24F43 transparent transparent;
        border-radius: 5px 0 0 0;
        border-style: solid;
        border-width: 12px;
        bottom: -12px;
        content: "";
        height: 0;
        position: absolute;
        right: -9px;
        width: 0;
        z-index: -1;
    }

.pricing-area .price-two .plan-action .btn-primary:before,
.pricing-area .price-two .plan-action .btn-primary:after {
    border-color: #1f8c4d transparent transparent;
}

.pricing-area .price-three .plan-action .btn-primary:before,
.pricing-area .price-three .plan-action .btn-primary:after {
    border-color: #d4880f transparent transparent;
}

.pricing-area .price-four .plan-action .btn-primary:before,
.pricing-area .price-four .plan-action .btn-primary:after,
.pricing-area .price-five .plan-action .btn-primary:before,
.pricing-area .price-five .plan-action .btn-primary:after,
.pricing-area .price-seven .plan-action .btn-primary:before,
.pricing-area .price-seven .plan-action .btn-primary:after {
    border-color: #424242 transparent transparent;
    right: -9px;
}

.pricing-area .price-six .plan-action .btn-primary:before,
.pricing-area .price-six .plan-action .btn-primary:after {
    border-color: #bf4539 transparent transparent;
    right: -9px;
}


/*************************
********* Contact Us CSS ******
**************************/

.gmap-area {
    background-image: url("../img/map.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

    .gmap-area .gmap iframe {
        border-radius: 50%;
        height: 280px;
        width: 300px;
    }

.gmap {
    border: 10px solid #f6f5f0;
    border-radius: 50%;
    height: 300px;
    width: 300px;
    box-shadow: 0px 0px 3px 3px #e7e4dc;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.gmap-area .map-content ul {
    list-style: none;
}

.gmap-area .map-content address h5 {
    font-weight: 700;
    /* font-size: 16px; */
}

#contact-page {
    padding-top: 0;
}

    #contact-page .contact-form
    .form-group label {
        color: #624F41;
        font-size: 16px;
        font-weight: 300;
    }

.form-group .form-control {
    padding: 7px 12px;
    border-color: #f2f2f2;
    box-shadow: none;
}

textarea#message {
    resize: none;
    padding: 10px;
}

#contact-page .contact-wrap {
    margin-top: 20px;
}

/*********************
****blog page css*****
**********************/

.widget {
    margin-bottom: 60px;
    padding-left: 0;
}

.single_comments {
    margin-bottom: 20px;
}

    .single_comments img {
        float: left;
        margin-right: 10px;
        margin-top: 5px;
    }

    .single_comments p {
        margin-bottom: 0;
    }

.widget .entry-meta span {
    display: inline-block;
    margin-right: 10px;
}

.widget h3 {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog_category {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .blog_category li {
        float: none;
        margin-bottom: 20px;
    }

        .blog_category li a {
            background: #f5f5f5;
            border-radius: 4px;
            color: #888;
            display: inline-block;
            padding: 5px 15px;
        }

            .blog_category li a:hover {
                background: #D91020;
                color: #fff;
            }

.badge:before {
    border-color: transparent transparent transparent #D91020;
    border-style: solid;
    border-width: 10px;
    bottom: -8px;
    content: "";
    height: 0;
    left: 5px;
    position: absolute;
    z-index: -99999;
}

.badge {
    background-color: #D91020;
    border-radius: 5px;
    color: #fff;
    padding: 8px;
    position: relative;
    left: 60px;
    top: -18px;
    font-weight: normal;
}

.blog_archieve {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

    .blog_archieve li {
        padding: 10px 0;
        border-bottom: 1px solid #f5f5f5;
    }

        .blog_archieve li:first-child {
            padding-top: 0;
        }

ul.gallery {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.gallery li {
        display: block;
        width: 60px;
        padding: 0;
        margin: 0 4px 4px 0;
        float: left;
    }

ul.faq {
    list-style: none;
    margin: 0;
}

    ul.faq li {
        margin-top: 30px;
    }

        ul.faq li:first-child {
            margin-top: 0;
        }

        ul.faq li span.number {
            display: block;
            float: left;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            background: #34495e;
            color: #fff;
            font-size: 24px;
        }

        ul.faq li > div {
            margin-left: 70px;
        }

            ul.faq li > div h3 {
                margin-top: 0;
            }


.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .embed-container iframe,
    .embed-container object,
    .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.blog-item {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 50px;
}

.blog .blog-item .img-blog {
    border-radius: 5px;
    margin-bottom: 45px;
}

.blog .blog-item .blog-content {
    padding-bottom: 25px;
}

    .blog .blog-item .blog-content h2 {
        margin-top: 0;
        font-size: 30px;
    }

.readmore {
    margin-top: 0;
}

.blog .blog-item .blog-content h3 {
    color: #858586;
    margin-bottom: 40px;
    /* font-weight: 300 */
}

.blog .blog-item .blog-content h4 {
    font-size: 14px;
}

.post-tags {
}

.blog .blog-item .entry-meta {
    border-radius: 5px;
    overflow: hidden;
}

    .blog .blog-item .entry-meta > span {
        background: #f5f5f5;
        border-top: 1px solid #fff;
        display: block;
        font-size: 12px;
        overflow: hidden;
        padding: 5px;
        text-align: left;
    }

#publish_date {
    background: #D91020;
    border-bottom: 5px solid #624F41;
    color: #fff;
    padding: 5px 0;
    text-align: center;
}

.blog .blog-item .entry-meta > span {
    color: #ccc;
}

    .blog .blog-item .entry-meta > span a {
        font-size: 12px;
        margin-left: 3px;
        font-weight: 300;
        color: #888;
    }

ul.pagination > li > a {
    border: 1px solid #F1F1F1;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 16px;
    padding: 5px 14px;
}

    ul.pagination > li > a i {
        margin-left: 5px;
        margin-right: 5px;
    }

ul.pagination > li.active > a,
ul.pagination > li:hover > a {
    background-color: #D91020 !important;
    border-color: #D91020 !important;
    color: #fff;
}

.search_box {
    background-image: url("../images/search_icon.png");
    background-position: 314px 15px;
    background-repeat: no-repeat;
    border-color: #DEDEDE;
    height: 48px;
    outline: medium none;
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
    outline: 0 none;
}


ul.tag-cloud,
ul.sidebar-gallery {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tag-cloud li {
    display: inline-block;
    margin-bottom: 3px;
}

    .tag-cloud li a {
        background: #f5f5f5;
        color: #888;
        border: 0;
        border-radius: 4px;
        padding: 8px 15px;
    }

        .tag-cloud li a:hover {
            background: #D91020;
            color: #fff;
        }

.sidebar-gallery li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

    .sidebar-gallery li a {
        border-radius: 4px;
        display: inline-block;
    }


/**********************
**blog single page css*
**********************/

.reply_section {
    background: #f5f5f5;
    border-radius: 5px;
}

.post_reply {
    margin-left: 10px;
    margin-top: 45px;
}

    .post_reply img {
        width: 85px;
        height: 85px;
        border: 5px solid #D5D8DD;
    }

    .post_reply ul {
        list-style: none outside none;
        margin: 0;
        padding: 0;
        margin-top: 5px;
    }

        .post_reply ul li {
            float: left;
        }

            .post_reply ul li a {
                display: block;
            }

                .post_reply ul li a i {
                    border: 1px solid #DDDDDD;
                    border-radius: 39px;
                    color: #FFFFFF;
                    font-size: 20px;
                    height: 30px;
                    margin-right: 3px;
                    padding-top: 7px;
                    text-align: center;
                    width: 30px;
                }

                    .post_reply ul li a i.fa-facebook {
                        background: #0182C4;
                    }

                    .post_reply ul li a i.fa-twitter {
                        background: none repeat scroll 0 0 #3FC1FE;
                    }

                    .post_reply ul li a i.fa-google-plus {
                        background: none repeat scroll 0 0 #D34836;
                    }

                    .post_reply ul li a i:hover {
                        opacity: .5;
                    }

.post_reply_content {
    margin: 30px;
}

    .post_reply_content h1 a:hover {
        color: #FFC800;
    }

    .post_reply_content h4 {
        margin-bottom: 50px;
    }

.reply_section .media-body {
    display: inherit;
}

.comment_section .media-body {
    display: inherit;
}

#comments_title {
    color: #624F41;
    font-weight: 700px;
    font-size: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.comment_section {
    margin-top: 30px;
    position: relative;
}

.post_comments img {
    width: 85px;
    height: 85px;
    margin-top: 35px;
}

.post_reply_comments {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 30px;
}

    .post_reply_comments:before {
        border-color: transparent #F0F0F0 transparent transparent;
        border-style: solid;
        border-width: 15px;
        content: " ";
        height: 0;
        left: 75px;
        position: absolute;
        top: 20px;
    }

    .post_reply_comments h3,
    .post_reply_content h3 {
        margin-top: 0;
    }

    .post_reply_comments h1 a:hover {
        color: #D91020;
    }

    .post_reply_comments h4 {
        color: #c4c4c5;
        font-weight: 400;
    }

    .post_reply_comments p {
        padding-bottom: 30px;
    }

    .post_reply_comments a {
        bottom: 15px;
        position: absolute;
        right: 30px;
        background: #D91020;
        color: #fff;
        border-radius: 5px;
        padding: 8px 20px;
    }

        .post_reply_comments a:before {
            border-color: #D91020 transparent transparent;
            border-style: solid;
            border-width: 16px;
            bottom: -11px;
            content: "";
            height: 0;
            left: -12px;
            position: absolute;
            z-index: 99999;
        }

    .post_reply_comments h2 a {
    }

.message_heading {
    margin-bottom: 50px;
    margin-top: 60px;
}


/******************
 404 page css
 ******************/

#error .btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success:hover {
    background-color: #EBEBEB;
    border-color: #EBEBEB;
    color: #624F41;
}

#error h1 {
    color: #624F41;
    text-transform: uppercase;
}


/******************
shortcodes page css
******************/

.shortcode-item {
    padding-bottom: 0;
}

    .shortcode-item h2 {
        color: #624F41;
        font-size: 24px;
        margin-bottom: 22px;
        margin-top: 0;
        font-weight: 600
    }



/***********************
********* Footer ******
************************/
#bottom {
    background: #333D47;
    border-bottom: 5px solid #D91020;
    font-size: 14px;
}

    #bottom h3 {
        margin-top: 0;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-size: 22px;
        color: #fff;
    }

    #bottom ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #bottom ul li {
            display: block;
            padding: 5px 0;
        }

            #bottom ul li a {
                color: #fff;
            }

                #bottom ul li a:hover {
                    color: #D91020;
                }

    #bottom .widget {
        margin-bottom: 0;
    }

.push {
    height: 120px; /* misma altura que el footer */
}

#footer {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #624F41;
    background: #FFF7EC;
    border-top: 5px solid #D91020;
    width: 100%;
    min-height: 120px;
}

    #footer a {
        color: #624F41;
    }

        #footer a:hover {
            color: #A48A7B;
        }

    #footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #footer ul > li {
            display: inline-block;
            margin-left: 15px;
        }

#FORM_1 {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    display: inline-block;
    height: 57px;
    text-align: center;
    text-rendering: optimizelegibility;
    width: 560px;
    perspective-origin: 280px 28.5px;
    transform-origin: 280px 28.5px;
    background: rgba(0, 0, 0, 0.498039) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    border-radius: 6.40000009536743px 6.40000009536743px 6.40000009536743px 6.40000009536743px;
    font: normal normal 300 normal 16px/22.8571186065674px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0px;
    outline: rgb(255, 255, 255) none 0px;
    padding: 8px;
}
/*#FORM_1*/

#DIV_2 {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    text-align: center;
    text-rendering: optimizelegibility;
    width: 544px;
    perspective-origin: 272px 0px;
    transform-origin: 272px 0px;
    border: 0px none rgb(255, 255, 255);
    font: normal normal 300 normal 16px/22.8571186065674px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
}
/*#DIV_2*/

#DIV_3 {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    float: left;
    height: 41px;
    min-width: 240px;
    text-align: center;
    text-rendering: optimizelegibility;
    width: 240px;
    perspective-origin: 120px 20.5px;
    transform-origin: 120px 20.5px;
    border: 0px none rgb(255, 255, 255);
    font: normal normal 300 normal 16px/22.8571186065674px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 0px 8px 0px 0px;
}
/*#DIV_3*/

#LABEL_4 {
    box-sizing: border-box;
    clip: rect(0px 0px 0px 0px);
    color: rgb(255, 255, 255);
    display: block;
    height: 1px;
    position: absolute;
    text-align: center;
    text-rendering: optimizelegibility;
    width: 1px;
    align-self: stretch;
    perspective-origin: 0.5px 0.5px;
    transform-origin: 0.5px 0.5px;
    border: 0px none rgb(255, 255, 255);
    font: normal normal bold normal 16px/22.8571186065674px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: -1px;
    outline: rgb(255, 255, 255) none 0px;
    overflow: hidden;
}
/*#LABEL_4*/

#INPUT_5 {
    color: rgb(88, 85, 81);
    height: 41.984375px;
    text-align: left;
    vertical-align: middle;
    width: 232px;
    perspective-origin: 116px 20.984375px;
    transform-origin: 116px 20.984375px;
    border: 1px solid rgb(216, 223, 230);
    border-radius: 4.80000019073486px 4.80000019073486px 4.80000019073486px 4.80000019073486px;
    font: normal normal 500 normal 16px/24px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    outline: rgb(88, 85, 81) none 0px;
    padding: 9.60000038146973px 12px 6.40000009536743px;
}
/*#INPUT_5*/

#DIV_6, #DIV_9 {
    box-sizing: border-box;
    clear: both;
    color: rgb(255, 255, 255);
    display: none;
    opacity: 0;
    text-align: center;
    text-rendering: optimizelegibility;
    width: auto;
    z-index: 0;
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    border: 0px none rgb(255, 255, 255);
    font: normal normal 300 normal 16px/22.8571186065674px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    transition: height 0.5s ease 0s, opacity 0.5s ease 0s;
}
/*#DIV_6, #DIV_9*/

#P_7 {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    height: auto;
    letter-spacing: -0.159999996423721px;
    position: absolute;
    text-align: left;
    text-rendering: optimizelegibility;
    width: auto;
    align-self: stretch;
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: rgb(234, 11, 140) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    flex: 1 1 0%;
    font: normal normal 300 normal 16px/24px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 16px 0px 0px;
    outline: rgb(255, 255, 255) none 0px;
    padding: 6px 12px;
}
    /*#P_7*/

    #P_7:before {
        bottom: 100%;
        box-sizing: border-box;
        color: rgb(255, 255, 255);
        display: block;
        left: 10px;
        letter-spacing: -0.159999996423721px;
        pointer-events: none;
        position: absolute;
        text-align: left;
        text-rendering: optimizelegibility;
        align-self: stretch;
        perspective-origin: 50% 50%;
        transform-origin: 50% 50%;
        content: ' ';
        border-top: 8px solid rgba(0, 0, 0, 0);
        border-right: 8px solid rgba(0, 0, 0, 0);
        border-bottom: 8px solid rgb(234, 11, 140);
        border-left: 8px solid rgba(0, 0, 0, 0);
        font: normal normal 300 normal 16px/24px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        outline: rgb(255, 255, 255) none 0px;
    }
/*#P_7:before*/

#BUTTON_8 {
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    float: left;
    height: 39.984375px;
    letter-spacing: 1.27999997138977px;
    min-height: 0px;
    min-width: 304px;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    width: 304px;
    perspective-origin: 152px 19.984375px;
    transform-origin: 152px 19.984375px;
    background: rgb(234, 11, 140) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 1px solid rgb(234, 11, 140);
    border-radius: 4.80000019073486px 4.80000019073486px 4.80000019073486px 4.80000019073486px;
    font: normal normal 500 normal 16px/22.8571186065674px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    outline: rgb(255, 255, 255) none 0px;
    padding: 9.60000038146973px 16px 6.40000009536743px;
    transition: background-color 0.2s ease 0s;
}
/*#BUTTON_8*/

#P_10 {
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    height: auto;
    letter-spacing: -0.159999996423721px;
    text-align: left;
    text-rendering: optimizelegibility;
    width: auto;
    perspective-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: rgb(234, 11, 140) none repeat scroll 0% 0% / auto padding-box border-box;
    border: 0px none rgb(255, 255, 255);
    flex: 1 1 0%;
    font: normal normal 300 normal 16px/24px 'Gotham SSm A', 'Gotham SSm B', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 16px 0px 0px;
    outline: rgb(255, 255, 255) none 0px;
    padding: 6px 12px;
}
/*#P_10*/

.colorRojo {
    color: #D91020;
}

.listaRoja {
    list-style: none;
}


    .listaRoja li::before {
        content: "\2022";
        color: #D91020;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

.recuadroRojo {
    border: 1px solid #D91020;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .recuadroRojo .titulo {
        font-size: 15px;
        color: #624F41;
    }

    .recuadroRojo p {
        font-size: 11px;
    }

.imgConSombra {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
    transition: all 0.3s ease;
    border: 1px solid #D91020;
}
