@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,700,700i');

/*************************
01.2 Default css
*************************/
body {
    font-family: 'Open Sans', sans-serif;
    color: #777;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 26px;
}
img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
a {
    font-family: 'Roboto', sans-serif;
}
a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:focus {
    text-decoration: none;
    outline: none;
}
a:focus,
a:hover {
    text-decoration: none;
}
::-webkit-input-placeholder { /* Chrome */
    color: #bababa;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #bababa;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #bababa;
    opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
    color: #bababa;
    opacity: 1;
}
a, button, input {
    outline: medium none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    margin-top: 0px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #454545;
    font-family: inherit;
}
ul {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none;
}
p {
    margin-bottom: 10px;
}
.fix {
    overflow: hidden;
}
.pos-absolute {
    position: absolute;
}
.pos-relative {
    position: relative;
}
.pos-relative {
    position: static;
}
.display-table {
    display: table;
    height: 100%;
    width: 100%;
}
.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.bg-grey {
    background-color: #f7f7f7;
}
button {
    border: 0px;
}
.button {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 48px;
    padding: 0 25px;
    text-transform: uppercase;
    transition: all 0.3s ease-out 0s;
}
.color-btn,
.dark-btn:hover {
    color: #ffffff;
}
.dark-btn,
.color-btn:hover {
    background-color: #454545;
    color: #fff;
}
.section-title h2 {
    color: #333;
    text-transform: capitalize;
}
.filosofia {
    background: #272727;
}
.filosofia h2 {
    color: #fff;
}
.section-title.color-light h2,
.section-title-2.color-light h2,
.section-title-3.color-light h2 {
    color: #fff;
}
.section-title,
.section-title-2,
.section-title-3 {
    margin-bottom: 50px;
}
.section-title-2 h2,
.section-title-3 h2 {
    color: #333;
    display: inline-block;
    letter-spacing: 1px;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
}
.section-title-2 h2::before,
.section-title-2 h2::after,
.section-title-3 h2::before,
.section-title-3 h2::after {
    background-color: #777;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    width: 70%;
}
.section-title-2.text-center h2::before,
.section-title-2.text-center h2::after,
.section-title-3.text-center h2::before,
.section-title-3.text-center h2::after {
    margin: auto;
}
.section-title-2 h2::after {
    width: 35%;
}
.section-title-3 h2::before,
.section-title-3 h2::after {
    height: 1px;
}
.section-title-3 h2::before {
    width: 50%;
}
.section-title-3 h2::after {
    bottom: -5px;
    width: 25%;
}
.big-text {
    font-size: 16px;
}
.w-25 {
    width: 25%;
}
.w-33 {
    width: 33.33%;
}
.w-50 {
    width: 50%;
}
.w-100 {
    width: 100%;
}
.overlay {
    position: relative;
    z-index: 1;
}
.overlay:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0,0,0,0.7);
    z-index: -1;
}
blockquote {
    border-radius: 5px;
    background-color: #f5f5f5;
    font-size: 16px;
}

/*************************
02. Basic margin padding
*************************/
.m-auto {
    margin: auto;
}
.m-0 {
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}
.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}
/*************************
02.1 Margin top
*************************/
.mt-0 { margin-top: 0 }
.mt-5 { margin-top: 5px }
.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-25 { margin-top: 25px }
.mt-30 { margin-top: 30px }
.mt-35 { margin-top: 35px }
.mt-40 { margin-top: 40px }
.mt-50 { margin-top: 50px }
.mt-60 { margin-top: 60px }
.mt-70 { margin-top: 70px }
.mt-80 { margin-top: 80px }
.mt-90 { margin-top: 90px }
.mt-100 { margin-top: 100px }
/*************************
02.2 Margin right
*************************/
.mr-0 { margin-right: 0px }
.mr-5 { margin-right: 5px }
.mr-10 { margin-right: 10px }
.mr-15 { margin-right: 15px }
.mr-20 { margin-right: 20px }
.mr-25 { margin-right: 25px }
.mr-30 { margin-right: 30px }
.mr-35 { margin-right: 35px }
.mr-40 { margin-right: 40px }
.mr-50 { margin-right: 50px }
.mr-60 { margin-right: 60px }
.mr-70 { margin-right: 70px }
.mr-80 { margin-right: 80px }
.mr-90 { margin-right: 90px }
.mr-100 { margin-right: 100px }
/*************************
02.3 Margin bottom
*************************/
.mb-0 { margin-bottom: 0 }
.mb-5 { margin-bottom: 5px }
.mb-10 { margin-bottom: 10px }
.mb-15 { margin-bottom: 15px }
.mb-20 { margin-bottom: 20px }
.mb-25 { margin-bottom: 25px }
.mb-30 { margin-bottom: 30px }
.mb-35 { margin-bottom: 35px }
.mb-40 { margin-bottom: 40px }
.mb-50 { margin-bottom: 50px }
.mb-60 { margin-bottom: 60px }
.mb-70 { margin-bottom: 70px }
.mb-80 { margin-bottom: 80px }
.mb-90 { margin-bottom: 90px }
.mb-100 { margin-bottom: 100px }
/*************************
02.4 Margin left
*************************/
.ml-0 { margin-left: 0 }
.ml-5 { margin-left: 5px }
.ml-10 { margin-left: 10px }
.ml-15 { margin-left: 15px }
.ml-20 { margin-left: 20px }
.ml-25 { margin-left: 25px }
.ml-30 { margin-left: 30px }
.ml-35 { margin-left: 35px }
.ml-40 { margin-left: 40px }
.ml-50 { margin-left: 50px }
.ml-60 { margin-left: 60px }
.ml-70 { margin-left: 70px }
.ml-80 { margin-left: 80px }
.ml-90 { margin-left: 90px }
.ml-100 { margin-left: 100px }
/*************************
02.5 Padding top
*************************/
.pt-0 { padding-top: 0 }
.pt-10 { padding-top: 10px }
.pt-15 { padding-top: 15px }
.pt-20 { padding-top: 20px }
.pt-25 { padding-top: 25px }
.pt-30 { padding-top: 30px }
.pt-40 { padding-top: 40px }
.pt-50 { padding-top: 50px }
.pt-60 { padding-top: 60px }
.pt-70 { padding-top: 70px }
.pt-80 { padding-top: 80px }
.pt-90 { padding-top: 90px }
.pt-100 { padding-top: 100px }
/*************************
02.6 Padding right
*************************/
.pr-0 { padding-right: 0 }
.pr-10 { padding-right: 10px }
.pr-15 { padding-right: 15px }
.pr-20 { padding-right: 20px }
.pr-25 { padding-right: 25px }
.pr-30 { padding-right: 30px }
.pr-40 { padding-right: 40px }
.pr-50 { padding-right: 50px }
.pr-60 { padding-right: 60px }
.pr-70 { padding-right: 70px }
.pr-80 { padding-right: 80px }
.pr-90 { padding-right: 90px }
.pr-100 { padding-right: 100px }
/*************************
02.7 Padding bottom
*************************/
.pb-0 { padding-bottom: 0 }
.pb-10 { padding-bottom: 10px }
.pb-15 { padding-bottom: 15px }
.pb-20 { padding-bottom: 20px }
.pb-25 { padding-bottom: 25px }
.pb-30 { padding-bottom: 30px }
.pb-40 { padding-bottom: 40px }
.pb-50 { padding-bottom: 50px }
.pb-60 { padding-bottom: 60px }
.pb-70 { padding-bottom: 70px }
.pb-80 { padding-bottom: 80px }
.pb-90 { padding-bottom: 90px }
.pb-100 { padding-bottom: 100px }
/*************************
02.8 Padding left
*************************/
.pl-0 { padding-left: 0 }
.pl-10 { padding-left: 10px }
.pl-15 { padding-left: 15px }
.pl-20 { padding-left: 20px }
.pl-25 { padding-left: 25px }
.pl-30 { padding-left: 30px }
.pl-40 { padding-left: 40px }
.pl-50 { padding-left: 50px }
.pl-60 { padding-left: 60px }
.pl-70 { padding-left: 70px }
.pl-80 { padding-left: 80px }
.pl-90 { padding-left: 90px }
.pl-100 { padding-left: 100px }

