/*
    resilen.cl
    main.css
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,600,800&display=swap');

/* structure */
body {
    font-size: 18px;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

img {
    max-width: 100%;
    margin-bottom: 15px;
}

.btn {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

/* global */
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-weight: 300;
}

h1, .h1 {
    font-size: 1.8em;
    line-height: 1em;
}

h2 {
    font-size: 1.8em;
    line-height: 1em;
}

h3 {
    font-size: 1.4em;
    line-height: 1em;
}

h4 {
    font-size: 1.2em;
    line-height: 1em;
}

h5, .h5 {
    font-size: 1.2em;
    line-height: 1em;
}

h6, .h6 {
    font-size: 1.1em;
    line-height: 1em;
}

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 2.4em;
        line-height: 1em;
    }

    h2 {
        font-size: 2.1em;
        line-height: 1em;
    }

    h3 {
        font-size: 1.7em;
        line-height: 1em;
    }

    h4 {
        font-size: 1.4em;
        line-height: 1em;
    }

    h5, .h5 {
        font-size: 1.2em;
        line-height: 1em;
    }

    h6, .h6 {
        font-size: 1.1em;
        line-height: 1em;
    }    
}

/* input */
.form-control {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    -webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.35);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
                 -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
                    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition-duration: .5s;
}

.form-control:focus {
    border-color: #424a52;
    box-shadow: none;
}

textarea.form-control {
    resize: none;
}

/* a */
a {
    color: black;
    text-decoration: none;
}

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

/* equal height columns */
@media (min-width: 992px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
    }
}

/* header */
header {
    
}

/* header-navbar */
#header-navbar {
    background-color: white;
    border: none;
    margin: 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

#header-navbar.pinned {
    position: fixed;
    height: 60px;
}

@media (min-width: 992px) { 
    #header-navbar {
    }
}

#header-navbar .navbar-header {
    background-color: black;
}

#header-navbar .navbar-header .navbar-brand {
    display: inline-block;
    float: none;
}

#header-navbar .navbar-header .navbar-brand img {
    height: 30px;
    margin: 0;
}

@media (min-width: 992px) {
    #header-navbar .navbar-header {
        height: 100px;
        margin: 0;
    }
    
    #header-navbar .navbar-header::before {
        content: '';
        display: block;
        position: absolute;
        background-color: black;
        height: 100px;
        width: 50%;
        left: 0;
        z-index: -1;
    }
    
    #header-navbar .navbar-header .navbar-brand {
        height: 100px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    #header-navbar .navbar-header .navbar-brand img {
        height: 40px;
    }
    
    #header-navbar.pinned .navbar-header {
        height: 60px;
    }
    
    #header-navbar.pinned .navbar-header::before {
        height: 60px;
    }
    
    #header-navbar.pinned .navbar-header .navbar-brand {
        height: 60px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    #header-navbar.pinned .navbar-header .navbar-brand img {
        height: 30px;
    }
}

#main-navbar {
    background-color: white;
}

#main-navbar .nav li {
}

#main-navbar .nav li > a {
    line-height: 20px;
    font-size: 16px;
    color: black;
}

#main-navbar .nav li > a::after {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    background-color: transparent;
    margin-top: -5px;
    left: 0;
    right: 0;
    position: absolute;
}

#main-navbar .nav li > a:hover {
}

#main-navbar .nav li.active > a::after,
#main-navbar .nav li > a:hover::after {
    background-color: #d0000a;
}



@media (min-width: 992px) {
    #main-navbar .nav li > a {
        padding: 40px 10px 40px 10px;
        line-height: 20px;
    }

    #main-navbar .nav li > a:hover {
    }
    
    #header-navbar.pinned #main-navbar .nav li > a {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* top-wrapper */
#top-wrapper {
    
}

.top-lead {
    position: relative;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 225px 0 25px;
    z-index: 1;
}

@media (min-width: 992px) {
    .top-lead {
        padding: 425px 0 75px;
    }
}

.top-lead::after {
    background: rgba(38,38,38,0.2);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.top-lead .top-title {
    text-align: left;
}

.top-lead .top-title .title-h {
    color: #ffffff;
    font-size: 44px;
    line-height: 46px;
    font-weight: 300;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px rgba(150, 150, 150, 1);
}

.top-lead .top-title .title-h::after {
    content: '';
    display: block;
    width: 30%;
    height: 10px;
    background-color: #d0000a;
    margin-top: -10px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

/* main-wrapper */
#main-wrapper {
    
}

/* section-wrapper */
.section-wrapper {
    padding-top: 65px;
    padding-bottom: 60px;
}

/* section-title */
.section-title {
    padding: 55px 5px;
    text-align: center;
}

.section-title .title-h {
    color: #4c4c4c;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2.4em;
    line-height: 1.05em;
}

.section-title .title-h > small {
    display: block;
    text-transform: none;
    font-weight: 300;
    color: white;
    color: #29b6ad;
}

.block-wrapper {
    
}

.block-wrapper .block-title {
    
}

.block-wrapper .block-title .title-h {
    font-weight: 600;
}

.block-wrapper .block-title .title-h > small {
    display: block;
    color: #d0000a;
    font-size: 0.4em;
    text-transform: uppercase;    
}

/* bottom-wrapper */
#bottom-wrapper {
    
}

