@import url(//fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i);


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
    font-family: system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.5 !important;
    color: #212529;
    overflow-y: scroll;
}

section p {
    font-size: 1.2rem !important;
}

.c-gradient {
    background: linear-gradient(to right, #5989e5, #37cfdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gradient {
    background-image: linear-gradient(to right, #5989e5, #37cfdc);
    color:white;
}

a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
}

p {
    line-height: 2.0rem;
}

button {
    cursor: pointer;
}

i,
span,
strong {
    display: inline-block;
}

.bg-gray, section.browser .nav-tabs a.active {
    background: #f5f5f5;
}

.hero-text {
    font-size: 1.3rem;
    font-weight: 400;
    color: #777;
    line-height: 1.5rem;
}

.btn {
    font-size: 0.9em !important;
}

.btn-gradient:focus {
    color: #fff;
}

.btn-shadow {
    -webkit-box-shadow: 0 10px 20px rgba(109, 109, 109, 0.16) !important;
    box-shadow: 0 10px 20px rgba(109, 109, 109, 0.16) !important;
}

.btn-gradient, section.browser .nav-tabs span.number {
    background-color: #5989e5;
    background-image: -webkit-gradient(linear, left top, right top, from(#5989e5), to(#37cfdc));
    background-image: linear-gradient(to right, #5989e5, #37cfdc);
    text-transform: uppercase;
    color: #fff !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s !important;
    transition: all 0.3s !important;
}

.btn.btn-gradient:hover, section.browser .nav-tabs span.btn.number:hover {
    opacity: 0.85;
}

.btn-gradient-pick {
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    background: #f857a6;
    background: -webkit-linear-gradient(to right,#ff5858,#f857a6);
    background: linear-gradient(to right,#ff5858,#f857a6);
    box-shadow: 0 10px 10px -2px rgba(0,0,0,.25);
    cursor: pointer;
    border: 0 !important;
}
.btn-gradient-pick:hover, section.browser .nav-tabs span.btn.number:hover {
        opacity: 0.85;
    }


section header {
    margin-bottom: 70px;
}

.cropArea {
    overflow: hidden;
    /*width: 500px;*/
    height: 350px;
    /*margin-left: 25px;*/
    margin-top: 10px;
    margin-bottom: 10px;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #106eea;
        border-top-color: #e2eefd;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* General Media Query ---------------------------------- */

/*
* ==========================================================
*     BROWSER SECTION
* ==========================================================
*/
section.browser .nav-tabs {
    margin-top: 80px;
    border: none;
}

    section.browser .nav-tabs span.number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        color: #fff;
        text-align: center;
        border-radius: 50%;
        -webkit-box-shadow: -5.665px 9.429px 35px 0px rgba(0, 0, 0, 0.2);
        box-shadow: -5.665px 9.429px 35px 0px rgba(0, 0, 0, 0.2);
        display: block;
        position: absolute;
        left: calc(50% - 25px);
        top: -25px;
        font-size: 1.4rem;
        font-weight: 700;
    }

    section.browser .nav-tabs a {
        border: none;
        background: none;
        border-right: 0;
        -webkit-box-shadow: -5.665px 9.429px 35px 0px rgba(0, 0, 0, 0.2);
        box-shadow: -5.665px 9.429px 35px 0px rgba(0, 0, 0, 0.2);
        padding: 50px 50px 40px;
        text-align: center;
        color: #333;
    }

        section.browser .nav-tabs a.active {
            -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
        }

/* Browser Section Mediaquery --------------------------- */
@media (max-width: 767px) {
    section.browser .nav-tabs a {
        margin-bottom: 50px;
    }

        section.browser .nav-tabs a.active {
            -webkit-transform: none;
            transform: none;
        }

    section.browser .nav-tabs .row div:last-of-type a {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #106eea;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #3284f1;
            color: #fff;
        }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*
* ==========================================================
*     NAVBAR
* ==========================================================
*/
nav.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    background: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

    nav.navbar .navbar-brand {
        font-weight: 800;
        font-size: 2.8rem;
        color: #222;
    }

    nav.navbar a.nav-link {
        color: #333;
        /*font-size: 1.1rem;*/
    }

        nav.navbar a.nav-link:hover, nav.navbar a.nav-link.active {
            color: #5989e5;
        }

    nav.navbar .navbar-btn {
        margin-left: 15px;
    }

    nav.navbar .navbar-toggler {
        outline: none;
    }

        nav.navbar .navbar-toggler span {
            width: 25px;
            margin: 5px;
            display: block;
            height: 2px;
            background: #37cfdc;
            -webkit-transition: all 0.2s;
            transition: all 0.2s;
        }

        nav.navbar .navbar-toggler.active span:first-of-type {
            -webkit-transform: rotate(45deg) translate(10px);
            transform: rotate(45deg) translate(10px);
        }

        nav.navbar .navbar-toggler.active span:last-of-type {
            -webkit-transform: rotate(-45deg) translate(10px);
            transform: rotate(-45deg) translate(10px);
        }

        nav.navbar .navbar-toggler.active span:nth-of-type(2) {
            opacity: 0;
        }

/* Navbar Mediaquery ----------------------------------- */
@media (max-width: 1199px) {
    nav.navbar .navbar-btn {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    nav.navbar {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 55vh;
    background: url("../img/home/home2.jpg") top left;
    background-size: cover;
    position: relative;
}

    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0.6);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: relative;
        padding-top: 132px;
    }

@media (max-width: 992px) {
    #hero .container {
        padding-top: 58px;
    }
}

#hero h1 {
    text-align:left;
    margin: 0;
    font-size: 4.5rem;
    line-height: 56px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

    #hero h1 span {
        color: #106eea;
    }

#hero h2 {
    color: #ffffff;
    margin: 5px 0 30px 0;
    font-size: 2.5rem;
    
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #106eea;
}

    #hero .btn-get-started:hover {
        background: #247cf0;
    }

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 25px 8px 40px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    position: relative;
    font-weight: 600;
}

    #hero .btn-watch-video i {
        color: #106eea;
        font-size: 32px;
        position: absolute;
        left: 0;
        top: 7px;
        transition: 0.3s;
    }

    #hero .btn-watch-video:hover {
        color: #106eea;
    }

        #hero .btn-watch-video:hover i {
            color: #3b8af2;
        }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .btn-get-started, #hero .btn-watch-video {
            font-size: 13px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#landing section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: #e7f1fd;
        color: #106eea;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h3 {
        margin: 15px 0 0 0;
        font-size: 32px;
        font-weight: 700;
    }

        .section-title h3 span {
            color: #106eea;
        }

    .section-title p {
        margin: 15px auto 0 auto;
        font-weight: 600;
    }

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer a {
   
    color: #868686;
   
   
}


/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.fade.in {
    opacity: 1;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.brandNexar {
    font-weight: 600;
    background: linear-gradient(to right, #5989e5, #37cfdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-floating {
    background-color: rgb(77, 194, 71);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 6px 0px;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    fill: rgb(86, 157, 96);
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    height: 44px;
    line-height: 18px;
    margin-bottom: 40px;
    padding-bottom: 1px;
    padding-left: 4px;
    padding-right: 4px;
    padding-top: 3px;
    position: relative;
    text-decoration-color: rgb(255, 255, 255);
    text-decoration-line: none;
    text-decoration-style: solid;
    text-size-adjust: 100%;
    visibility: visible;
    width: 47px;
    margin: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn-whatsapp svg {
    width: 39px;
    height: 40px;
    padding: 5px 2px;
    fill: white;
    vertical-align: middle;
}
.accesosMobile {
    font-size: 0.7rem;
}
.accesosDesktop {
    font-size: 0.9rem;
}
.rose {
    color: #fff;
    background-color: #FF36B5;
}
