@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@500;

700&family=Roboto:wght@300;500&display=swap
)
;
:root {
    --red: red;
    --green-mate: #AEAE49;
    --gray: #9B9B9B;
    --dark-gray: #404040;
    --white: #ffffff;
    --black: #1D2513;
}

body {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: var(--gray);
}

button:focus {
    outline: 0 dotted;
    outline: 2px auto var(--green-mate);
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--green-mate);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(174, 174, 71, 0.22);
}

a {
    color: var(--green-mate);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

a:hover {
    color: #a7a762;
    text-decoration: none;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1260px;
    }
}

/* botones y links */

a.btn.btn-primary-ortega,
button.btn.btn-primary-ortega {
    padding: 0.4em 1.8em;
    background-color: transparent;
    border-radius: 20px;
    border: solid 1px var(--green-mate) !important;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

a.btn.btn-primary-ortega:hover,
button.btn.btn-primary-ortega:hover {
    background-color: var(--black);
    text-decoration: none;
}

@media only screen and (min-width: 990px) {
    a.btn.btn-primary-ortega,
    button.btn.btn-primary-ortega {
        padding: 0.4em 2em;
        font-size: 1em;
    }
}

/* Fonts color */

.g-mate {
    color: var(--green-mate);
}

.white {
    color: var(--white);
}

.dark-gray {
    color: var(--dark-gray);
}

/* Eschema color */

.g-mate-bg {
    background-color: var(--green-mate);
}

.white-bg {
    background-color: var(--white);
}

.dark-gray-bg {
    background-color: var(--dark-gray);
}

/* PADDING AND SPACE */

.space {
    margin: 50px 0;
}

.p-50 {
    padding: 50px 0;
}

.p-100 {
    padding: 100px 0;
}

/* Title and subtitle */

p.subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1em;
    font-weight: bold;
    margin: 0;
}

h1,
h2.title {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 2.5em !important;
    text-transform: uppercase;
}

h1.great,
h2.title.great {
    font-size: 3em !important;
}

.text-bold {
    font-weight: bold;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

@media only screen and (min-width: 990px) {
    p.subtitle {
        font-size: 1.1em;
    }

    h1,
    h2.title {
        font-size: 4.2em;
    }

    h1.great,
    h2.title.great {
        font-size: 5.2em;
    }
}

.navbar {
    padding: 0 20px;
    background: linear-gradient(183.66deg, #2A331F 0%, #313131 100%);
    -webkit-backdrop-filter: blur(10.8731px);
    backdrop-filter: blur(10.8731px);
    opacity: 0.852;
}

.navbar ul.navbar-nav .nav-item .nav-link {
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 18px;
    border-bottom: solid 1px var(--gray);
    margin-bottom: 15px;
}

.navbar ul.navbar-nav .nav-item .nav-link span {
    color: var(--gray);
    font-size: 12px;
    font-weight: 300;
    display: block;
    margin: 0;
}

.navbar ul.navbar-nav .nav-item .nav-link.active,
.navbar ul.navbar-nav .nav-item .nav-link:active,
.navbar ul.navbar-nav .nav-item .nav-link:focus {
    background-color: #4a4949;
}

.navbar .header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.navbar .header-icon .icon {
    background-color: rgba(152, 152, 51, 0.2);
    border-radius: 50%;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.navbar .header-icon .icon img {
    width: 50%;
    height: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.navbar.navbar-light .navbar-toggler {
    border: solid 1px var(--gray);
}

@media only screen and (min-width: 990px) {
    .navbar ul.navbar-nav .nav-item {
        margin: 0 10px;
    }

    .navbar ul.navbar-nav .nav-item .nav-link {
        border-bottom: 0;
        margin-bottom: 0;
        padding: 0.5em 1em;
    }

    .navbar .header-icon {
        margin-left: auto;
    }
}

.popup-estudios-dropdown {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: -100%;
    top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    background-color: #3e3d3d;
    transition: all ease-in-out 0.3s;
    will-change: transform;
    z-index: 9999;
}

.popup-estudios-dropdown .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: grey !important;
}

.popup-estudios-dropdown .box {
    padding: 20px 0;
    border-bottom: solid 1px var(--gray);
}

.popup-estudios-dropdown.show-dropdown {
    left: 0;
}

@media only screen and (min-width: 990px) {
    .popup-estudios-dropdown {
        height: 60%;
        left: 0;
        top: -100%;
        padding: 0 5em;
    }

    .popup-estudios-dropdown.show-dropdown {
        top: 82px;
    }

    .popup-estudios-dropdown .box {
        border-bottom: 0;
    }

    .popup-estudios-dropdown .btn-close {
        display: none;
    }
}

.search-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
    transition: all ease-in-out 0.5s;
    will-change: transform;
    opacity: 0;
}

.search-form button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.search-form form {
    width: 100%;
    padding: 30px;
}

.search-form form input.form-control {
    border: solid 1px var(--white);
    background-color: transparent;
    font-size: 1em;
    padding: 1em 1.2em;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 20px 50px 0 rgba(255, 255, 255, 0.2);
}

.search-form form button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: 0 auto;
}

.search-form form button img {
    width: 20px;
}

@media only screen and (min-width: 620px) {
    .search-form form {
        width: 80%;
    }

    .search-form form input.form-control {
        font-size: 1.5em;
    }
}

@media only screen and (min-width: 1200px) {
    .search-form form {
        width: 60%;
    }

    .search-form form input.form-control {
        font-size: 1.8em;
        padding: 1.2em 1.5em;
    }

    .search-form form button {
        right: 50px;
    }

    .search-form form button img {
        width: 35px;
    }
}

.search-form.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    opacity: 1;
    transition: all ease-in-out 0.5s;
    z-index: 9999;
    -webkit-animation: scale-up-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: scale-up-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes scale-up-center {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.wsp_contact {
    position: fixed;
    width: 3.5em;
    height: 3.5em;
    bottom: 55px;
    right: 20px;
    color: #fff;
    border-radius: 50%;
    padding-top: 9px;
    text-align: center;
    z-index: 9999;
}

.wsp_contact img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

/* HOME PAGE STYLES */

/* video-sections */

section.videos {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-image: url("/assets/img/Header_banner@2x.svg");
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: -1px;
}

@media only screen and (min-width: 990px) {
    section.videos {
        min-height: 650px;
    }
}

section.videos.nosotros {
    background-image: url("/assets/img/nosotros_banner.svg");
    height: calc(100vh);
}

section.videos .contenedor-video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

section.videos .contenedor-video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
}

section.videos .contenedor-video::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width: 990px) {
    section.videos {
        min-height: 650px;
    }
}

