﻿/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 75vh;
    background: url(Assets/images/Carrusel/Inicio.png) top center;
    /*background-size: cover;*/
    position: relative;
    margin-bottom: -140px;
    z-index: 1;
}

    #hero:before {
        content: "";
        background: rgba(60, 65, 51, 0.4);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .hero-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }

    #hero h2 {
        color: #eee;
        margin-bottom: 50px;
        font-size: 24px;
    }

    #hero .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #94c045;
        text-transform: uppercase;
        color: #fff;
    }

        #hero .btn-get-started:hover {
            background: #94c045;
        }

@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 .hero-container {
            padding: 0 15px;
        }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    background: #fff;
}

.about .count-box {
    width: 100%;
}

    .about .count-box i {
        display: block;
        font-size: 48px;
        color: #074286;
        float: left;
        line-height: 0;
    }

    .about .count-box span {
        font-size: 28px;
        line-height: 24px;
        display: block;
        font-weight: 700;
        color: #B4C875;
        margin-left: 60px;
    }

    .about .count-box p {
        padding: 5px 0 0 0;
        margin: 0 0 0 60px;
        font-family: 'Source Sans Pro', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #646c55;
    }

    .about .count-box a {
        font-weight: 600;
        display: block;
        margin-top: 20px;
        color: #646c55;
        font-size: 15px;
        font-family: 'Source Sans Pro', sans-serif;
        transition: ease-in-out 0.3s;
    }

        .about .count-box a:hover {
            color: #8b9578;
        }

/*.about .content {
    font-size: 15px;
}*/

.about .content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #3c4133;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-bottom: 10px;
        padding-left: 28px;
        position: relative;
    }

    .about .content ul i {
        font-size: 24px;
        color: #94c045;
        position: absolute;
        left: 0;
        top: -2px;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#074286 50%, rgba(69,88,192,0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .about .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .about .play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation: pulsate-btn 2s;
        animation: pulsate-btn 2s;
        -webkit-animation-direction: forwards;
        animation-direction: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: steps;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(69, 186, 192, 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .about .play-btn:hover::after {
        border-left: 15px solid #00b3ff;
        transform: scale(20);
    }

    .about .play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        -webkit-animation: none;
        animation: none;
        border-radius: 0;
    }

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 10px;
    margin-top: 30px;
    color: #3c4133;
}

/*--------------------------------------------------------------
# Mission and Vision CSS
--------------------------------------------------------------*/

a {
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
    outline: 0 !important;
    color: #0b0b31;
}

    a:hover {
        text-decoration: none;
        color: #5764ec;
    }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Mukta', Century;
}

p {
    line-height: 1.8;
    color: #747576;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Source Sans Pro', Quicksand;
}

    p:last-child {
        margin-bottom: 0;
    }


