::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #838383;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
    background-color: #999999;
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 4px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Ubuntu", sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.navbar {
    position: fixed;
    background-color: transparent;
    width: 100%;
    padding: 30px 0;
    top: 0;
    z-index: 999;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}

.inner-width {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
}

.navbar .inner-width {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo {
    width: 150px;
    height: 80px;
    background-image: url(../img/logo-while.png);
    background-size: contain;
}

.menu-toggler {
    background: none;
    width: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
    z-index: 999;
    display: none;
}

.menu-toggler span {
    display: block;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    position: relative;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}

.navbar-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: 30px;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

.navbar-menu a:hover {
    color: #009BF9 !important;
}

.sticky {
    background-color: #fff;
    padding: 18px 0;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body.dark .sticky {
    background-color: #1a2734;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.sticky .logo {
    background-image: url(../img/logo_lan.png);
    border-radius: 5px;
}

body.dark .sticky .logo {
    background-image: url(../img/logo-while.png);
    border-radius: 5px;
}

.sticky .navbar-menu a {
    color: #000;
}

body.dark .sticky .navbar-menu a {
    color: #fff;
}

.sticky .menu-toggler span {
    background-color: #fff;
}

.switch {
    background-color: #343d5b;
    border-radius: 1000px;
    border: none;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    outline: none;
}

.switch::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    background: #f1f1f1;
    top: 0;
    left: 0;
    right: unset;
    border-radius: 100px;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.switch.active {
    background: orange;
    color: #000;
}

.switch.active::after {
    right: 0;
    left: unset;
}

.switch span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    background: none;
    color: #fff;
}


/*Cambiar de color*/

body {
    background: #15202B;
}

body.dark {
    background: #15202B;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

#home {
    height: 100vh;
    min-height: 450px;
    background: url(../img/fon-4.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

#home .inner-width {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

#home .content {
    width: 100%;
    color: #fff;
}

#home .content h1 {
    font-size: 60px;
    margin-bottom: 60px;
    font-family: "Verdana";
}

#home .content h1::after {
    content: "Proyectos de Automaticación";
    color: #000000;
    -webkit-animation: animacion 20s linear infinite;
    animation: animacion 10s linear infinite;
}

@-webkit-keyframes animacion {
    25% {
        content: "Instrumentación Industrial";
    }
    50% {
        content: "Procesos y Control";
    }
    75% {
        content: "Mantenimiento";
    }
}

@keyframes animacion {
    25% {
        content: "Instrumentación Industrial";
    }
    50% {
        content: "Procesos y Control";
    }
    75% {
        content: "Mantenimiento";
    }
}

.sm a {
    font-size: 35px;
    margin: 0 10px;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

.sm .fa-youtube {
    color: red;
}

.sm .fa-whatsapp {
    color: green;
    background-color: #d4d0d0;
}

.sm .fa-facebook-f {
    color: blue;
    background-color: #d4d0d0;
    border-radius: 2px;
}

.sm a:hover {
    color: #009BF9;
}

#home .buttons {
    margin-top: 60px;
}

#home .buttons a {
    display: inline-block;
    margin: 15px 30px;
    background-color: #009BF9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    width: 180px;
    border: 1px solid #009BF9;
    padding: 14px 0;
    border-radius: 6px;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

#home .buttons a:hover {
    background-color: transparent;
    color: #000;
}


/*=====================================================
acerca de
=======================================================*/

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

body.dark section {
    background-color: #15202B;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    font-size: 26px;
    padding-bottom: 20px;
    color: #15202B;
}

body.dark .section-title {
    color: #fff;
}

.section-title::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #009BF9;
    bottom: 0;
    left: calc(50% - 40px);
}

.section-title::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 10px;
    background-color: #009BF9;
    border: 4px solid #15202B;
    left: calc(50% - 12px);
    bottom: -7px;
}

body.dark .section-title::after {
    border: 4px solid #fff;
}

