

#preloder {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #fff;
    opacity: 1;
    z-index: 9999;
    transition: all .3s;
}

    #preloder .loader {
        position: fixed;
        width: 70px;
        height: 70px;
        background: url(img/spinning-circle.gif) center center no-repeat;
        background-position: center;
        background-size: contain;
        border-radius: 50%;
        z-index: 99999999;
    }

.preloder-done {
    opacity: 0 !important;
    visibility: hidden;
}

.accessibilityElement {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.ratio img {
    object-fit: cover;
    object-position: center;
}

img {
    max-width: 100%;
    height: auto;
}
/* MENU */
.navbar {
    padding: 0;
    text-transform: uppercase;
    background: #fff;
    box-shadow: 0 18px 17px 0px rgb(0 0 0 / 8%);
}

    .navbar .navbar-brand img {
        height: 65px;
        transition: all .3s;
    }

    .navbar.affix .navbar-brand img {
        height: 55px;
    }

    .navbar .navbar-nav .nav-item {
        margin-right: 20px;
    }

        .navbar .navbar-nav .nav-item:last-child {
            margin-right: 0;
        }

    .navbar .nav-link,
    .navbar .nav-link.show {
        color: #1d1838;
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        position: relative;
        height: 44px;
        text-decoration: none;
        transition: all .3s;
        padding: 12px 17px !important;
    }

        .navbar .nav-item.active .nav-link:after,
        .navbar .nav-link.active:after,
        .navbar .nav-link.show:after,
        .navbar .nav-item.hover .nav-link:after,
        .navbar .nav-link.hover:after,
        .navbar .nav-link:hover:after,
        .navbar .nav-link:focus:after {
            content: none;
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--bs-primary);
        }



        .navbar .nav-link.active,
        .navbar .nav-link.hover,
        .navbar .nav-link:hover,
        .navbar .nav-link:focus {
            color: #1d1838;
            background: #f2f2f2;
            border-radius: 10px;
        }

    .navbar button.nav-link .menu-arrow {
        position: absolute;
        height: 15px;
        width: 15px;
        background-image: url(img/menu/chevron-down-solid.svg);
        background-repeat: no-repeat;
        left: 7px;
    }

    .navbar .dropdown-menu {
        background-color: #f2f2f2;
        min-width: 250px;
        --animate-duration: 0.3s
    }

    .navbar .nav-item.hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu.level-3 .nav-item {
        margin-right: 0;
    }

    .navbar .dropdown-menu.level-3 .nav-link {
        height: auto;
    }

    .navbar .nav-item .dropdown-menu.level-4,
    .navbar .nav-item .dropdown-menu.level-5 {
        padding-top: 10px !important;
        top: -10px;
        left: 100% !important;
    }

    .navbar .nav-item:nth-last-child(2) .dropdown-menu .dropdown-menu {
        right: 100%;
        left: auto !important;
    }

    .navbar .dropdown-item {
        color: #5d5d5d;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 5px 0;
        display: block;
        transition: all .2s linear;
    }

    .navbar .dropdown-menu li {
        margin: 8px 15px;
        border-bottom: 1px solid #ddd;
    }

        .navbar .dropdown-menu li:last-child {
            border-bottom: 0;
        }

    .navbar .dropdown-item:focus,
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item.active {
        color: #1d1838;
        background-color: transparent;
        text-decoration: none;
        font-weight: 700;
    }

    .navbar .button-menu .btn {
        padding: 8px 20px;
    }

.navbar-toggler {
    border: none;
}

.navbar .navbar-toggler .menu-text {
    color: var(--bs-dark);
}

.navbar .navbar-toggler .icon-menu .icon-bar {
    background-color: var(--bs-dark);
}

.navbar.affix .navbar-toggler .icon-menu .icon-bar {
    background-color: var(--bs-dark);
}

.navbar-toggler .icon-menu .icon-bar + .icon-bar {
    margin-top: 4px;
}