@media only screen and (min-width: 1440px) {
    section.videos {
        min-height: 85vh;
    }
}

/* Services sections */

section.servicios .wrap-servicios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 5px;
    column-gap: 5px;
}

section.servicios .wrap-servicios .box-servicios {
    text-align: center;
    padding: 5px;
}

section.servicios .wrap-servicios .box-servicios .img-icon {
    width: 70px;
    height: 70px;
    background-color: #989833;
    border-radius: 20PX;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

section.servicios .wrap-servicios .box-servicios .img-icon img {
    width: 70%;
    height: 70%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

section.servicios .wrap-servicios .box-servicios .title {
    color: var(--white);
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}

section.servicios .wrap-servicios .box-servicios p {
    font-weight: 300;
    line-height: 28px;
    margin-top: 15px;
    display: none;
}

@media only screen and (min-width: 520px) {
    section.servicios .wrap-servicios {
        grid-template-columns: 1fr 1fr;
    }

    section.servicios .wrap-servicios .box-servicios p {
        display: block;
    }
}

@media only screen and (min-width: 990px) {
    section.servicios .wrap-servicios {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.full-scroll.footer {
    margin-bottom: -180px;
}

.full-scroll.footer .footer-banner {
    position: relative;
    height: 600px;
    z-index: -1;
}

.full-scroll.footer .footer-banner .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 150px 0 0;
}

.full-scroll.footer .footer-banner .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.full-scroll.footer .footer-banner .content {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    margin-top: -80px;
}

@media only screen and (min-width: 990px) {
    .full-scroll.footer .footer-banner {
        height: 700px;
    }

    .full-scroll.footer .footer-banner .image {
        border-radius: 0 300px 0 0;
    }
}

.history-slider {
    width: 100%;
    min-height: 600px;
    background-image: url("/assets/img/banners/Banner_Nosotros_Footer.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0 100px 0 0;
    padding: 50px 0;
    margin-bottom: -164px;
    overflow: hidden;
}

.history-slider .slider .item p.year-history {
    font-size: 3.5em;
    font-weight: bold;
}

.history-slider .slider .item .content p {
    font-weight: 300;
}

.history-slider .slider .item .content p.title {
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
}

.history-slider .slider .item .content p.title::after {
    content: "";
    width: 35%;
    height: 5px;
    background-color: var(--green-mate);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    border-radius: 2px;
}

.history-slider .slider .owl-nav {
    position: absolute;
    top: 0px;
    width: 40%;
    right: 0;
    text-align: left;
}

.history-slider .slider .owl-nav button {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
}

.history-slider .slider .owl-nav button:focus {
    outline: none;
}

.history-slider .slider .owl-nav button:hover {
    background-color: #3575C0;
}

.history-slider .slider .owl-nav button:hover span {
    color: #fff;
}

.history-slider .slider .owl-nav button span {
    font-size: 3em;
    color: #3575C0;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) {
    .history-slider .slider .item p.year-history {
        font-size: 4.2em;
    }

    .history-slider .slider .item .content {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 1000px) {
    .history-slider .slider .item p.year-history {
        font-size: 5.2em;
    }

    .history-slider .slider .item .content {
        padding-top: 90px;
    }

    .history-slider .slider .item .content p.title {
        font-size: 2em;
    }
}

@media only screen and (min-width: 1400px) {
    .history-slider .slider .item p.year-history {
        font-size: 6.2em;
    }

    .history-slider .slider .owl-nav {
        width: 75%;
        top: 20px;
    }
}

footer {
    overflow: hidden;
    border-radius: 100px 0 0 0;
}

footer img {
    margin: 20px 0;
}

footer .row .col-md-3:first-child p {
    font-size: 14px;
    margin: 0 0 5px;
}

footer h5 {
    font-weight: 500;
    margin-bottom: 20px;
}

footer p {
    margin: 0 0 10px;
}

footer a {
    color: var(--gray);
}

@media only screen and (min-width: 990px) {
    footer {
        border-radius: 170px 0 0 0;
    }
}

.contact-link {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.contact-link img {
    width: 15px;
    margin: 0 10px 0 0;
}

form input.form-control {
    border-radius: 25px;
}

.banner-interna {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 0 0 100px;
    overflow: hidden;
}

.banner-interna::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 50;
}

.banner-interna.no-img::after {
    display: none;
}

.banner-interna img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: relative;
}

.banner-interna .content {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    z-index: 150;
}

.banner-interna .content .container .title {
    width: 50%;
}

img.sidebar-parallax-1,
img.sidebar-parallax-2 {
    position: absolute;
    top: 29%;
    width: 20%;
    left: 0;
}

img.sidebar-parallax-2 {
    left: inherit;
    right: 0;
    width: 20%;
    top: 50%;
}

/* SECTION VISTA DE ESTUDIOS */

.box-info-estudios {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 30px;
    border: solid 1px var(--gray);
}

@media only screen and (min-width: 1200px) {
    .box-info-estudios {
        padding: 50px;
    }
}

span.badge-normal,
span.badge-urgente {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    padding: 3px 40px;
    border-radius: 9.5px;
    color: var(--dark-gray);
    margin: 0 3px;
}

span.badge-normal {
    background-color: #B8E986;
}

span.badge-urgente {
    background-color: #F7C778;
}

.buscador form {
    background-color: #fff;
    display: flex;
}

.buscador form input {
    border: solid 1px gray;
    color: var(--dark-gray);
}

.buscador form button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: 0 auto;
}

.img_tooltip {
    position: relative;
}

.img_tooltip span {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background-color: #1D2513;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    display: none;
    z-index: 20;
}

.img_tooltip span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 2px;
    position: absolute;
    background-color: #1D2513;
    top: -13px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 50;
}

#search-table-result_content-empresas {
    display: none;
}

#search-table-result_content {
    display: none;
}