.about-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-pic {
    width: 350px;
    height: 400px;
    border-radius: 50%;
    margin-right: 100px;
    box-shadow: rgba(15, 15, 15, 0.75);
}

.about-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.about-text h2 {
    color: #000;
}

body.dark .about-text h2 {
    color: #009BF9;
}

.about-text h3 {
    margin: 10px 0;
    color: #808080;
    font-size: 16px;
}

body.dark .about-text h3 {
    color: #6ec1e4;
}

.about-text h3 span:nth-child(1):after,
.about-text h3 span:nth-child(2):after {
    content: "";
    height: 6px;
    width: 6px;
    background-color: #808080;
    display: inline-block;
    border-radius: 50%;
    margin: 0 14px;
}

body.dark .about-text h3 span:nth-child(1):after,
body.dark .about-text h3 span:nth-child(2):after {
    background-color: #6ec1e4;
}

.about-text p {
    font-size: 17px;
    text-align: justify;
    line-height: 26px;
    margin-top: 20px;
    color: #697477;
}

body.dark .about-text p {
    color: #fff;
}

.skills {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.skill {
    width: calc(50% - 20px);
    margin: 15px 0;
}

.skill-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.skill-info span {
    color: #000;
}

body.dark .skill-info span {
    color: #fff;
}

.skill-bar {
    height: 6px;
    background-color: #ddd;
    margin-top: 14px;
    position: relative;
    border-radius: 4px;
}

.skill-bar::after {
    content: "";
    position: absolute;
    height: 6px;
    background-color: #009BF9;
    bottom: 0;
    border-radius: 4px;
}

.html:after {
    width: 90%;
}

section.dark {
    color: #2a3b47;
}

.services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.service {
    width: calc(33% - 20px);
    border: 1px solid #fff;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(228, 228, 228, 0.75);
    box-shadow: 0px 0px 10px 1px rgba(228, 228, 228, 0.75);
    border-radius: 6px;
    margin: 20px 0;
    padding: 40px 20px;
    color: #000;
    cursor: pointer;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}

body.dark .service {
    border: 1px solid #009BF9;
    background: #15202B;
    color: #fff;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(26, 39, 52, 0.75);
    box-shadow: 0px 0px 10px 1px rgba(26, 39, 52, 0.75);
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.service .icon {
    color: #009BF9;
    font-size: 40px;
    margin-bottom: 20px;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}

.service h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.service h4:hover {
    color: #fff;
}

.service p {
    color: #697477;
}

body.dark .service p {
    color: #fff;
}

.service:hover {
    background-color: #abdbf1;
}

body.dark .service:hover {
    background-color: #0677ac;
}

.service:hover .icon {
    color: #fff;
}


/*===================== TIME LINE ===================*/

.time-line,
.works {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -150px;
}

.block {
    width: calc(50% - 20px);
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 15px;
    margin: 10px 0;
    padding: 30px;
    position: relative;
}

body.dark .block {
    background-color: #1a2734;
    border: 1px solid #1a2734;
}

.block::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 120%;
    background-color: #000;
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

body.dark .block::before {
    background-color: #fff;
}

.block::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #2a3b47;
    left: -28px;
    top: 30px;
    border-radius: 50%;
}

body.dark .block::after {
    background-color: #009BF9;
}

.block h3 {
    color: #2a3b47;
    font-size: 16px;
    margin: 10px 0;
}

body.dark .block h3 {
    color: #fff;
}

.block h4 {
    color: #009BF9;
}

.block p {
    font-size: 15px;
    color: #697477;
}

body.dark .block p {
    color: #7a949b;
}

.work {
    width: calc(33% - 10px);
    overflow: hidden;
    border-radius: 6px;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
}

.work img {
    width: 100%;
    height: 100%;
    -webkit-transition: .4s linear;
    transition: .4s linear;
}

.work::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #48dbfbcc;
    -webkit-transition: .2s linear;
    transition: .2s linear;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    box-shadow: rgba(0, 0, 0, 0.6);
}