.navbar-toggler .icon-menu .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin-left: 5px;
    border-radius: 1px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.navbar-toggler.collapsed .icon-menu .icon-bar {
    margin-left: 0;
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler .icon-menu .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
}

.navbar-toggler .icon-menu .icon-bar:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler .icon-menu .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .icon-menu .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-toggler.collapsed .icon-menu .icon-bar:nth-of-type(2) {
    opacity: 1;
}

.navbar-toggler.collapsed .icon-menu .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
/* END MENU */

/* BANNER */
.slider-home,
.slider-home img {
    height: 50vh;
}

.slider-in {
    height: 100%;
}

.slider .main-slide {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-slide img {
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
}

    .main-slide img.icon-plus {
        width: 20px;
        height: 20px !important;
    }

.slider-in .main-slide img {
    height: 500px;
    overflow: hidden;
}

.slider .main-slide .bg-overlay {
    /*background: rgba(0,0,0,0.2);*/
}

.slider .main-slide .slide-content {
    position: relative;
    color: #fff;
    font-size: 48px;
    letter-spacing: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.owl-stage-outer, .owl-stage, .owl-item {
    height: 100%;
    z-index: 99;
    cursor: grab;
}

.owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    height: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 2%;
}

.owl-carousel .owl-nav button.owl-next {
    right: 2%;
}

.owl-carousel .owl-nav button {
    z-index: 99;
    transition: all .5s;
}

    .owl-carousel .owl-nav button.disabled {
        opacity: .2;
    }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    height: 100%;
    display: table;
    top: 0;
}

.owl-nav .center-table {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.owl-nav .owl-prev {
    left: 0;
}

.owl-nav .owl-next {
    right: 0;
}

.owl-nav i {
    color: #fff;
    font-size: 40px;
    display: -webkit-inline-box;
    transition: all .3s;
}

button.disabled,
button.disabled:hover {
    opacity: .5;
    cursor: auto;
}

.owl-dots {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 99;
}

.owl-dot span {
    border: 0;
    background: rgb(255 255 255 / 50%);
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #fff;
}
/* END BANNER */

/* CONTENT */
.title-inner {
    font-size: 32px;
    letter-spacing: 2px;
}

.btn-gradient {
    background-image: linear-gradient(to right, rgb(28, 136, 156), rgb(112, 187, 210));
    background-size: 150% 100%;
    display: inline-block;
    padding: 12px 24px;
    color: #FFF;
    border-radius: 10px;
    cursor: pointer;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 800;
    border: 0;
}

    .btn-gradient:hover {
        text-decoration: none;
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }
/* END CONTENT */

/* LIST PROJECTS */
.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 12rem;
    height: auto;
}



    .learn-more .circle {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: #282936;
        border-radius: 1.625rem;
    }

        .learn-more .circle .icon {
            transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            background: #fff;
        }

            .learn-more .circle .icon.arrow {
                transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
                left: 0.625rem;
                width: 1.125rem;
                height: 0.125rem;
                background: none;
            }

                .learn-more .circle .icon.arrow::before {
                    position: absolute;
                    content: "";
                    top: -0.25rem;
                    right: 0.0625rem;
                    width: 0.625rem;
                    height: 0.625rem;
                    border-top: 0.125rem solid #fff;
                    border-right: 0.125rem solid #fff;
                    transform: rotate(45deg);
                }

    .learn-more .button-text {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.75rem 0.5rem 0.75rem 0;
        margin: 0 0 0 3rem;
        color: #282936;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .learn-more:hover .circle {
        width: 100%;
    }

        .learn-more:hover .circle .icon.arrow {
            background: #fff;
            transform: translate(1rem, 0);
        }

    .learn-more:hover .button-text {
        color: #fff;
    }