/* footer */
footer {
    
}

footer .footer-stick .btn-stick-ws {
    position: fixed;
    bottom: 0;
    left: auto;
    right: 5%;
    display: block;
    background-color: #1ebea5;
    font-size: 16px;
    height: 2.5em;
    width: auto;
    padding: 0.3em 1.1em;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    -webkit-box-shadow: 0px -0.5px 5px 0px rgba(35,47,60,1);
       -moz-box-shadow: 0px -0.5px 5px 0px rgba(35,47,60,1);
            box-shadow: 0px -0.5px 5px 0px rgba(35,47,60,1);
    z-index: 9999;
}

footer .footer-stick .btn-stick-ws .btn-icon {
    display: inline-block;
    height: 30px;
    width: 30px;
    background-image: url(../images/footer/whatsapp.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

footer .footer-top {
    background-color: #c1c1c1;
    padding-top: 35px;
}

footer .footer-middle {
    background-color: #c1c1c1;
    padding-top: 35px;
    padding-bottom: 35px;
}

footer .footer-middle .title-footer {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #383838;
}

footer .footer-middle .title-footer > span {
    display: inline-block;
    color: #383838;
}

footer .footer-middle ul {
    line-height: 1.2;
    padding: 0;
    list-style: none;
}

footer .footer-middle ul li a {
    color: #ffffff;
    font-size: 0.8em;
}

footer .footer-middle ul li a:hover {
    color: #ffffff;
}

footer .footer-middle .footer-social {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

footer .footer-middle .footer-social li {
    display: inline-block;
}

footer .footer-middle .footer-social li a {
    font-size: 20px;
    line-height: 2;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 10px 10px 0 0;
    text-align: center;
    border: 1px solid #383838;
    border-radius: 100%;
    color: #383838;
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}

footer .footer-middle .footer-social li a:hover {
    color: white;
    border: 1px solid #383838;
    background-color: #383838;
}

footer .footer-bottom {
    font-size: 14px;
    padding: 5px;
    color: #bababa;
    background-color: #222222;
}

footer .footer-bottom a {
    color: #383838;
}

/* message-box */
.message-box {
    padding: 20px 0;
    background: transparent;
}

.message-box .alert {
    font-size: 0.8em;
}

.message-box label {
    color: #222222;
}

.message-box input,
.message-box select,
.message-box textarea {
    margin-bottom: 30px;
    background: #dddddd;
    border: 0;
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
    padding: 0 10px;
    height: 40px;
    width: 100%;
    outline: none;
    -webkit-transition: all 0.30s ease-in-out;
       -moz-transition: all 0.30s ease-in-out;
        -ms-transition: all 0.30s ease-in-out;
         -o-transition: all 0.30s ease-in-out;
}

.message-box input:focus,
.message-box select:focus,
.message-box textarea:focus {
    background: #333333;
    color: #dddddd;
            box-shadow: none;
       -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.message-box textarea {
    padding: 10px 10px 10px 20px;
    resize: vertical;
    height: 90px;
}
 
.message-box input:focus,
.message-box select:focus,
.message-box textarea:focus {
    box-shadow: none;
    outline: none;
}

.message-box .btn {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

.message-box .submit-btn {
    margin-top: 30px;
    background: #d0000a none repeat scroll 0 0;
    border: medium none;
    color: white;
    font-size: 13px;
    height: 35px;
    padding: 0 50px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    position: relative;
}

.message-box .submit-btn::before {
    background: black none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: all 0.5s ease 0s;
    width: 0;
    z-index: 9999;
}

/* contact-box */
.contact-box {
    display: block;
    width: 100%;
    text-align: center;
    margin: 35px 5px 10px 5px;
}

.contact-box .bullet {
    display: block;
    padding: 0;
}

.contact-box .bullet i {
    font-size: 1.8em;
    color: #d0000a;
}

.contact-box h3 {
    font-weight: 300;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #d0000a;
}

/* features-well */
#features-well {
    margin-top: 65px;
    font-size: 14px;
}

#features-well .feature-well {
    margin-bottom: 50px;
    min-height: 100px;
}

#features-well .feature-well .feature-media {
    display: block;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    #features-well .feature-well .feature-media {
        float: right;
        margin-left: 35px;
    }
}

#features-well .feature-well .feature-media .feature-img {
    display: block;
    width: 90px;
    height: 90px;
    padding: 20px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    overflow: hidden;
    background-color: black;
}

#features-well .feature-well:hover .feature-media .feature-img {
    background-color: #d0000a;
}

