﻿
/*--------------------------------------------------------------
# Intro DETAILS_EVENTO
--------------------------------------------------------------*/

#intro-evento {
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

    #intro-evento:before {
        content: "";
        /*background: rgba(6, 12, 34, 0.8);*/
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #intro-evento .intro-container {
        position: absolute;
        top: 100px;
        left: 20%;
        /* top: 50px; */
        right: 20%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: inline-block;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
        padding: 0 15px;
        width: 50%
    }

    #intro-evento h1 {
        color: #fff;
        font-family: "Raleway", sans-serif;
        font-size: 40px;
        font-weight: 600;
        text-transform: uppercase;
    }

        #intro-evento h1 span {
            color: #f82249;
        }

    #intro-evento p {
        color: #ebebeb;
        font-weight: 700;
        font-size: 20px;
    }

    #intro-evento .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#f82249 50%, rgba(101, 111, 150, 0.15) 52%);
        border-radius: 50%;
        display: block;
        position: relative;
        overflow: hidden;
    }

        #intro-evento .play-btn::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-40%) translateY(-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);
        }

        #intro-evento .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: 2px solid rgba(163, 163, 163, 0.4);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        #intro-evento .play-btn:hover::after {
            border-left: 15px solid #f82249;
            -webkit-transform: scale(20);
            transform: scale(20);
        }

        #intro-evento .play-btn:hover::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-40%) translateY(-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;
        }

    #intro-evento .about-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid #f82249;
    }

        #intro-evento .about-btn:hover {
            background: #f82249;
            color: #fff;
        }

@-webkit-keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

#intro-evento .carousel-item {
    min-height: 300px;
    background-repeat: no-repeat;
}

    #intro-evento .carousel-item:before {
        content: "";
        background: rgba(6, 12, 34, 0.8);
        /*background: rgba(0, 0, 0, 0.5);*/
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

#intro-evento .carousel-item-nobg:before {
    background: none;
}

#intro-evento .carousel-item-bg1:before {
    background: rgba(0, 0, 0, 0.5);
}

#intro-evento .breadcrumb {
    background-color: transparent;
}

    #intro-evento .breadcrumb .breadcrumb-item a {
        color: #fff;
        transition: all 0.5s;
    }

        #intro-evento .breadcrumb .breadcrumb-item a:hover {
            -webkit-transform: scale(1.20);
            transform: scale(1.20);
        }

    #intro-evento .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        color: #fff;
        content: "/";
    }

    #intro-evento .breadcrumb .breadcrumb-item.active {
        color: #fff;
    }

        #intro-evento .breadcrumb .breadcrumb-item.active span {
            border-bottom: solid 1px #fff;
        }


@media (max-width: 991px) {
    #intro-evento .intro-container {
        width: 80%;
        left: 10%;
    }

    #intro-evento h1 {
        font-size: 26px;
    }
    /*#intro-evento .carousel-item {
        min-height: 30vh;
        background-repeat: no-repeat;
    }*/
}

/*--------------------------------------------------------------
# evento-body-details
--------------------------------------------------------------*/

