html {
    font-size: 10px;
    margin: 0;
    padding: 0;
    width: 100%;
}

* {
    outline: none;
}

.container {
    max-width: 126.4rem;
}

.overxhidden {
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.underline {
    position: relative;
    display: inline-block;
}

.underline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: .2rem;
    bottom: -.2rem;
    left: 0;
    background-color: #1e1616;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.underline:hover:before, .underline:focus:before, .underline.active:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.trans-3 {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}

b, strong {
    font-weight: bold;
}

body {
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #272828;
    position: relative;
    overflow-x: hidden;
    height: 100%;
    line-height: 1.5;
    padding-top: 7.4rem;
}

.btn-one {
    padding: 1.5rem 8rem;
    border: 0;
    color: #FFF9F9 !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.6rem;
    background: #BB0831;
}

.btn-one:hover {
    background: #890624;
}

.btn-two {
    padding: .2rem 2rem;
    border: 0;
    color: #BB0831 !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.3rem;
    border: .2rem solid #BB0831;
}

.btn-two:hover {
    background: #890624;
    color: #FFF9F9 !important;
}

.thank {
    background: rgba(0, 0, 0,.8);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.thank .head {
    padding: .7rem;
    background-color: #000000;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thank .head .logo {
    max-width: 15.8rem;
    border: 2px solid #fff;
    margin-left: 2rem;
}

.thank .head .close {
    width: 79px;
    height: 68px;
    border: solid 1px #ffffff;
    font-size: 5rem;
    color: rgba(255, 255, 255);
    font-weight: 100;
    font-family: initial;
    opacity: .5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thank .head .close:hover {
    opacity: 1;
}

.thank .content {
    max-width: 86rem;
    background: #ffcd00;
    width: 100%;
    margin: 0 2rem;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.5);
    -webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.5);
}

.thank .content .wrap-content {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 59rem;
    width: 100%;
    margin: 0 auto;
}

.thank .content .wrap-content .msg {
    margin: 3rem 0;
}

.thank .content .wrap-content .close-btn {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #272828;
    display: inline-block;
    color: #fff;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 500;
}

.thank .content .wrap-content .close-btn:hover {
    background: #000;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.29);
    -webkit-box-shadow: 0 2px 21px 0 rgba(0, 0, 0, 0.29);
}

.header.active {
    top: 0;
    background: #1e1616;
    position: fixed;
}

.header .navbar-brand {
    width: 158px;
}

.header .navbar-brand .small {
    display: none;
}

.header .navbar-toggler {
    border: 0;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    outline: none;
}

.header .navbar-toggler span {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    margin: 0 .2rem;
    background: #1e1616;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.header .navbar-toggler[aria-expanded="true"] {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.header .navbar-toggler[aria-expanded="true"] span {
    background: #c49902;
}

.header .navbar {
    background: none !important;
    padding: 0;
}

.header .navbar .menu {
    margin: 0;
}

.header .navbar .navbar-nav li {
    margin: 0 2rem;
}

.header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

.header .navbar .navbar-nav li a {
    color: #252527;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.5rem;
    padding: 2rem 0;
    display: flex;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    text-decoration: none;
    border-top: .6rem solid transparent;
    min-height: 10rem;
    align-items: center;
}

.header .navbar .navbar-nav li a:hover, .header .navbar .navbar-nav li.menu__item--current a {
    border-top: .6rem solid #ffcd00;
}

/* Graph */
.graph-container {
    position: relative;
    max-width: 48rem;
    margin-left: 8rem;
    margin-top: 2rem;
}

.graph-container .txt-circle {
    position: absolute;
    max-width: 37.5rem;
    float: left;
    width: 100%;
    margin-left: -8rem;
}

.graph-container .txt-circle .circle {
    position: relative;
    width: 18rem;
    height: 18rem;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.graph-container .txt-circle h1 {
    font-size: 3rem;
    font-weight: 800;
    position: absolute;
    top: 30%;
    left: 20%;
}

.graph-container .build {
    background: url('../images/cat-edificio.png') left top no-repeat;
    max-width: 20rem;
    width: 100%;
    height: 30rem;
    background-size: contain;
    -webkit-background-size: contain;
    float: right;
    position: relative;
}

.graph-container .build img {
    position: absolute;
    left: -2.9rem;
    bottom: 1.3rem;
}

.graph-container .graph-label {
    max-width: 30rem;
    position: relative;
    line-height: 1.2;
    margin-left: 4rem;
    margin-top: 2rem;
}

.graph-container .graph-label {
}

.graph-container .graph-label img {
    position: absolute;
    left: -3.2rem;
    top: 0;
}

.graph-container .graph-label .txt1 {
    font-size: 2.4rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.main-head {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e4b802+0,ffcd00+100 */
    background: rgb(228,184,2);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(228,184,2,1) 0%, rgba(255,205,0,1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(228,184,2,1) 0%,rgba(255,205,0,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(228,184,2,1) 0%,rgba(255,205,0,1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4b802', endColorstr='#ffcd00',GradientType=0 );
    /* IE6-9 */
    padding-top: 7rem;
    padding-bottom: 14rem;
    position: relative;
}

.main-head .icon-wifi {
    position: absolute;
    width: 18rem;
    height: 18rem;
    margin: 0 auto;
    background: #fff;
    border: .2rem solid #d9ae00;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 3;
    left: 0;
    right: 0;
    bottom: -8rem;
}

.main-head embed {
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1;
    width: 102%;
    margin: 0 -1%;
}

.form_loading {
    background: rgba(252, 252, 252, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.container.multiple {
    padding: 0;
    max-width: 90%;
    margin: 0;
}

.container.multiple:hover .repeat-row {
    opacity: .5;
}

.repeat-row {
    position: relative;
    transition:  opacity .3s ease;
    -webkit-transition:  opacity .3s ease;
    
}

.repeat-row:hover {
    opacity: 1 !important;
}

.head-form .add {
    position: absolute;
    width: 2.6rem;
    height: 2.6rem;
    line-height: 2.2rem;
    cursor: pointer;
    border: .2rem solid #272828;
    color: #272828;
    text-align: center;
    font-weight: bold;
    opacity: .3;
    top: 50%;
    margin-top: -1.5rem;
    right: -3rem;
}

.head-form .add:hover {
    opacity: 1;
}

.repeat-row.active .add {
    border-color: #bd3f3f;
    background: #bd3f3f;
    color: #fff;
    opacity: 1;
}

.repeat-row.active .add:hover {
    background: #bd3f3f;
    border-color: #bd3f3f;
}



.repeat-row.active .add .remove {
    display: block;
    font-size: 80%;
}

.repeat-row.active .add .plus {
    display: none;
}

.head-form .add .check, .head-form .add .remove {
    display: none;
}

.form_loading.active {
    visibility: visible;
    z-index: 9;
    opacity: 1;
}

.head-form {
    padding: 4.6rem;
    border-radius: 6px;
    background-color: #fcfcfc;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.head-form form {
    position: relative;
}

.head-form .wrap-submit {
    margin-top: 4rem;
}

.head-form h2 {
    color: #575757;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.4rem;
    margin: 0 0 3rem;
    text-align: center;
}

.head-form h4 {
    text-transform: uppercase;
    color: #aa8017;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.head-form label {
    font-weight: 500;
    color: #575757;
    position: relative;
    display: inline-block;
}

.head-form .form-check-label {
    width: 100px;
    cursor: pointer;
}

.head-form label .required {
    color: #d0021b;
}

.head-form .form-group {
    margin-bottom: 2rem;
}

.head-form .form-control {
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 #dedede;
    height: 4rem !important;
    font-size: 1.4rem;
    padding: 0 1.8rem;
    border: 0;
    border-bottom: .3rem solid #ababab;
}

.head-form .form-control:focus {
    border-bottom-color: #ffcd00;
}

.head-form .btn {
    padding: .5rem 5rem;
    border: 0;
    border-radius: 3px;
    background-color: #272828;
    box-shadow: 0 2px 4px 0 #dedede;
    -webkit-box-shadow: 0 2px 4px 0 #dedede;
    font-size: 1.8rem;
    outline: none !important;
}

.head-form .btn img {
    position: relative;
    left: 0rem;
}

.head-form .btn:hover img {
    left: 1rem;
}

.head-form .etapa {
    color: #9c9b9b;
    font-size: 1.4rem;
    padding-top: 1rem;
}

.form-group input[type='radio'] {
    visibility: hidden;
    margin-right: 3rem;
    position: relative;
}

.form-group input[type='radio'] + i {
    content: '';
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    visibility: visible;
    background: #ffcd00;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    border: 4px solid transparent;
}

.form-group input[type='radio']:checked + i {
    visibility: visible;
    background: #252527;
    border-color: #ffcd00;
}

.head-form .btn:hover {
    background-color: #000000 !important;
}

#form_modelo {
    display: none;
}
.desc-modelo{
    font-size:1.5rem;
    color:#9c9b9b;
    margin-bottom:2rem;
}
.form-tabs {
    display: flex;
    margin-bottom: 3rem;
    margin-left: -4.5rem;
    margin-right: -4.5rem;
}

.form-tabs .ftab {
    color: #9c9b9b;
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem 1rem;
    flex: 1;
    border: solid 1px #eeeeee;
}

.form-tabs .ftab.active {
    background: #ffcd00;
    color: #252527;
    z-index: 2;
}

.form-tabs .ftab.servicio.active {
    border-left: 4px solid #252527;
}

.form-tabs .ftab.servicio.active:before {
    content: '';
    display: block;
    width: 5rem;
    height: 100%;
    background: #ffcd00;
    transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    position: absolute;
    top: 0;
    right: -2.2rem;
}

.form-tabs .ftab.equipo.active {
    border-right: 4px solid #252527;
}

.form-tabs .ftab.equipo.active:before {
    content: '';
    display: block;
    width: 5rem;
    height: 100%;
    background: #ffcd00;
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    position: absolute;
    top: 0;
    left: -2.2rem;
}

.em-services {
    margin-top: 9rem;
}

.em-services .head-title {
    margin: 36px 0;
}

.em-services .head-title h2 {
    font-size: 3.6rem;
    text-transform: uppercase;
    font-weight: 400;
}

.em-services .head-title h2 strong {
    font-weight: 600;
}

.em-services .block {
    background: #ffcd00;
    padding: 6rem 0;
    background-color: #ffcd00;
    box-shadow: 6px 8px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 6px 8px 10px 0 rgba(0, 0, 0, 0.1);
    border-top: .5rem solid rgba(0,0,0,.23);
}

.em-services .block .container {
    max-width: 110rem;
    margin: 0 auto;
}

.em-services .block .box {
    padding: 0 2rem
}

.em-services .block .box .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.em-services .block .box .icon img {
    height: 70%;
}

.em-services .block .box .title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 2rem 0;
}

.em-services .block .box .desc {
    line-height: 1.3;
}

.maintenance {
    margin-top: 18.4rem;
}

.maintenance .wrap-img {
    padding: 4rem 0 6rem;
    border-top: .5rem solid rgba(0,0,0,.23);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    background-color: white;
}

.maintenance .head-title h2 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 3rem;
}

.maintenance .head-title .desc {
    max-width: 85rem;
    margin: 0 auto;
}

.maintenance .wrap-icon {
    display: inline-flex;
    width: 100%;
    margin-top: -12rem;
    top: -2rem;
    align-self: center;
    position: relative;
}

.maintenance .icon.first {
    position: relative;
    width: 18rem;
    height: 18rem;
    margin: 0 auto;
    background: #fff;
    border: .2rem solid #d9ae00;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
}

.maintenance .box {
    margin: 7rem 0;
}

.maintenance .box-c .box {
    margin-bottom: 2rem;
}

.maintenance .box .title {
    margin: 1.3rem 0;
    font-size: 2.8rem;
    font-weight: 800;
}

.maintenance .box-wrap {
    max-width: 99rem;
}

.cta {
    background-color: #ffcd00;
    padding: 4rem 0;
}

.cta .btn {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    background: #272828;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 1rem 8rem;
    text-transform: uppercase;
}

.cta .btn:hover {
    background: #000000;
}

.footer {
    padding: 2rem;
    color: #606060;
    font-size: 1.4rem;
    text-align: center;
}

.footer a {
    color: #272828;
    font-weight: bold;
}

@media (max-width: 1140px) {
    .graph-container .txt-circle h1 {
        font-size:2.2rem;
    }

    .graph-container .txt-circle {
        max-width: 28rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        overflow-x: hidden;
    }

    body {
        padding-top: 4.5rem;
    }

    .header .navbar .navbar-nav li a {
        border: 0;
    }

    .header .navbar .navbar-nav li a:hover, .header .navbar .navbar-nav li.menu__item--current a {
        border: 0;
        background: #ffcd00;
    }

    .header .navbar-brand {
        margin: 1rem 0;
        width: 120px;
    }

    .header .navbar .navbar-nav li {
        margin: 0;
    }

    .header .navbar .navbar-nav li a {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        font-size:8px;
    }

    .thank .content .wrap-content {
        padding: 3rem 8rem;
    }

    .thank .head .close {
        width: 5rem;
        height: 5rem;
    }
.head-form .add{
    position:relative;
    width:5rem;
    height:5rem;
    line-height:5rem;
    font-size:3rem;
    margin:0 auto;
    right:inherit;
    top:inherit;
}
.container.multiple{
    max-width:100%;
}
    .thank .content .wrap-content img {
        width: 150px !important;
    }

    .graph-container .graph-label .txt1 {
        font-size: 2.2rem;
    }

    .maintenance .head-title h2 {
        margin: 0 0 1rem 0;
        font-size: 2.5rem;
    }

    .maintenance .icon.first {
        width: 12rem;
        height: 12rem;
    }

    .maintenance .icon.first img {
        width: 50%;
    }

    .maintenance .box .icon img {
        width: 10rem;
    }

    .maintenance .box .title {
        font-size: 2.3rem;
    }

    .maintenance .box .desc {
        font-size: 1.6rem;
    }

    .head-form {
        padding: 2rem 1rem;
    }

    .head-form h2 {
        font-size: 2rem;
        margin: 0 0 1.5rem 0;
    }

    .head-form .form-group {
        margin-bottom: 3rem;
    }

    .head-form .btn {
        padding: .5rem 2rem;
        font-size: 1.6rem;
    }

    .main-head .icon-wifi {
        width: 12rem;
        height: 12rem;
        bottom: -5rem;
    }

    .main-head .icon-wifi img {
        width: 50%;
    }

    .form-tabs .ftab {
        padding: 1rem;
    }

    .form-tabs {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .em-services {
        margin-top: 4rem;
    }

    .em-services .head-title h2 {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .em-services .head-title .desc br {
        display: none;
    }

    .em-services .block .box {
        margin: 0 auto 5rem;
        max-width: 30rem;
    }

    .em-services .block .box .title {
        font-size: 2.3rem;
        margin: 1rem 0
    }

    .em-services .block .box .icon img {
        width: 10rem !important;
    }

    .em-services .block .box .desc {
        font-size: 1.6rem;
    }

    .maintenance .box-wrap {
        padding: 4rem 0
    }

    .maintenance .box {
        margin: 3rem auto !important;
        padding: 0 1.5rem;
        max-width: 30rem;
    }

    .header .navbar .navbar-nav li a {
        min-height: inherit;
    }

    .graph-container {
        margin: -2rem 0 5rem 3rem !important;
    }

    .graph-container .txt-circle {
        margin-left: -9.5rem;
        max-width: 29rem;
    }

    .graph-container .txt-circle h1 {
        font-size: 2rem;
    }

    .graph-container .txt-circle .circle {
        width: 15rem;
        height: 15rem;
    }

    .graph-container .build {
        max-width: 11rem;
        height: 17rem;
    }

    .graph-container .build img {
        width: 40px;
        left: -2rem;
    }

    .cta .btn {
        font-size: 1.8rem;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .footer a {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .form-tabs .ftab {
        font-size:2rem;
    }
}