.work .info {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 40px;
    color: #fff;
    -webkit-transition: .4s linear;
    transition: .4s linear;
    opacity: 0;
}

.work:hover img {
    -webkit-transform: scale(1.6) rotate(25deg);
    transform: scale(1.6) rotate(25deg);
}

.work:hover::before,
.work:hover .info {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/*
================ CONTACTENOS ====================
*/

.contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info .item {
    width: calc(33% - 20px);
    height: 160px;
    background-color: #fff;
    color: #2a3b47;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: .3s linear;
    transition: .3s linear;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(230, 229, 229, 0.8);
    box-shadow: 0px 0px 5px 5px rgba(230, 229, 229, 0.8);
}

body.dark .contact-info .item {
    background-color: #1a2734;
    color: #fff;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(26, 39, 52, 0.1);
    box-shadow: 0px 0px 1px 1px rgba(26, 39, 52, 0.1);
}

.contact-info .item:hover {
    background-color: #009BF9;
    color: #fff;
}

body.dark .contact-info .item:hover {
    color: #009BF9;
}

.contact-info i {
    display: block;
    font-size: 40px;
    line-height: 120px;
    height: 100px;
}

.contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 50px;
    margin: 10px 0;
    background-color: #fff;
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 4px;
    color: #000;
    border: 1px solid #cfcfd1;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
    background-color: #1a2734;
    color: #fff;
    border: 1px solid #1a2734;
}

.contact-form .btn {
    width: 180px;
    background-color: transparent;
    color: #2a3b47;
    font-size: 16px;
    border: 1px solid #009BF9;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    -webkit-transition: .3s linear;
    transition: .3s linear;
}

body.dark .contact-form .btn {
    border: 1px solid #009BF9;
}

.contact-form .btn:hover {
    background-color: #009BF9;
    color: #fff;
}

.nameZone,
.emailZone {
    max-width: calc(50% - 10px);
}

.messageZone {
    min-height: 200px;
    resize: vertical;
}


/*Footer*/

footer {
    color: #fff;
    background: url(../img/bg.jpg);
    padding: 80px 0;
    text-align: center;
}

.copyright {
    margin-bottom: 20px;
    font-size: 15px;
}

.copyright a {
    font-size: 16px;
    color: #009BF9;
    font-weight: 500;
}

.goTop {
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #009BF9;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    outline: none;
    display: none;
}


/*Media Querys*/

@media screen and (max-width: 980px) {
    .menu-toggler {
        display: block;
    }
    .navbar-menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-color: #1a2734;
        top: 0;
        right: -100%;
        max-width: 400px;
        padding: 80px 50px;
        -webkit-transition: .3s linear;
        transition: .3s linear;
    }
    .navbar-menu a {
        display: block;
        font-size: 30px;
        margin: 30px 0;
    }
    .sticky .navbar-menu {
        background-color: #1a2734;
    }
    .navbar-menu.active {
        right: 0;
    }
    .menu-toggler.active span:nth-child(1) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 4px;
    }
    .menu-toggler.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggler.active span:nth-child(3) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: 14px;
    }
    .inner-width {
        max-width: 800px;
    }
    .about-pic {
        margin: 0 auto 60px;
    }
    .about-text {
        text-align: center;
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }
    .service {
        width: calc(50% - 20px);
    }
    .block {
        width: calc(100% - 20px);
        margin-left: auto;
    }
    .work {
        width: calc(50% - 10px);
    }
    .contact-info .item {
        width: 100%;
        margin: 10px 0;
    }
}

@media screen and (max-width: 600px) {
    .inner-width {
        padding: 0 20px;
    }
    .skill {
        width: 100%;
    }
    .service {
        width: 100%;
    }
    .work {
        width: 100%;
    }
    .nameZone,
    .emailZone {
        max-width: 100%;
    }
}


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