#evento-body-details {
    padding: 60px 0 60px 0;
}

    #evento-body-details .nav-tabs {
        text-align: center;
        margin: auto;
        height: 83px;
        background-color: #fff;
        border-bottom: 0;
        margin-bottom: 0;
    }

        #evento-body-details .nav-tabs li {
            display: inline-block;
            margin-bottom: 0;
            border-bottom: solid 1px #ddd;
            border-right: solid 1px #ddd;
        }

            #evento-body-details .nav-tabs li:last-child {
                border-right: none;
            }

        #evento-body-details .nav-tabs a {
            border: none;
            height: 100%;
            font-weight: 600;
            /*background-color: #0e1b4d;*/
            color: #555;
            line-height: 3.6em;
            font-size: 14px;
        }

            #evento-body-details .nav-tabs a.active {
                border-bottom: solid 3px #17a2b8;
                color: #555;
            }

            #evento-body-details .nav-tabs a:hover {
                border-bottom: solid 3px #f82249;
            }

    #evento-body-details .tab-content {
        background-color: #fff;
        padding: 1.25rem;
    }

        #evento-body-details .tab-content .tab-pane {
            background-color: #fff;
        }

    #evento-body-details .sub-heading {
        text-align: center;
        font-size: 18px;
        font-style: italic;
        margin: 0 auto 30px auto;
    }

    #evento-body-details .tab-pane {
        transition: ease-in-out .2s;
    }

    #evento-body-details .schedule-item {
        border-bottom: 1px solid #cad4f6;
        padding-top: 15px;
        padding-bottom: 15px;
        transition: background-color ease-in-out 0.3s;
    }

        #evento-body-details .schedule-item:hover {
            background-color: #fff;
        }

        #evento-body-details .schedule-item time {
            padding-bottom: 5px;
            display: inline-block;
        }

        #evento-body-details .schedule-item .speaker {
            width: 60px;
            height: 60px;
            overflow: hidden;
            border-radius: 50%;
            float: left;
            margin: 0 10px 10px 0;
        }

            #evento-body-details .schedule-item .speaker img {
                height: 100%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                margin-left: 50%;
                transition: all ease-in-out 0.3s;
            }

        #evento-body-details .schedule-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

            #evento-body-details .schedule-item h4 span {
                font-style: italic;
                color: #19328e;
                font-weight: normal;
                font-size: 16px;
            }

        #evento-body-details .schedule-item p {
            font-style: italic;
            color: #152b79;
            margin-bottom: 0;
        }


    #evento-body-details .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #222636;
        color: #eee;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #evento-body-details .social-links a:hover {
            background: #f82249;
            color: #fff;
        }

    #evento-body-details .evento-descripcion {
        text-align: justify;
        font-size: 0.8rem;
        color: #555555;
        font-family: 'Poppins', sans-serif;
    }

    #evento-body-details .card {
        margin-bottom: 30px;
    }

        #evento-body-details .card .card-title {
            font-weight: 600;
            font-size: 1rem;
            color: #4a4a4a;
            font-family: Poppins;
            padding-top: 11px;
        }


    #evento-body-details #detalles_evento .lista-detalle-evento {
        list-style: none;
        padding: 10px;
    }

        #evento-body-details #detalles_evento .lista-detalle-evento li {
            padding-bottom: 20px;
            border-bottom: solid 1px #eee;
            padding-top: 20px;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento i {
            color: #17a2b8;
            margin-right: 20px;
            width: 30px;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento h4 {
            display: inline-block;
            text-transform: uppercase;
            margin-bottom: 2px;
            font-weight: 600;
            font-size: 0.7692rem;
            letter-spacing: 1px;
            position: absolute;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento span {
            display: block;
            padding-left: 50px;
            font-weight: 400;
            font-size: 11px;
            text-transform: uppercase;
            font-family: "Raleway", sans-serif;
            position: absolute;
            margin-top: -16px;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento h4 small {
            /*margin-left:50px;*/
        }


    #evento-body-details #patrocinadores_evento .ponente-cuadro-container {
        padding-right: 12px;
    }

    #evento-body-details #patrocinadores_evento .sponsor-gallery {
        overflow: hidden;
        border: 1px solid #ddd;
        margin: 15px 0;
        transition: all ease-in-out 0.4s;
        height: 150px;
        width: 100%;
    }

        #evento-body-details #patrocinadores_evento .sponsor-gallery:hover {
            background-color: #1372A5;
        }
        /*#evento-body-details #patrocinadores_evento .sponsor-gallery img {
            transition: all ease-in-out 0.4s;
        }

        #evento-body-details #patrocinadores_evento .sponsor-gallery:hover img {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
            
        }*/

        #evento-body-details #patrocinadores_evento .sponsor-gallery .sponsor-info {
            width: calc(100% - 30px);
            height: calc(100% - 30px);
            margin: auto;
            position: absolute;
            text-align: center;
            /*top: 30%;*/
            background-color: #1372A5;
            opacity: 0;
            transition: all ease-in-out 0.4s;
        }

            #evento-body-details #patrocinadores_evento .sponsor-gallery .sponsor-info:hover {
                opacity: .85;
            }

                #evento-body-details #patrocinadores_evento .sponsor-gallery .sponsor-info:hover h3 {
                    opacity: 1;
                }

            #evento-body-details #patrocinadores_evento .sponsor-gallery .sponsor-info h3 {
                margin-top: 30%;
                color: #fff;
                font-weight: 600;
            }

@media (max-width: 1098px) {
    .container-strech {
        width: 90%;
    }
}