/***************************
03. Page section margin padding
****************************/

/***************************
03.1 Page section padding
****************************/

.ptb-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.ptb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.ptb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.ptb-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}
.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.ptb-35 {
    padding-top: 35px;
    padding-bottom: 35px;
}
.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/***************************
03.2 Page section margin
****************************/

.mtb-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.mtb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.mtb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mtb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.mtb-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}
.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.mtb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.mtb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}
.mtb-70 {
    margin-top: 70px;
    margin-bottom: 70px;
}
.mtb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}
.mtb-90 {
    margin-top: 90px;
    margin-bottom: 90px;
}
.mtb-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

/*************************
04. Back to top
*************************/
#scrollUp {
    border-radius: 5px;
    position: fixed;
    bottom: 60px;
    color: #fff;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    right: 15px;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 40px;
    z-index: 9999 !important;
}
#scrollUp:hover {
    height: 50px;
}

/*************************
01. header area
*************************/
.header-area {
    position: fixed;
    background-color: #fff;
    top: 0;
    width: 100%;
    z-index: 999;
}
nav.collapse {
    padding: 0;
}
.logo a {
    display: block;
    padding: 20px 0 0 0;
}

/*************************
1.1 header top
*************************/

.header-top-area {
    border-bottom: 1px solid #f1f3f5;
}
.welcome-box {
    text-align: right;
}
.single-box {
    color: #222;
    display: inline-block;
    font-size: 16px;
    margin-left: 30px;
    padding: 19px 0;
    text-align: center;
}
.single-box i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}
.single-box:hover {
    color: #222;
}

/*************************
1.2 transparent header
*************************/

.header-area.transparent-header {
    background-color: rgba(0, 0, 0, 0.1);
}
.header-area.transparent-header.stick {
    background-color: rgba(0, 0, 0, 0.9);
}
.header-area.transparent-header .mainmenu ul li a {
    color: #fff;
}
.header-area.transparent-header .mainmenu ul li.has-child .sub-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: rgba(0, 0, 0, 0.2);
}
.header-area.transparent-header .mainmenu ul li.has-child .sub-menu li a,
.header-area.transparent-header .mainmenu ul li.has-child .sub-menu li.has-child ul.sub-menu li a {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}
.header-area.transparent-header .mainmenu ul li.has-child .sub-menu li:hover > a {
    background-color: rgba(255, 255, 255, 0.08);
}

/*************************
02. sticky header
*************************/

#sticker.stick {
    z-index: 999;
}
.header-area.stick {
    box-shadow: 0 0px 10px -6px #000;
    height: 70px;
    top: 0;
}
.stick .logo a {
    padding: 15px 0px;
}
.stick .logo a img {
  max-width: 80%;
}
.stick .mainmenu ul li a {
    padding-bottom: 22px;
    padding-top: 22px;
}
.stick .mainmenu nav > ul > li > a::before {
    bottom: 24px;
}
.header-area.style-2 {
    margin-top: 0px;
    transition: 0.3s;
}
.header-area.style-2.stick {
    height: auto;
    margin-top: -91px;
}
.header-area.style-2.stick .mainmenu ul li a {
    padding: 32px 15px;
}

/*************************
03. mainmenu
*************************/