.subtitle-project {
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.title-project {
    font-size: 55px;
    letter-spacing: 10px;
}

.description-project {
    font-size: 20px;
}

.project-right .project-img {
    right: 0;
    will-change: transform;
}

.project-left .project-img {
    left: 0;
    will-change: transform;
}

/*.project-img {
    position: absolute;
    transition: all .3s ease;
    box-shadow: 0 25px 50px 0 rgba(38,38,38,.1);
}

.project {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}


.project-img.active {
    z-index: 1;
}

.project-img.notActive {
    cursor: pointer;
    transform: scale(.9) translateX(-15.2%);
    z-index: 0;
}

    .project-img.notActive:hover {
        transform: scale(.9) translateX(-20.2%);
    }

.project-left .project-img.notActive {
    transform: scale(.9) translateX(15.2%);
    z-index: 0;
}

    .project-left .project-img.notActive:hover {
        transform: scale(.9) translateX(20.2%);
    }


.project-img {
    position: absolute;
    transition: all .3s ease;
    box-shadow: 0 25px 50px 0 rgba(38,38,38,.1);
}

    .project-img img {
        position: relative;
        display: block;
        box-shadow: 0 25px 50px 0 rgba(38,38,38,.1);
    }

.project-img-default {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}*/

.list-solutions .solution::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    top: var(--alignTop);
    bottom: var(--alignBottom);
    left: 0;
    transform: var(--alignTransform);
}

.list-solutions .solution.solution-right::before {
    background: linear-gradient(130deg, #1d1838, #0080a5);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.list-solutions .solution.solution-left::before {
    background: linear-gradient(220deg, #1d1838, #0080a5);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.solution.solution-right img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    animation: slideInRight;
    animation-duration: 1s;
}

.solution.solution-left img {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    animation: slideInLeft;
    animation-duration: 1s;
}

.solution img {
    position: relative;
    filter: drop-shadow(0 2px 7px rgb(0 0 0 / 57%));
}

.description-testimonial {
    font-size: 30px;
    line-height: 1.3;
}

.name-testimonial {
    text-transform: uppercase;
    margin-top: 35px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* PLANS */
.card-plan .plan-title {
    font-size: 32px;
    letter-spacing: 4px;
}

.card-plan .list-group-item {
    color: #696969;
}

    .card-plan .list-group-item span {
        -webkit-text-stroke: 1px;
    }

        .card-plan .list-group-item span.la-check {
            color: var(--bs-primary);
        }

        .card-plan .list-group-item span.la-times {
            color: #c1c1c1;
        }
/* END PLANS */

/* CONTACTOS */
.contact-content i {
    color: #a5a5a5;
}

#form-contactos .input-group .input-group-text {
    background: #fff;
    border-right: 3px solid #bdeef9;
}

    #form-contactos .input-group .input-group-text i {
        font-size: 18px;
        color: #909499;
    }

#form-contactos .input-group .form-control {
    color: #1d1838;
    font-weight: 500;
}

#form-contactos .form-check-input {
    border: 1px solid #59bdd4;
}

.form-check-input:checked {
    background-color: #59bdd4;
}

.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgb(89 189 212 / 25%);
}

.embed-responsive-map .embed-responsive-item {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: calc(100% + 70px);
    margin-top: -70px;
}
/* END CONTACTOS */

/* FOOTER */
footer {
    background: #1f1e2e;
    color: rgba(255,255,255,0.7);
}

    footer h3 {
        text-transform: uppercase;
        letter-spacing: 5px;
        color: rgba(255,255,255,1);
    }

    footer i {
        color: rgba(255,255,255,1);
        font-size: 20px;
    }

    footer a {
        color: rgba(255,255,255,0.7);
    }

    footer .link-footer a:hover {
        color: rgba(255,255,255,1);
        text-decoration: none;
    }

.copyright {
    background: #191826;
    font-size: 14px;
}

.list-social-media a {
    margin-right: 10px;
}

    .list-social-media a:last-child {
        margin-right: 0;
    }

.list-social-media i {
    font-size: 25px;
    color: rgba(255,255,255,0.7);
}

.list-social-media a:hover i {
    color: rgba(255,255,255,1);
}
/* END FOOTER */
/* COOKIES */
.overlay-cookies.cookies-hide {
    display: none;
}