@media (max-width: 991px) {

    #evento-body-details .nav-tabs {
        height: 120px;
    }

        #evento-body-details .nav-tabs a {
            line-height: 2em;
            font-weight: 400;
            font-size: 90%;
        }

    .tab-content {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width:991px) {

    #evento-body-details #detalles_evento .lista-detalle-evento {
        padding: 0;
    }

        #evento-body-details #detalles_evento .lista-detalle-evento li {
            padding-top: 15px;
            padding-bottom: 15px;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento i {
            margin-right: 0;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento li > .fa-2x {
            font-size: 1.5em;
        }

        #evento-body-details #detalles_evento .lista-detalle-evento span {
            margin-top: -13px;
            padding-left: 30px;
        }
}

/****************************************+*/
/*   PONENTES                             */
/****************************************+*/
#ponentes-container .ponente-cuadro {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    margin: 21px;
    transition: all ease-in-out 0.4s;
    height: 356px;
}



    #ponentes-container .ponente-cuadro img {
        transition: all ease-in-out 0.4s;
        width: 356px;
        height: 356px;
    }

    /*     #ponentes-container .ponente-cuadro:hover img {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);            
        }*/
    #ponentes-container .ponente-cuadro .ponente-titulo {
        padding: 30px;
        position: absolute;
        z-index: 999;
        background: rgba(6, 12, 34, 0.3);
        width: calc(100% - 44px);
        height: calc(100% - 44px);
        transition: all ease-in-out 0.4s;
    }

        #ponentes-container .ponente-cuadro .ponente-titulo:hover {
            background: rgba(6, 12, 34, 0.8);
        }

        #ponentes-container .ponente-cuadro .ponente-titulo h3 {
            font-size: 1.162rem;
            color: #fff;
            font-weight: 600;
            margin-bottom: 2px;
            font-family: Poppins;
            transition: all ease-in-out 0.4s;
        }

        #ponentes-container .ponente-cuadro .ponente-titulo:hover h3 {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        #ponentes-container .ponente-cuadro .ponente-titulo h4 {
            color: #fff;
            transition: all ease-in-out 0.4s;
            font-size: .962rem;
        }

        #ponentes-container .ponente-cuadro .ponente-titulo:hover h4 {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

        #ponentes-container .ponente-cuadro .ponente-titulo p {
            opacity: 0;
            color: #fff;
            transition: all ease-in-out 0.4s;
            font-family: Poppins;
            font-size: 12px;
        }

        #ponentes-container .ponente-cuadro .ponente-titulo:hover p {
            opacity: 1;
        }

        #ponentes-container .ponente-cuadro .ponente-titulo ul {
            list-style: none;
            padding: 0px;
            margin: 0px -5px;
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            width: auto;
            color: #fff;
            opacity: 0;
            transition: all ease-in-out 0.4s;
        }

        #ponentes-container .ponente-cuadro .ponente-titulo:hover ul {
            opacity: 1;
        }

        #ponentes-container .ponente-cuadro .ponente-titulo ul li {
            font-size: 1.231rem;
            padding: 2px 6px;
        }

            #ponentes-container .ponente-cuadro .ponente-titulo ul li a {
                color: #fff;
            }



/****************************************+*/
/*   galeria eventos                      */
/****************************************+*/
#galeria-container {
    overflow: hidden;
    transition: all ease-in-out 0.4s;
}

    #galeria-container > div {
        padding: 0;
    }

        #galeria-container > div a {
            transition: all ease-in-out 0.4s;
        }

            #galeria-container > div a img {
                transition: all ease-in-out 0.4s;
            }

            #galeria-container > div a:hover img {
                transform: scale(0.95);
                z-index: 9999;
            }


/****************************************+*/
/*   galeria eventos OP2                       */
/****************************************+*/
#galeria-container-op2 {
    overflow: hidden;
    transition: all ease-in-out 0.4s;
}

    #galeria-container-op2 > div {
        padding: 0;
    }

        #galeria-container-op2 > div a {
            transition: all ease-in-out 0.4s;
            height: 250px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

            #galeria-container-op2 > div a > div {
                transition: all ease-in-out 0.4s;
                z-index: 1;
                position: absolute;
                width: 100%;
                height: 100%;
            }


            #galeria-container-op2 > div a:hover div {
                transform: scale(1.1);
                z-index: 9 !important;
            }

/****************************************+*/
/*   CONTACTANOS eventos                      */
/****************************************+*/
#card-contactanos p {
    text-align: justify;
    font-size: 0.8rem;
    color: #555555;
    font-family: 'Poppins', sans-serif;
}

#card-contactanos input, #card-contactanos textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

#card-contactanos .row {
    margin-bottom: 15px;
}

#card-contactanos .btn-send {
    background: #f82249;
    border: 0;
    padding: 10px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
}