.single-services-box {
    position: relative;
    z-index: 1;
    padding: 35px 25px;
    text-align: center;
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 30px;
    -webkit-box-shadow: -1px 3px 20px 0px rgba(82, 90, 101, 0.1);
    -moz-box-shadow: -1px 3px 20px 0px rgba(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgba(82, 90, 101, 0.1);
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
}

    .single-services-box:before {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        bottom: 0;
        min-width: 100%;
        border-bottom: 3px solid #5764ec;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        transform: scaleX(0);
        -webkit-transition: all 400ms ease-out;
        transition: all 400ms ease-out;
        will-change: transform;
    }

    .single-services-box:hover:before {
        transform: scaleX(1);
    }

    .single-services-box .services-icon {
        position: relative;
        display: inline-block;
        z-index: 1;
        width: 80px;
        height: 80px;
        line-height: 80px;
        border: 1px solid #f5f6ff;
        border-radius: 50%;
        color: #5764ec;
        margin-bottom: 20px;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .single-services-box:hover .services-icon {
        border-color: #5764ec;
        color: #ffffff;
        -webkit-transform: scale(.98);
        -moz-transform: scale(.98);
        -ms-transform: scale(.98);
        -o-transform: scale(.98);
        transform: scale(.98);
    }

    .single-services-box .services-icon::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #f5f6ff;
        z-index: -1;
        border-radius: 50%;
        margin: 5px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .single-services-box:hover .services-icon::before {
        background: #5764ec;
    }

    .single-services-box .services-icon i::before {
        font-size: 35px;
    }

    .single-services-box h3 {
        font-size: 18px;
        margin-bottom: 0;
        -webkit-transition: all 400ms ease-out;
        transition: all 400ms ease-out;
        will-change: transform;
    }

        .single-services-box h3 a {
            display: inline-block;
        }

    .single-services-box p {
        font-size: 15px;
        -webkit-transition: all 400ms ease-out;
        transition: all 400ms ease-out;
        will-change: transform;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .single-services-box .services-btn {
        margin-top: 16px;
    }

        .single-services-box .services-btn .services-btn-one {
            display: inline-block;
            font-size: 15px;
            color: #5764ec;
            font-weight: 700;
            -webkit-transition: all 400ms ease-out;
            transition: all 400ms ease-out;
            will-change: transform;
        }

        .single-services-box .services-btn i {
            position: relative;
            color: #5764ec;
            top: 1px;
            font-weight: bold;
            -webkit-transition: all 400ms ease-out;
            transition: all 400ms ease-out;
        }

            .single-services-box .services-btn i::before {
                font-size: 14px;
            }

    .single-services-box:hover {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

        .single-services-box:hover h3 {
            color: #333;
        }

            .single-services-box:hover h3 a {
                color: #333;
            }

        .single-services-box:hover p {
            color: #333;
        }

        .single-services-box:hover .services-btn .services-btn-one {
            color: #333;
        }

        .single-services-box:hover .services-btn i {
            color: #333;
        }

.services-more-btn-box {
    margin-top: 15px;
}

/* Mission and Vision Box Styles */

.services-single-category {
    position: relative;
    padding: 40px 30px;
    display: block;
    border-radius: 5px;
    background: #fff;
    margin-top: 30px;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    overflow: hidden;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

    .services-single-category:hover {
        -webkit-transform: translateY(2px);
        transform: translateY(-5px);
        -webkit-box-shadow: 0 30px 60px -12px rgba(50,50,93,.25), 0 18px 36px -18px rgba(0,0,0,.3), 0 -12px 36px -8px rgba(0,0,0,.025);
        box-shadow: 0 30px 60px -12px rgba(50,50,93,.25), 0 18px 36px -18px rgba(0,0,0,.3), 0 -12px 36px -8px rgba(0,0,0,.025);
    }

.services-single-category-icon {
    position: absolute;
    left: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.services-single-category-info {
    padding-left: 75px;
}

.services-single-category-icon i {
    width: 90px;
    height: 90px;
    background: #074286;
    display: block;
    text-align: center;
    line-height: 90px;
    color: #B4C875;
    border-radius: 50%;
    font-size: 48px;
}

    .services-single-category-icon i.icon:before {
        font-size: 50px;
    }

.services-single-category-info h3 {
    font-size: 18px;
    color: #B4C875;
    margin-bottom: 10px;
}





/*******************************************
#  Principios de la empresa
 *******************************************/
.services-section-2 .section-title {
    text-align: left;
}

.services-section-2 {
    position: relative;
}

.services-category-box a {
    color: #074286;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 3px;
    text-align: center;
    font-weight: 700;
    background-color: #f4f5ff;
    display: inline-block;
    min-width: 120px;
    margin-right: 30px;
    margin-bottom: 20px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
}

    .services-category-box a:hover {
        color: #fff;
        background-color: #074286;
    }

.services-category-info {
    margin-top: 30px;
    margin-bottom: 50px;
}

    .services-category-info h6 {
        font-size: 18px;
        color: #5f5f5f;
    }

.single-services-box-2 {
    position: relative;
    z-index: 1;
    display: block;
    padding: 35px 30px;
    text-align: left;
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 30px;
    border: 2px solid transparent;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    will-change: transform;
}

    .single-services-box-2 .services-icon-2 {
        display: block;
        color: #ff561d;
        margin-bottom: 20px;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .single-services-box-2 .services-icon-2 i::before {
            font-size: 55px;
        }

    .single-services-box-2 h3 {
        font-size: 18px;
        margin-bottom: 0;
        -webkit-transition: all 400ms ease-out;
        transition: all 400ms ease-out;
        will-change: transform;
    }

        .single-services-box-2 h3 a {
            display: inline-block;
        }

    .single-services-box-2 p {
        font-size: 15px;
        margin-top: 15px;
        margin-bottom: 0;
        -webkit-transition: all 400ms ease-out;
        transition: all 400ms ease-out;
        will-change: transform;
    }

    .single-services-box-2 .services-btn {
        margin-top: 16px;
        text-align: right;
    }

        .single-services-box-2 .services-btn .services-btn-one {
            display: inline-block;
            font-size: 15px;
            color: #ff561d;
            font-weight: 700;
            -webkit-transition: all 400ms ease-out;
            transition: all 400ms ease-out;
            will-change: transform;
        }

        .single-services-box-2 .services-btn i {
            position: relative;
            color: #ff561d;
            top: 1px;
            font-weight: bold;
            -webkit-transition: all 400ms ease-out;
            transition: all 400ms ease-out;
            will-change: transform;
        }

            .single-services-box-2 .services-btn i::before {
                font-size: 14px;
            }

.services-more-btn-box {
    margin-top: 15px;
}


/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
}

.clients .client-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
    background: #fff;
    height: 300px;
}



    .clients .client-logo img {
        transition: all 0.3s ease-in-out;
        height: 36px;
        filter: grayscale(100%);
        border-radius: 30%;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .clients .client-logo:hover img {
        filter: none;
        transform: scale(1.1);
    }


/*--------------------------------------------------------------
# divider del inicio
--------------------------------------------------------------*/
.divider {
    position: relative;
    margin-top: 40px;
    height: 1px;
}

.div-transparent:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 5%;
    right: 5%;
    width: 90%;
    height: 2px;
    background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-dot:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -9px;
    left: calc(50% - 9px);
    width: 35px;
    height: 35px;
    background-color: #B4C875;
    border: 1px solid rgb(48,49,51);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px white, 0 0 0 4px white;
}