.bg-wgt-cookies {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
    z-index: 1031;
}

    .bg-wgt-cookies p:first-child {
        margin-bottom: 7px;
    }

    .bg-wgt-cookies p:last-child {
        margin-bottom: 0;
    }

    .bg-wgt-cookies .popup_total {
        color: #9d9d9d;
    }

        .bg-wgt-cookies .popup_total:hover {
            text-decoration: underline;
        }

    .bg-wgt-cookies .btn-primary.jq_cookies_close {
        padding: 5px 15px;
        min-width: auto;
        font-size: 14px;
    }
/* END COOKIES */
@media (min-width: 991px) and (max-width: 1200px) {
    .navbar .navbar-brand img {
        height: 55px;
    }

    .navbar .navbar-nav .nav-item {
        margin-right: 5px;
    }

    .navbar .nav-link,
    .navbar .nav-link.show {
        font-size: 14px;
        padding: 12px 12px !important;
    }

    .navbar .btn-gradient {
        font-size: 14px;
    }
}

@media (min-width: 991px) {
    .navbar .navbar-nav .nav-item {
        height: 70px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-brand img {
        height: 55px;
    }

    .navbar .navbar-nav {
        display: inherit;
    }

    .navbar .nav-item.active .nav-link:after,
    .navbar .nav-link.active:after,
    .navbar .nav-link.show:after,
    .navbar .nav-item.hover .nav-link:after,
    .navbar .nav-link.hover:after,
    .navbar .nav-link:hover:after,
    .navbar .nav-link:focus:after {
        content: none !important;
    }

    .navbar .dropdown-menu:before {
        content: none;
    }

    .navbar button.nav-link .menu-arrow {
        left: auto;
    }

    .navbar .navbar-nav.level-2 .nav-item {
        margin-right: 0;
        margin-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dbdbdb;
    }

        .navbar .navbar-nav.level-2 .nav-item:last-child {
            border-bottom: none;
        }

    .navbar .nav-item::before {
        content: none;
    }

    .navbar .level-2 .nav-item.dropdown button.nav-link {
        position: absolute;
        top: 0;
        right: 0;
        border-left: 1px solid #dee2e6 !important;
        padding: 26px 9.5px !important;
        width: 35px;
    }

    .navbar .level-3:nth-child(1n+3) .nav-item.dropdown button.nav-link {
        padding: 4.5px 12.5px;
        min-height: 30px;
    }

    .navbar .dropdown-menu {
        background: transparent;
        padding-top: 7px;
        box-shadow: none;
    }

        .navbar .dropdown-menu .dropdown-menu {
            padding-left: 15px;
            padding-right: 0;
        }

        .navbar .dropdown-menu .dropdown-item {
            font-size: 13px;
            padding-right: 40px;
            margin-bottom: 5px;
        }
}

@media (max-width: 768px) {
    .title-project {
        font-size: 40px;
        letter-spacing: 7px;
    }

    .title-inner {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .description-project {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .slider-home,
    .slider-home img {
        height: 400px;
    }

    .slider .main-slide .slide-content {
        padding-left: 45px;
        padding-right: 45px;
    }

        .slider .main-slide .slide-content .slide-title,
        .slider .main-slide .slide-content .slide-text {
            font-size: 38px;
            line-height: 1.3;
        }
}

.list-testimonial .owl-dots {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 99;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.list-testimonial .owl-dot {
    width: 7px;
    height: 20px;
    background: #2f99ae;
    display: inline-block;
    margin: 0 5px;
    border-radius: 10px;
    transition: all .3s;
}

    .list-testimonial .owl-dot.active {
        height: 30px;
    }

@media (max-width: 420px) {
    .slider .main-slide .slide-content {
        padding-top: 120px;
    }

        .slider .main-slide .slide-content .slide-title,
        .slider .main-slide .slide-content .slide-text {
            line-height: 1.1;
        }
}