.mainmenu ul li {
    display: inline-block;
    position: relative;
    text-align: left;
}
.mainmenu ul li a {
    color: #3e3e3e;
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 32px 15px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}
.mainmenu ul li a:hover,
.mainmenu ul li a:focus {
    background-color: transparent;
}
.mainmenu nav > ul > li > a::before {
    background-color: #ccc;
    bottom: 30px;
    content: "";
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: all 0.3s ease 0s;
    width: 0;
}
.mainmenu nav > ul > li:hover > a::before,
.mainmenu nav > ul > li.active > a.active::before,
.header-area.transparent-header .mainmenu ul li.active a:before {
    width: 80%;
}
.mainmenu ul li.has-child > a:after {
    content: "\f0d7";
    font-family: fontawesome;
    color: #ccc;
    padding-left: 5px;
    transition: all 0.3s ease-out 0s;
}
.mainmenu ul li.has-child .sub-menu {
    background-color: #fff;
    border: 1px solid #eee;
    position: absolute;
    right: 0;
    width: 220px;
    z-index: 99;
    transform: scaleY(0);
    transform-origin: 0 0 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
}
.header-area.style-2 .mainmenu ul li.has-child .sub-menu {
    right: auto;
    left: 0;
}
.header-area.style-2 .mainmenu ul li.has-child .sub-menu li.has-child .sub-menu {
    right: -100%;
    left: auto;
}
.mainmenu ul li.has-child:hover .sub-menu {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.mainmenu ul li.has-child .sub-menu li {
    display: block;
}
.mainmenu ul li.has-child .sub-menu li a,
.header-area.style-2.stick .mainmenu ul li .sub-menu li a {
    border-bottom: 1px solid #eee;
    padding: 5px 10px;
    text-transform: capitalize;
}
.mainmenu ul li.has-child .sub-menu li:last-child a,
.mainmenu ul li.has-child .sub-menu li.has-child ul.sub-menu li:last-child a {
    border-bottom: 0 none;
}
.mainmenu ul li.has-child .sub-menu li:hover > a {
    background-color: #f7f7f7;
}

.mainmenu ul li.has-child .sub-menu li.has-child > a::after {
    content: "\f0da";
    float: right;
    font-size: 150%;
}
.mainmenu ul li.has-child .sub-menu li.has-child ul.sub-menu {
    right: -100%;
    top: 0;
    opacity: 0;
    transform: scaleX(0);
}
.mainmenu ul li.has-child .sub-menu li.has-child:hover ul.sub-menu {
    opacity: 1;
    transform: scaleX(1);
}
.mainmenu ul li.has-child .sub-menu li.has-child ul.sub-menu li a {
    border-bottom: 1px solid #eee;
}

/*************************
04. header social
*************************/

.social ul li {
    display: inline-block;
}
.social ul li a {
    border: 1px solid #222;
    border-radius: 50%;
    color: #222;
    display: block;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    margin: 25px 0 25px 10px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 1;
}
.social ul li a::after {
    background-color: #222;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 0;
    z-index: -1;
}
.social ul li a:hover::after {
    width: 100%;
}
/*************************
01. preloader
*************************/
body {
    overflow: hidden;
}
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:99999999; /* makes sure it stays on top */
}
.main-wrap {
    background-color: #333;
    color: #fff;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
}
.ball-scale-multiple > div{
    background-color: #fff;
}
@-webkit-keyframes
ball-scale-multiple {
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    5% {
        opacity:1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    5% {
        opacity:1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
    100% {
        -webkit-transform: scale(1);
        transform :scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
.ball-scale-multiple {
    position: relative;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
    -webkit-animation-delay:-.4s;
    animation-delay:-.4s;
}
.ball-scale-multiple > div:nth-child(3) {
    -webkit-animation-delay:-.2s;
    animation-delay:-.2s;
}
.ball-scale-multiple > div {
    position: absolute;
    left: -30px;
    top: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin: 0;
    width: 60px;
    height: 60px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
    animation: ball-scale-multiple 1s 0s linear infinite;
}

/*************************
02. Background images
*************************/

.slide-bg-1 {
    background-image: url(../img/slider/slider-bg-1.jpg);
}
.slide-bg-2 {
    background-image: url(../img/slider/slider-bg-2.jpg);
}
.slide-bg-3 {
    background-image: url(../img/slider/slider-bg-3.jpg);
}
.slide-bg-4 {
    background-image: url(../img/slider/slider-bg-4.jpg);
}
.slide-bg-5 {
    background-image: url(../img/slider/slider-bg-5.jpg);
}
.slide-bg-6 {
    background-image: url(../img/slider/slider-bg-6.jpg);
}
.about-bg-1 {
    background-image: url(../img/about-bg-1.jpg);
}
.about-bg-2 {
    background-image: url(../img/about/about-bg-2.jpg);
}
.work-bg-1 {
    background-image: url(../img/proyectos/electrolinera_thumb.jpg);
}
.work-bg-2 {
    background-image: url(../img/proyectos/tanques_doblepared_thumb.jpg);
}
.work-bg-3 {
    background-image: url(../img/proyectos/distribuidora_thumb.jpg);
}
.work-bg-4 {
    background-image: url(../img/proyectos/tanques_thumb.jpg);
}
.work-bg-5 {
    background-image: url(../img/proyectos/transpais_thumb.jpg);
}
.work-bg-6 {
    background-image: url(../img/proyectos/avis_thumb.jpg);
}
.work-bg-7 {
    background-image: url(../img/productos/1.jpg);
}
.work-bg-8 {
    background-image: url(../img/productos/7.jpg);
}
.work-bg-9 {
    background-image: url(../img/productos/4.jpg);
}
.work-bg-10 {
    background-image: url(../img/works/10.jpg);
}
.work-bg-11 {
    background-image: url(../img/works/11.jpg);
}
.work-bg-12 {
    background-image: url(../img/works/12.jpg);
}
.team-bg-1 {
    background: url(../img/clientes/1.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-2 {
    background: url(../img/clientes/2.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-3 {
    background: url(../img/clientes/3.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-4 {
    background: url(../img/clientes/4.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-5 {
    background: url(../img/clientes/5.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-6 {
    background: url(../img/clientes/6.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-7 {
    background: url(../img/clientes/7.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-8 {
    background: url(../img/clientes/8.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-9 {
    background: url(../img/clientes/9.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-10 {
    background: url(../img/clientes/10.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-11 {
    background: url(../img/clientes/11.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-12 {
    background: url(../img/clientes/12.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-13 {
    background: url(../img/clientes/13.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-14 {
    background: url(../img/clientes/14.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-15 {
    background: url(../img/clientes/15.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-16 {
    background: url(../img/clientes/16.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-17 {
    background: url(../img/clientes/17.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-18 {
    background: url(../img/clientes/18.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-19 {
    background: url(../img/clientes/19.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-20 {
    background: url(../img/clientes/20.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-21 {
    background: url(../img/clientes/21.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-22 {
    background: url(../img/clientes/22.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-23 {
    background: url(../img/clientes/23.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-24 {
    background: url(../img/clientes/24.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-25 {
    background: url(../img/clientes/25.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-26 {
    background: url(../img/clientes/26.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-27 {
    background: url(../img/clientes/27.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-28 {
    background: url(../img/clientes/28.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-29 {
    background: url(../img/clientes/29.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-30 {
    background: url(../img/clientes/30.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-31 {
    background: url(../img/clientes/31.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-32 {
    background: url(../img/clientes/32.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-33 {
    background: url(../img/clientes/33.jpg) no-repeat center center;
    background-size: 100% !important;
}
.team-bg-no-img {
    background: url(../img/no-img.jpg) no-repeat center center;
    background-size: 100% !important;
}
.fun-bg {
    background-image: url(../img/bg/fun-fact-bg.jpg);
}
.newsletter-bg {
    background-image: url(../img/bg/newsletter-bg.jpg);
}
.newsletter-bg-2 {
    background-image: url(../img/bg/newsletter-bg-2.jpg);
}
.blog-bg-1 {
    background-image: url(../img/blog/1.jpg);
}
.blog-bg-2 {
    background-image: url(../img/blog/2.jpg);
}
.blog-bg-3 {
    background-image: url(../img/blog/3.jpg);
}
.blog-bg-4 {
    background-image: url(../img/blog/4.jpg);
}
.blog-bg-5 {
    background-image: url(../img/blog/5.jpg);
}
.blog-bg-6 {
    background-image: url(../img/blog/6.jpg);
}
.service-bg-1 {
    background-image: url(../img/service/service-bg-1.png);
}
.service-bg-2 {
    background-image: url(../img/service/service-bg-2.png);
}
.service-item-0 {
    background-image: url(../img/no-img.jpg);
}
.service-item-1 {
    background-image: url(../img/servicios/1.jpg);
}
.service-item-2 {
    background-image: url(../img/servicios/2.jpg);
}
.service-item-3 {
    background-image: url(../img/servicios/3.jpg);
}
.service-item-4 {
    background-image: url(../img/servicios/4.jpg);
}
.service-item-5 {
    background-image: url(../img/servicios/5.jpg);
}
.service-item-6 {
    background-image: url(../img/servicios/6.jpg);
}
.service-item-7 {
    background-image: url(../img/servicios/7.jpg);
}
.service-item-8 {
    background-image: url(../img/servicios/8.jpg);
}
.service-item-9 {
    background-image: url(../img/servicios/9.jpg);
}
.service-item-10 {
    background-image: url(../img/servicios/10.jpg);
}
.service-item-11 {
    background-image: url(../img/servicios/11.jpg);
}
.service-item-13 {
    background-image: url(../img/servicios/13.jpg);
}
.testimonial-bg {
    background-image: url(../img/testimonials/testimonial-bg.jpg);
}
.breadcrumb-bg-1 {
    background-image: url(../img/bg/1.jpg);
}
.breadcrumb-bg-2 {
    background-image: url(../img/breadcrumb/2.jpg);
}
.breadcrumb-bg-3 {
    background-image: url(../img/breadcrumb/3.jpg);
}
.breadcrumb-bg-4 {
    background-image: url(../img/breadcrumb/4.jpg);
}
.breadcrumb-bg-5 {
    background-image: url(../img/breadcrumb/5.jpg);
}

/*************************
03. slider area
*************************/

.single-slide-item {
    height: 100vh;
}
.slider-area-2 .single-slide-item {
    height: calc(100vh - 90px);
    margin-top: 90px;
}
.single-slide-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 0;
    font-size: 18px;
    line-height: 28px;
}
.single-slide-item:after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.single-slide-item h3 {
    letter-spacing: 1px;
    text-transform: uppercase;
}
.single-slide-item h2 {
    font-size: 60px;
    line-height: 60px;
    text-transform: capitalize;
}
.single-slide-item p {
    margin-bottom: 20px;
}
.single-slide-item a.button {
    margin-right: 10px;
}
.slider-area.owl-carousel .owl-controls .owl-nav div {
    border: 1px solid;
    color: #fff;
    font-size: 30px;
    height: 60px;
    left: 0;
    line-height: 56px;
    margin-top: -30px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 60px;
}
.slider-area-2.owl-carousel .owl-controls .owl-nav {
    position: absolute;
    right: 80px;
}
.slider-area-2.owl-carousel .owl-controls .owl-nav div {
    border: 2px solid;
    color: #fff;
    border-radius: 50%;
    bottom: 30px;
    font-size: 24px;
    height: 50px;
    line-height: 46px;
    margin: 0;
    right: 70px;
    top: auto;
    width: 50px;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.slider-area.owl-carousel .owl-controls .owl-nav div.owl-next,
.slider-area-2.owl-carousel .owl-controls .owl-nav div.owl-next {
    left: auto;
    right: 0;
}
.slider-area.owl-carousel:hover .owl-controls .owl-nav div,
.slider-area-2.owl-carousel:hover .owl-controls .owl-nav div {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.slider-area.owl-carousel .owl-controls .owl-nav div:hover,
.slider-area-2.owl-carousel .owl-controls .owl-nav div:hover {
    color: #ffffff;
}
.slider-area.owl-carousel .owl-controls .owl-dots {
    bottom: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
}
.slider-area-2.owl-carousel .owl-controls .owl-dots {
    position: absolute;
    left: auto;
    margin-top: -50px;
    right: 15%;
    top: 50%;
}
.slider-area.owl-carousel .owl-controls .owl-dots .owl-dot {
    background-color: #fff;
    border-radius: 3px;
    display: inline-block;
    height: 5px;
    margin: 0 5px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 40px;
}
.slider-area-2.owl-carousel .owl-controls .owl-dots .owl-dot {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    height: 15px;
    margin: 10px 0;
    width: 15px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/*************************
04. service area
*************************/

.service-items {
    margin-left: -2%;
}
.single-service {
    border: 1px solid #eee;
    float: left;
    margin-bottom: 2%;
    margin-left: 2%;
    padding: 25px 20px 20px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 31.33%;
}
.single-service i {
    font-size: 36px;
}
.single-service h4 {
    color: #454545;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-service:hover {
    box-shadow: 0 1px 5px #ddd;
}

/*************************
04.1 service 2
*************************/

.service-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 270px 420px;
    height: 420px;
}
.single-service-2 {
    margin-bottom: 40px;
    padding-top: 30px;
}
.single-service-2:last-child {
    margin-bottom: 0;
}
.single-service-2 i {
    color: #fff;
    float: left;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    /*margin-top: 15px;*/
    margin-left: 10px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 50px;
    z-index: 1;
}
.single-service-2:hover i {
    color: #222;
}
.single-service-2 i:after {
    background-color: #222;
    content: "";
    height: 50px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 50px;
    z-index: -1;
}
.service-content {
    padding-left: 90px;
}
.single-service-2 h4 {
    color: #222;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*************************
04.2 service 3
*************************/

.service-area.pages .single-service-3 {
    margin-bottom: 40px;
    min-height: 350px;
}
.single-service.style-2 {
    position: relative;
}
.single-service.style-2:hover {
    box-shadow: none;
}
.single-service.style-2:after,
.single-service.style-2:before {
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 2px;
}
.single-service.style-2:after {
    bottom: 0;
    left: auto;
    right: 0;
    top: auto;
}
.single-service.style-2:hover:after,
.single-service.style-2:hover:before {
    height: 100%;
}

/*************************
04.3 service 4
*************************/

.service-item-bg {
    background-position: center center;
    background-size: cover;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.service-item-bg:after {
    background-color: rgba(255, 255, 255, 0.9);
    content: "";
    height: 50px;
    left: -115%;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 140%;
}
.single-service-3:hover .service-item-bg:after {
    left: 70%;
}
.service-item-bg:before {
    background-color: rgba(0, 0, 0, 0.1);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.single-service-3 .service-content {
    color: #636363;
    font-size: 15px;
    padding: 15px 0 0;
    min-height: 160px;
}
.single-service-3 .service-content h4 {
    color: #3e3e3e;
    margin-bottom: 15px;
}
.text-link {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.single-service-3 .service-content .text-link {
    display: block;
    margin-top: 10px;
}

/*************************
04.4 details
*************************/

.details-content {
    color: #454545;
    font-size: 15px;
    margin-bottom: 30px;
    margin-top: 40px;
}
.details-content h2 {
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}


/*************************
05. about us area
*************************/

.about-bg,
.work-bg-style-2 {
    background-position: center center;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}
.about-us-area,
.contact-area-3 {
    background-color: #272727;
    color: #bababa;
    font-size: 16px;
    line-height: 30px;
    min-height: 540px;
    position: relative;
}
.about-us-2-area {
    color: #636363;
    font-size: 16px;
    line-height: 30px;
}
.about-content p {
    margin-bottom: 30px;
}

/*************************
06. works area
*************************/

.works-area {
    position: relative;
}
.all-works {
    margin-left: -2%;
}
.single-work {
    position: relative;
    display: block;
    float: left;
    height: 310px;
    margin-bottom: 2%;
    margin-left: 2%;
    width: 31.33%;
}
.single-work.style-2 {
    margin-bottom: 1%;
    margin-left: 1%;
    width: 32.33% !important;
}
.column-2 .all-works .single-work.style-2 {
    height: 350px;
    width: 49% !important;
}
.all-works .single-work:nth-child(1),
.all-works .single-work:nth-child(6) {
    width: 39%;
}
.all-works .single-work:nth-child(2),
.all-works .single-work:nth-child(4) {
    width: 29%;
}
.all-works .single-work:nth-child(3),
.all-works .single-work:nth-child(5) {
    width: 26%;
}
.all-works .single-work:nth-child(7),
.all-works .single-work:nth-child(8) {
    width: 48%;
}
.work-bg {
    background-position: center center;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.work-hover {
    color: #fff;
    font-weight: 500;
    height: 100%;
    letter-spacing: 1px;
    text-align: center;
    text-transform: capitalize;
    z-index: 1;
}
.work-hover:after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}
.single-work:hover .work-hover:after {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}
.hover-content {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    visibility: hidden;
}
.single-work:hover .hover-content {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
.work-hover h4 {
    margin-bottom: 5px;
    text-transform: uppercase;
}
.see-more {
    background-color: #f7f7f7;
}

/*************************
07. call to action area
*************************/

.cta-area {
    background-color: #333;
    color: #bababa;
    font-size: 16px;
}
.cta-area h2 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.cta-area .button {
    float: right;
    margin-top: 9px;
}

/*************************
08. team area
*************************/

.single-team {
    text-align: center;
}
.team-bg {
    background-position: center center;
    background-size: cover;
    border: 2px solid #efefef;
    height: 240px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.team-hover {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    padding: 10px 5px;
    position: absolute;
    bottom: -50px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
}
.single-team:hover .team-hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    bottom: 0px;
}
.social-link ul li a {
    border: 1px solid #333;
    color: #333;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    margin: 0 2px;
    width: 30px;
}
.social-link ul li a:hover {
    background-color: #333;
    color: #fff;
}
.social-link h4 {
    color: #fff;
}
.team-info {
    margin-top: 20px;
}
.team-info h4 {
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: uppercase;
}

/*************************
08.1 team 2
*************************/

.single-team.style-2 {
    position: relative;
    z-index: 1;
}
.single-team.style-2:before {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: 1;
}
.single-team.style-2 .team-hover {
    background-color: transparent;
    z-index: 9;
    bottom: 50px;
    -webkit-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
}
.single-team.style-2:hover .team-hover {
    bottom: 80px;
}
.single-team.style-2:hover:before {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.single-team.style-2 .team-hover .team-info h4 {
    color: #fff;
}
.single-team.style-2 .team-hover .social-link {
    margin-top: 15px;
}
.single-team.style-2 .team-hover .social-link a {
    border-color: #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    width: 35px;
}
.single-team.style-2 .team-hover .social-link a:hover {
    color: #222;
}


/*************************
09. fun facts area
*************************/

.fun-bg,
.newsletter-bg {
    background-position: center center;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
}
.fun-bg:after,
.newsletter-bg:after {
    background-color: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.single-counter {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}
.single-counter h2 {
    font-weight: 400;
    margin-bottom: 10px;
    padding-bottom: 15px;
    position: relative;
}
.single-counter h2:after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 20%;
}

/*************************
10. testimonial area
*************************/

.single-testimonial {
    background-color: #f2f2f2;
    color: #333;
    padding: 50px 20px 20px;
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    min-height: 350px;
    margin-bottom: 30px;
}
.single-testimonial:hover {
    box-shadow: 0 1px 5px #ccc;
}
.single-testimonial .quote {
    background-color: #f2f2f2;
    border: 5px solid #fff;
    border-radius: 50%;
    color: #bababa;
    display: inline-block;
    font-size: 42px;
    height: 90px;
    left: 0;
    line-height: 80px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    padding: 18px;
}
.single-testimonial .quote i.icon-int {
   color: #bababa;
   font-size: 46px;
   padding: 10px 0px 0px 1px;
}
.single-testimonial .spech {
    color: #555;
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    min-height: 200px;
}
.single-testimonial .spech:after {
    background-color: #bababa;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 33%;
}
.client-info h4 {
    margin-bottom: 0;
    text-transform: capitalize;
}
/*************************
10.1 testimonial 2
*************************/

.single-testimonial-2 {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    font-style: italic;
    overflow: hidden;
    padding: 25px;
    line-height: 30px;
}
.single-testimonial-2 .test-img {
    float: left;
    width: 22%;
}
.single-testimonial-2 .test-content {
    padding-left: 25%;
}
.single-testimonial-2 .spech {
    margin-bottom: 20px;
}
.quote-2 {
    color: #bababa;
    font-size: 30px;
    margin-right: 10px;
}
.owl-nav-style.owl-carousel .owl-controls .owl-nav div {
    color: #222;
    font-size: 24px;
    height: 50px;
    left: -50px;
    line-height: 50px;
    margin-top: -25px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 50px;
}
.owl-nav-style.owl-carousel .owl-controls .owl-nav div.owl-next {
    left: auto;
    right: -50px;
}
.owl-nav-style.owl-carousel .owl-controls .owl-nav div:hover {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.testimonial-area-2 .owl-carousel .owl-controls .owl-nav {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.testimonial-area-2:hover .owl-carousel .owl-controls .owl-nav {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*************************
11. newsletter area
*************************/

.newsletter-box {
    position: relative;
}
.newsletter-box button {
    border: 0 none;
    color: #333;
    font-weight: 600;
    height: 100%;
    padding: 0 30px;
    position: absolute;
    top: 0;
    right: 0;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.newsletter-box button:hover {
    background-color: #454545;
    color: #fff;
}

/*************************
12. blog area
*************************/

.blog-area {
    background-color: #f7f7f7;
}
.pages .single-blog {
    margin-bottom: 40px;
}
.blog-bg,
.blog-bg-style-2 {
    background-color: #ddd;
    background-position: center center;
    background-size: cover;
    height: 220px;
    position: relative;
    text-align: center;
    z-index: 1;
}
.blog-bg:after {
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    position: absolute;
    top: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: -1;
}
.single-blog:hover .blog-bg:after {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
}
.blog-bg .link {
    background-color: #333;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    width: 40px;
    z-index: 1;
}
.single-blog:hover .blog-bg .link {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.single-blog .blog-date {
    bottom: 10px;
    color: #222;
    font-family: "Roboto",sans-serif;
    padding: 10px 0 5px;
    position: absolute;
    right: 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 80px;
    z-index: 2;
}
.single-blog:hover .blog-date {
    background-color: #222;
    color: #fff;
}
.single-blog .blog-date span {
    display: block;
}
.single-blog .blog-date span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.single-blog .blog-date span:first-child {
    font-size: 32px;
    margin-bottom: 5px;
}
.blog-content {
    border: 1px solid #eee;
    padding-bottom: 20px;
}
.blog-content h4 {
    margin-bottom: 0;
}
.blog-content h4 a {
    border-bottom: 1px solid #eee;
    display: block;
    padding: 15px 10px 10px;
    text-transform: capitalize;
}
.blog-content .info {
    border-bottom: 1px solid #eee;
    padding: 5px 10px;
}
.blog-content .info li {
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    margin-right: 10px;
    text-transform: uppercase;
}
.blog-content .info li i {
    margin-right: 5px;
}
.blog-content .descriptions {
    padding: 10px 10px 20px;
}
.blog-content .button {
    line-height: 40px;
    margin-left: 10px;
}

/*************************
12.1 blog 2
*************************/

.blog-area-2 {
    overflow: hidden;
}
.single-blog-2 {
    float: left;
    height: 300px;
    position: relative;
    width: 33.33%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-blog-2:after {
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%,rgba(0,0,0,1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.single-blog-2:hover {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.single-blog-2 .blog-bg-style-2 {
    height: 100%;
}
.single-blog-2 .blog-content-2 {
    bottom: 0;
    padding: 20px 50px;
    position: absolute;
    z-index: 2;
}
.blog-content-2 h3 {
    letter-spacing: 2px;
    text-transform: uppercase;
}
.blog-content-2, .blog-content-2 a {
    color: #fff;
}
.blog-content-2 h3 a:hover {
    text-decoration: underline;
}
.blog-content-2 a.text-link {
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/*************************
12.2 blog sidebar
*************************/

.single-sidebar {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #eee;
}
.search-area .search-box {
    height: 45px;
    position: relative;
}
.search-area .search-box input {
    border: 1px solid #eee;
    height: 100%;
    padding: 10px;
    position: absolute;
    width: 100%;
    background-color: #fff;
}
.search-box button {
    background-color: transparent;
    border: 1px solid #eee;
    height: 100%;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 50px;
}
.search-box button:hover {
    color: #fff;
}
.single-sidebar-title h3 {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.single-sidebar-menu ul li a {
    color: #545454;
    display: block;
    padding: 5px 0 5px 15px;
    position: relative;
    text-transform: capitalize;
}
.single-sidebar-menu ul li a:hover {
    padding-left: 20px;
}
.single-sidebar-menu ul li a:before {
    content: "\f0b0";
    font-family: 'fontawesome';
    font-size: 10px;
    left: 0;
    position: absolute;
    top: 4px;
}
.single-sidebar-content .price-slider-amount input {
    margin-top: 30px;
}
.tag-menu ul li {
    display: inline-block;
}
.tag-menu ul li a {
    border: 1px solid #ddd;
    color: #666;
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    padding: 5px 20px;
    text-transform: capitalize;
}
.tag-menu ul li a:hover {
    color: #fff;
}
.toolbar-bottom {
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 20px;
    text-align: center;
}
.toolbar-bottom ul li {
    display: inline-block;
}
.toolbar-bottom span {
    font-size: 13px;
    font-weight: 700;
}
.toolbar-bottom ul li.current a,
.toolbar-bottom ul li a:hover {
    color: #fff;
}
.toolbar-bottom ul li a {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #333;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    margin: 0 5px;
    width: 30px;
}

/*************************
12.3 blog details
*************************/

.blog-full-post .blog-info {
    background-color: #f5f5f5;
    padding: 5px 10px;
}
.blog-full-post .blog-info p {
    margin-bottom: 0;
}
.blog-full-post .blog-info p span {
    margin-right: 10px;
}
.blog-full-post .blog-info p span i {
    margin-right: 3px;
}
.comment-box ul li {
    background-color: #f5f5f5;
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
    padding: 20px;
}
.comment-box ul li .author-comment {
    padding-left: 2%;
    width: 90%;
}
.comment-box ul li .author-img {
    width: 10%;
}
.author-comment h5 {
    color: #777;
    margin-bottom: 0;
}
.author-comment h5 a {
    display: inline-block;
    margin-right: 10px;
    text-transform: capitalize;
}
.author-comment p {
    line-height: 24px;
    margin-bottom: 0;
}
.author-comment h5 a.reply {
    color: #777;
    margin-right: 15px;
}
.comment-box ul li.comment-reply {
    margin-left: 50px;
}
.blog-comment-form .input-box input,
.blog-comment-form .input-textarea textarea {
    margin-bottom: 20px;
}

/*************************
13. contact area
*************************/

.contact-bg {
    background-image: url("img/bg/contact-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 480px auto;
    height: 330px;
    position: relative;
    z-index: 1;
}
.contact-form {
    background-color: #333;
    margin-top: -48px;
    padding: 50px;
    z-index: 1;
}
.contact-form.white {
    background-color: #ffffff;
    margin-top: -48px;
    padding: 50px;
    z-index: 1;
}
input[type="text"],
input[type="number"],
input[type="email"],
textarea {
    background-color: transparent;
    border: 1px solid #aaa;
    font-size: 12px;
    font-style: italic;
    padding: 5px 10px;
    width: 100%;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.contact-form input[type="text"],
.contact-form-2 input[type="text"],
.contact-form input[type="email"],
.contact-form-2 input[type="email"],
.contact-form textarea,
.contact-form-2 textarea {
    margin-bottom: 15px;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
    float: left;
    margin-left: 2%;
    width: 48%;
}
.contact-form input[type="text"] {
    margin-left: auto;
    margin-right: 2%;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none !important;
}
.contact-form .button {
    border: 0px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-contact-info {
    font-size: 15px;
    font-weight: 600;
}
.contact-info-title {
    margin-bottom: 50px;
}
.contact-info-title h2 {
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.single-contact-info h3 {
    border-bottom: 2px solid #efefef;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: capitalize;
}
.single-contact-info h3 i {
    margin-right: 15px;
}

/*************************
13.1 contact area 2
*************************/

.contact-area-2 {
    min-height: 540px;
    position: relative;
    background-color: #333;
}
.contact-area-2 #google-Map {
    height: 100%;
    position: absolute;
    width: 50%;
    top: 0;
    left: 0;
}

/*************************
14. our experienct area
*************************/

.our-experience {
    background-color: #f7f7f7;
}
.our-experience.fun-bg:after {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.our-experience .single-counter {
    margin-bottom: 50px;
    text-align: left;
}
.our-experience .single-counter h2:after {
    right: auto;
}
.our-experience .single-counter.text-right {
    text-align: right;
}
.our-experience .single-counter.text-right h2:after {
    left: auto;
    right: 3px;
}

/*************************
15. our pricing area
*************************/

.our-pricing-area {
    background-color: #f7f7f7;
    color: #636363;
    text-align: center;
}
.single-price-table {
    background-color: #fff;
    padding: 20px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single-price-table.active,
.single-price-table:hover {
    box-shadow: 0 0 15px -7px #000;
}
.price-plan-info {
    border-bottom: 1px solid #dadada;
    font-style: italic;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-transform: lowercase;
}
.price-plan-info h4 {
    color: #222;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.price-plan-info h1 {
    letter-spacing: 2px;
    line-height: 36px;
    margin: 10px 0;
}
.price-plan-features {
    text-align: left;
}
.price-plan-features li {
    border-bottom: 1px solid #eee;
    padding: 5px 0 5px 10px;
}
.price-plan-features li:last-child {
    border: 0 none;
    margin-bottom: 20px;
}
.price-plan-features li i {
    margin-right: 3px;
    text-align: center;
    width: 20px;
}
.price-plan-features li i.fa-check {
    color: #27cb06;
}
.price-plan-features li i.fa-times {
    color: #ff0000;
}

/*************************
16. combined section
*************************/

.single-section {
    background-color: #333;
    color: #bababa;
    min-height: 540px;
    padding: 100px 0;
    position: relative;
}
.work-bg-style-2.right{
    left: auto;
    right: 0;
}
.work-bg-style-2:after {
    background-color: rgba(0, 0, 0, 0.15);
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

/*************************
17. particle section
*************************/

canvas.particles-js-canvas-el {
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: 0;
}

/*************************
18. breadcrumb area
*************************/

.breadcrumb-area {
    background-position: center center;
    background-size: 1200px auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.breadcrumb-area:after {
    background-color: rgba(0, 0, 0, 0.28);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.breadcrumb-area.breadcrumb-left {
    text-align: left;
}
.breadcrumb-area.breadcrumb-left:after {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.breadcrumb-area.breadcrumb-left.gradient:after {
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
}
.breadcrumb-area .page-title {
    padding: 75px 0px;
}
.breadcrumb-area .page-title h1 {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.breadcrumb-area .breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}
.breadcrumb-area .breadcrumb li a {
    color: #fff;
}
.breadcrumb-area .breadcrumb li {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

/*************************
19. eror area
*************************/

.eror-area {
    height: 100vh;
    background-color: #333;
    text-align: center;
}
.eror-area h1,
.eror-area h2 {
    color: #cfcfcf;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 40px;
}
.eror-area h2 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
}

/*************************
20. footer top area
*************************/

.footer-top-area {
    background-color: #222;
    border-bottom: 1px solid #454545;
}
.widget-title h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.widget-content,
.widget-content a {
    color: #aeaeae;
}
.widget-content > span {
    display: block;
    margin-bottom: 10px;
}
.widget-content > span strong {
    text-transform: uppercase;
}
.footer-link li a {
    border-bottom: 1px solid #505050;
    color: #aeaeae;
    display: block;
    padding: 10px 20px;
    position: relative;
    text-transform: capitalize;
}
.footer-link li a:before {
    content: "\f105";
    font-family: fontawesome;
    font-size: 16px;
    left: 0;
    position: absolute;
}
.footer-link li a:hover {
    text-decoration: underline;
}
.footer-posts li a {
    display: block;
    font-size: 13px;
    line-height: 22px;
    text-transform: capitalize;
}
.footer-posts li a:hover {
    text-decoration: underline;
}
.footer-posts li {
    margin-bottom: 20px;
}
.footer-posts li span {
    font-size: 12px;
    line-height: 16px;
}
.footer-social li a {
    border-bottom: 1px solid #404040;
    display: block;
    padding: 10px 0;
    text-transform: capitalize;
}
.footer-social li a i {
    border: 1px solid;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    text-align: center;
    width: 30px;
}

/*************************
21. footer area
*************************/

.footer-area {
    background-color: #222;
    color: #eee;
}

/* ==========
    RESPONSIVE
========== */
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
    .mainmenu ul li a,
    .header-area.style-2.stick .mainmenu ul li a {
        padding: 32px 12px;
    }
    .logo a {
        padding: 12px 0;
    }
    .stick .logo a {
        padding: 8px 0;
    }
    .slider-area-2.owl-carousel .owl-controls .owl-dots {
        right: 5%;
    }
    .single-blog-2 .blog-content-2 {
        padding: 20px 20px;
    }
}

/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .logo a {
        padding: 21px 0;
    }
    .stick .logo a {
        padding: 16px 0;
    }
    .mainmenu ul li a {
        font-size: 12px;
        padding: 32px 7px;
    }
    .header-area.style-2 .mainmenu ul li a,
    .header-area.style-2.stick .mainmenu ul li a {
        padding: 32px 4px;
    }
    .stick .mainmenu ul li a {
        padding-bottom: 22px;
        padding-top: 22px;
    }
    .single-box {
        font-size: 13px;
        margin-left: 10px;
    }
    .social ul li a {
        font-size: 16px;
        height: 35px;
        line-height: 35px;
        margin: 25px 0 25px 1px;
        width: 35px;
    }
    .slider-area-2.owl-carousel .owl-controls .owl-dots {
        right: 5%;
    }
    .single-service,
    .all-works .single-work {
        width: 48% !important;
    }
    .about-us-2-area .pt-100 {
        padding-top: 0;
        padding-bottom: 90px;
    }
    .cta-area .button {
        float: left;
        margin-top: 20px;
    }
    .single-counter {
        font-size: 15px;
    }
    .single-price-table {
        margin-bottom: 40px;
    }
    .single-service-3 {
        margin-bottom: 30px;
    }
    .details-small-img .service-item-bg {
        margin: 15px 0;
    }
    .our-pricing-area .col-lg-3:nth-child(3) .single-price-table,
    .our-pricing-area .col-lg-3:nth-child(4) .single-price-table {
        margin-bottom: 0;
    }
    .single-blog-2 {
        width: 100%;
    }
    .single-blog-2 .blog-content-2 {
        padding: 20px 20px;
    }
    .blog-sidebar.right {
        margin-top: 30px;
    }
    .footer-top-area {
        padding-bottom: 20px;
    }
    .single-footer-widget {
        margin-bottom: 50px;
    }
}

/* small mobile :320px. */
@media (max-width: 767px) {
    .container {
        width:300px;
    }
    .header-area,
    .header-area.stick {
        height: 50px;
    }
    .mobile-menu-area {
        background-color: transparent;
    }
    .header-area.style-2 .header-top-area {
        display: none;
    }
    .header-area.style-2.stick .mobile-menu-area {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #fff;
        height: 50px;
    }
    .mobile-menu.mean-container {
        position: absolute;
        right: 0;
    }
    .mean-container a.meanmenu-reveal span {
        background-color: #303030;
    }
    .header-area.transparent-header .mean-container a.meanmenu-reveal span {
        background-color: #fff;
    }
    .mean-container a.meanmenu-reveal {
        color: #303030;
    }
    .header-area.transparent-header .mean-container a.meanmenu-reveal {
        color: #fff;
    }
    .mean-container .mean-bar {
        padding: 2px 0 0;
    }
    .mean-container .mean-bar::after {
        content: "";
    }
    .logo {
        position: absolute;
        z-index: 9999999;
    }
    .logo a,
    #sticker.stick .logo a {
        width: 150px;
        padding: 0;
        margin:11px 0 0 0;
    }
    .stick .logo a img {
        max-width: 100%;
    }
    .mean-container .mean-nav ul li {
        border-top: 1px solid #373737;
    }
    .mean-container .mean-nav ul li a {
        background-color: #292929;
        color: #fff;
        padding: 7px 5%;
        letter-spacing: 1px;
        font-weight: 500;
    }
    .mean-container .mean-nav ul li li a {
        color: #eee;
        padding: 7px 10%;
    }
    .mean-container .mean-nav ul li a.mean-expand {
        background: #eee;
        color: #303030;
        line-height: 13px;
    }
    .mean-container .mean-nav ul li a:hover {
        color: #454545;
    }
    .dark .mean-container a.meanmenu-reveal span {
        background-color: #cfcfcf;
    }
    .dark .mean-container a.meanmenu-reveal {
        color: #cfcfcf;
    }
    .slider-area.owl-carousel:hover .owl-controls .owl-nav div {
        opacity: 0;
    }
    .slider-area-2.owl-carousel .owl-controls .owl-dots {
        right: 5%;
    }
    .single-slide-item h2 {
        font-size: 36px;
        line-height: 40px;
    }
    .single-slide-item h3 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .single-slide-item {
        font-size: 15px;
    }
    .single-slide-item .button {
        padding: 0 15px;
    }
    .section-title h2,
    .section-title-2 h2,
    .section-title-3 h2 {
        font-size: 24px;
        line-height: 36px;
    }
    .single-service,
    .single-work,
    .single-work.style-2,
    .column-2 .all-works .single-work.style-2 {
        width: 98% !important;
        min-height: 200px;
        margin-top: 8px;
    }
    .single-service-3 {
        margin-bottom: 40px;
    }
    .service-area .row div.col-md-6 .single-service-2:last-child {
        padding-bottom: 50px;
    }
    .col-md-4:last-child .single-service-3 {
        margin-bottom: 0;
    }
    .about-us-2-area .pt-100 {
        padding-top: 0;
        padding-bottom: 90px;
    }
    .about-content {
        padding: 0 5px 20px;
    }
    .about-us-area {
        font-size: 14px;
    }
    .our-experience .section-title {
        margin-bottom: 30px;
    }
    .our-experience .single-counter.m-0 {
        margin-bottom: 50px !important;
    }
    .cta-area h2 {
        line-height: 36px;
    }
    .cta-area .button {
        float: left;
        margin-top: 20px;
    }
    .single-team,
    .single-counter,
    .single-blog,
    .single-footer-widget {
        margin-bottom: 40px;
    }
    .our-experience .single-counter,
    .our-experience .single-counter.text-right {
        text-align: center;
    }
    .our-experience .single-counter h2::after {
        right: 0;
    }
    .our-experience .single-counter.text-right h2::after {
        left: 0;
    }
    .single-work {
        height: 200px;
    }
    .testimonial-area-2 .owl-carousel .owl-controls .owl-nav {
        display: none;
    }
    .col-sm-6:first-child .single-counter {
        margin-top: 60px;
    }
    .single-price-table {
        margin-bottom: 50px;
    }
    .col-lg-3:last-child .single-price-table {
        margin-bottom: 0;
    }
    .team-area,
    .fun-facts-area {
        padding-bottom: 60px;
    }
    .single-testimonial {
        margin-top: 100px;
    }
    .single-testimonial .quote {
        top: -50px;
    }
    .single-testimonial-2 .test-content {
        padding-left: 0;
    }
    .single-testimonial-2 .test-img {
        float: none;
        margin: 0 auto 20px;
        width: 50%;
    }
    .blog-area .see-more-link {
        margin-top: 0;
    }
    .blog-sidebar.right {
        margin-top: 30px;
    }
    .blog-full-post .blog-info p span.pull-right,
    .author-comment h5 a.reply {
        float: none !important;
        display: block;
    }
    .comment-box ul li.comment-reply {
        margin-left: 20px;
    }
    .comment-box ul li .author-img {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    .single-section {
        margin-bottom: 10px;
        padding: 50px 0;
    }
    .single-section:last-child {
        margin-bottom: 0;
    }
    .single-blog-2 {
        width: 100%;
    }
    .contact-area-2 #google-Map {
        display: none;
    }
    .contact-bg {
        background-size: 280px auto;
        height: 190px;
    }
    .contact-form {
        margin-top: -28px;
        padding: 30px 10px;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"] {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .single-contact-info {
        margin-bottom: 40px;
    }
    .contact-info-title h2 {
        line-height: 36px;
    }
    .col-sm-4:last-child .single-contact-info {
        margin-bottom: 0;
    }
    .details-content h2 {
        line-height: 36px;
    }
    .details-small-img .service-item-bg {
        margin: 15px 0;
    }
    .breadcrumb-area .page-title h1 {
        line-height: 40px;
    }
    .footer-top-area {
        padding-bottom: 30px;
    }
}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width:450px;
    }
    .single-team {
        float: left;
        margin-left: 1%;
        width: 49%;
    }
    .single-work,
    .column-2 .all-works .single-work.style-2 {
        height: 250px;
    }
}


/* ==========
    DEFAULT
========== */
.slider-area-2.owl-carousel .owl-controls .owl-dots .owl-dot.active,
.slider-area.owl-carousel .owl-controls .owl-dots .owl-dot.active,
.header-area.transparent-header .mainmenu ul li.active a:before,
.slider-area-2.owl-carousel .owl-controls .owl-nav div:hover,
.slider-area.owl-carousel .owl-controls .owl-nav div:hover,
.owl-nav-style.owl-carousel .owl-controls .owl-nav div,
.single-team.style-2 .team-hover .social-link a:hover,
.mainmenu nav > ul > li:hover > a::before,
.single-service-2:hover i::after,
.single-service.style-2::before,
.toolbar-bottom ul li.current a,
.single-service.style-2::after,
.toolbar-bottom ul li a:hover,
.section-title-3 h2::before,
.section-title-2 h2::after,
.section-title-3 h2::after,
.search-box button:hover,
.single-blog .blog-date,
.tag-menu ul li a:hover,
.newsletter-box button,
.blog-bg .link:hover,
.blog-bg::after,
.dark-btn:hover,
.team-hover,
.color-btn,
#scrollUp {
    background-color: #E62E39;
}
.header-area.transparent-header .mainmenu ul li.active > a,
.header-area.transparent-header .mainmenu ul li:hover > a,
.mainmenu nav > ul > li.active > a.active::before,
.single-team.style-2 .team-hover .team-info,
.mainmenu ul li.has-child:hover > a:after,
.blog-full-post .blog-info p span i,
.single-sidebar-menu ul li a:hover,
.breadcrumb-area .breadcrumb li,
.mainmenu ul li:hover > a,
.mainmenu ul li.active > a,
.author-comment:hover h5 a,
.single-contact-info h3 i,
.footer-social li a:hover,
.single-service:hover h4,
.blog-content h4 a:hover,
.blog-content .info li i,
.single-contact-info a,
.social ul li a:hover,
.price-plan-info h1,
.footer-copyright a,
.eror-area h2 span,
.text-link:hover,
.text-link:focus,
.client-info h4,
.single-box i,
.single-team,
span.color {
    color: #E62E39;
}
.logo a:focus, .text-link:focus { background-color: transparent; }

.slider-area-2.owl-carousel .owl-controls .owl-dots .owl-dot.active,
.slider-area.owl-carousel .owl-controls .owl-dots .owl-dot.active,
.slider-area-2.owl-carousel .owl-controls .owl-nav div:hover,
.slider-area.owl-carousel .owl-controls .owl-nav div:hover,
.single-team.style-2 .team-hover .social-link a:hover,
.toolbar-bottom ul li.current a,
.toolbar-bottom ul li a:hover,
.single-service.style-2:hover,
.single-team:hover .team-bg,
input[type="email"]:focus,
input[type="text"]:focus,
.search-box button:hover,
.tag-menu ul li a:hover,
textarea:focus,
blockquote {
    border-color: #E62E39;
}
.modal-header.breadcrumb-bg-1 {
    background-size: cover;
}
.modal-header .modal-title {
    text-align: center;
    color: #fff;
    font-size: 30px;
}
.close {
    color: #fff;
    opacity: 0.6;
}
/*************************
modal
*************************/
.service-modal {
    background-position: center center;
    background-size: cover;
    border: 2px solid #efefef;
    height: 100px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.modal-body {
    padding: 15px 25px;
}
.modal-body h3 {
    color: #3e3e3e;
    margin: 20px 0;
}
.modal-body h4 {
    margin: 25px 0 20px;
}
.modal-header h5.modal-title {
    font-size: 20px;
}
/*************************
services
*************************/
.services-list {
    padding-left: 30px;
}
.services-list li {
    list-style-type: square;
    margin-bottom: 10px;
}
.services-list li:last-child {
    margin-bottom: 0px;
}
.mfp-bg {
    z-index: 9999 !important;
}
.mfp-wrap {
    z-index: 999999 !important;
}
.modal-body .img {
    display: inline-block;
}
.image-pop img {
    border: 1px solid #e6e6e6;
    margin: 10px;
    cursor: pointer;
}
/*************************
icomoon
*************************/
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?nmxsw5');
  src:  url('../fonts/icomoon.eot?nmxsw5#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?nmxsw5') format('truetype'),
    url('../fonts/icomoon.woff?nmxsw5') format('woff'),
    url('../fonts/icomoon.svg?nmxsw5#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-int:before {
  content: "\e900";
}
#cotizacion-tableta {
    display: none;
}
.select2-container--default .select2-selection--single {
    height: auto !important;
    border-radius: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-style: italic;
    font-size: 12px;
    color: #bababa !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
}
.jconfirm.jconfirm-white .jconfirm-box {
    margin-top: 70% !important;
}
.btn {
    border-radius: 0;
}
.modal-footer {
    text-align: left;
}
.form-messege {
    margin: 15px 0;
}
a:focus {
    background-color: #D2242E;
    color: #fff;
}
.work-bg-style-2.no-overlay:after {
    background: transparent;
}