#features-well .feature-well .feature-info {

}

@media (min-width: 992px) {
    #features-well .feature-well .feature-info {
        padding-right: 125px;
    }
}

#features-well .feature-well .feature-info .feature-name {
    margin-bottom: 18px;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    #features-well .feature-well .feature-info .feature-name {
        font-size: 24px;
        text-align: right;    
    }
}

#features-well .feature-well .feature-info .feature-caption {
    font-weight: 300;
    text-align: justify;
}

/* counter */
.counter {
    color: white;
    font-size: 18px;
    margin-bottom: 35px;
    text-align: center;
}

.counter .pluss {
    text-align: center;
    font-weight: 300;
    font-size: 2.2em;
}

.counter .number {
    display: inline-block;
    text-align: center;
    font-weight: 500;
    font-size: 3.0em;
}

.counter .caption {
    display: block;
    text-align: center;
}

/* well-services */
.well-services {
}

.well-services .service-item {
    display: block;
    width: 100%;
    min-height: 220px;
    background-color: #cdcdcd;
    position: relative; 
    margin-top: 75px;
    margin-bottom: 150px;
    text-align: center;
}

@media (min-width: 992px) {
    .well-services .service-item {
        max-height: 220px;
    }
}

.well-services .service-item .service-image {
    position: relative;
    display: inline-block;
    top: -50px;
    bottom: -50px;
    width: 320px;
    height: 320px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    overflow: hidden;
    border: 10px solid #d0000a;
    padding: 10px;
}

.well-services .service-item:nth-child(2n) .service-image {
}

@media (min-width: 992px) {
    .well-services .service-item .service-image {
        float: left;
    }
    
    .well-services .service-item:nth-child(2n) .service-image {
        float: right;
    }
}

.well-services .service-item .service-image img {
    display: block;
    height: 280px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.well-services .service-item .service-body {  
    padding: 25px 0 25px 0;
}

.well-services .service-item:nth-child(2n) .service-body {
    
}

@media (min-width: 992px) {
    .well-services .service-item .service-body {
        float: right;
        text-align: left;
        padding: 65px 0 65px 0;
    }
    
    .well-services .service-item:nth-child(2n) .service-body {
        float: left;
        text-align: right;
    }
}

.well-services .service-item .service-body .service-heading {
    color: #d0000a;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* works-albums */
.works-albums {
    margin-bottom: 35px; 
    text-align: center;
}

.works-albums label > input {
    display: none;
}

.works-albums .btn {
    border-radius: 1px;
    border-width: 0;
    padding: 8px 25px;
    -webkit-transition: color 0.5s, border-color 0.5s, background-color 0.5s;
            transition: color 0.5s, border-color 0.5s, background-color 0.5s;
}

.works-albums .btn-category {
    color: white;
    background-color: #d0000a;
    border-color: #d0000a;
    margin-bottom: 5px;
}

.works-albums .btn-category.btn-active {
    background-color: black;
    border-color: black;
}

#works-well {
    opacity: 0;
}

#works-well .work-item {
    display: inline-block;
}


#works-well .work-item .work-img {
    object-fit: cover;
}

/* home */
#home-a {
    min-height: 100vh;
}

#home-a .home-a-left {
    padding: 15vh 15px 15vh 15px;
}

@media (min-width: 992px) {
    #home-a .home-a-left {
        padding: 15vh 60px 15vh 15px;
    }    
}

#home-a .home-a-right {
    display: block;
    min-height: 100vh;
    background-image: url(../images/home/inicio-a.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#home-b {
    display: block;
    padding-top: 130px;
    padding-bottom: 130px;
    width: 100%;
    background-color: white;
}

#home-b .block-wrapper {
    position: relative;
    padding-left: 65px;
    padding-right: 65px;
}

#home-b .block-wrapper::before,
#home-b .block-wrapper::after {
    font-size: 12em;
    color: #d0000a;
    display: block;
    position: absolute;
    top: 5%;
}

#home-b .block-wrapper::before {
    content: '\201C';
    left: 0px;
}

#home-b .block-wrapper::after {
    content: '\201D';
    right: 0px;
}

#home-b h1 {
    font-size: 1.6em;
    line-height: 1.1;
}

#home-b h2 {
    font-size: 1.5em;
    line-height: 1.1;
}

#home-c {
    display: block;
    width: 100%;
    min-height: 20vh;
    background-color: white;
    background-image: url(../images/home/inicio-c.jpg); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 95px;
    padding-bottom: 95px;
}

@media (min-width: 992px) {
    #home-c {
        min-height: 40vh;
        background-size: cover;
    }
}

#home-c .block-title {
    text-align: left;
    color: white;
    margin-bottom: 50px;
}

#home-c .block-title .title-h small {
    color: white;
}

/* about */
#about-a {
    
}

/* service */
#service-a {
    
}

#service-b {
}

#service-b .section-wrapper {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}