#search-table-result_content.show {
    display: block;
}

#search-table-result_content-empresas.show {
    display: block;
}

.table-search {
    overflow-x: auto;
}

.table-search .dataTables_filter {
    display: none;
}

.table-search .dataTables_wrapper .dataTables_length {
    float: right;
}

.table-search table {
    min-width: 600px;
    background-color: #fff;
}

.table-search table tr th {
    text-align: center;
}

.table-search table tr th:first-child {
    text-align: left;
}

.table-search table tr td {
    vertical-align: middle;
}

.table-search table tr td:nth-child(1) {
    width: 50% !important;
}

.table-search table tr td:nth-child(3),
.table-search table tr td:last-child {
    width: 20%;
    text-align: center;
}

@media only screen and (min-width: 990px) {
    .table-search table tr td:nth-child(1) {
        width: 40% !important;
    }

    .table-search table tr td:nth-child(2) {
        width: 20%;
        text-align: center;
    }
}

.table-search.result table#search-table-result {
    background-color: rgba(185, 185, 83, 0.36);
    border-radius: 10px;
    border: none;
    overflow: hidden;
    width: 100% !important;
}

.table-search.result table#search-table-result-empresas {
    background-color: rgba(185, 185, 83, 0.36);
    border-radius: 10px;
    border: none;
    overflow: hidden;
    width: 100% !important;
}

.table-search.result table#search-table-result tbody tr {
    background-color: transparent;
}

.table-search.result table#search-table-result-empresas tbody tr {
    background-color: transparent;
}

.table-search.result tfoot {
    background-color: rgba(128, 128, 128, 0.5);
    border: none;
}

.table-search.result .presupuesto {
    background-color: #1D2513;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5em 1.5em;
    border: solid 1px #AEAE49;
    border-radius: 10px;
    display: inline-block;
}

.table-search.result .presupuesto:hover {
    background-color: lightgray;
    color: #1D2513;
}

.questions .accordion .card {
    border: none;
}

.questions .accordion .card .card-header {
    background-color: transparent !important;
    border: none;
}

.questions .accordion .card .card-header h2 {
    background-color: #F5F5F5;
    border-radius: 10px;
    border: solid 1px #4A4A4A;
    position: relative;
}

.questions .accordion .card .card-header h2 .btn-link {
    color: #4A4A4A;
    font-weight: bold;
    padding: 0;
}

.questions .accordion .card .card-header h2 .btn-link::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 10px;
    background-color: transparent;
    transform: rotate(-139deg);
    border-bottom: solid 1px #4A4A4A;
    border-right: solid 1px #4A4A4A;
    transition: all ease-in-out 0.1s;
}

.questions .accordion .card .card-header h2 .btn-link.collapsed::after {
    top: 5px;
    transform: rotate(40deg);
}

.footer_subtitle {
    font-weight: bold !important;
    color: #fff;
}