@import "parametros.css";

body{
    background-color: var(--color-1);
    font-family: var(--font-family-text), sans-serif;
    color: var(--color-dark);
    font-weight: 200;
    overflow-y: scroll;
    position: relative;
}

.overview-black-07 {
    background-color: rgba(0, 0, 0, 0.7);
}
.overview-black-06 {
    background-color: rgba(0, 0, 0, 0.6);
}

.overview-black-03 {
    background-color: rgba(0, 0, 0, 0.3);
}
.overview-black-02 {
    background-color: rgba(0, 0, 0, 0.2);
}
.overview-black-01 {
    background-color: rgba(0, 0, 0, 0.1);
}
.overview-black-00 {
    background-color: transparent;
}

#scroll-navbar{
    background-color:var(--color-1);
}


.inicio-section {
    background-image: url("../images/bg/inicio.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    margin: 0;
    height: 100%;
    padding: 60px 0 180px 0;
    color: var(--color-dark);
}

.inicio-section .countdown {
    margin-top: 25px;
    margin-bottom: 20px;
}
.inicio-section .countdown .item{
    text-align: center;
    text-transform: uppercase;
    margin: 10px;
}
.inicio-section .countdown .item h1{
    background-color: var(--color-dark);
    padding: 13px 0;
    font-size: 25px;
    color: var(--color-light);
    width: 55px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    height: 55px;
    text-align: center;
}
.inicio-section .countdown .item h6{
    font-size: 11px;
    color: var(--color-dark);
}

.inicio-section .logo {
    max-width: 350px;
    width: 100%;
}
.inicio-section .title {
    font-family: var(--font-family-title), sans-serif;
    font-size: 60px;
    font-weight: 600;


}
.inicio-section .subtitle {
    font-size: 18px;
    font-weight: 300;
}
.inicio-section .links > a {
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
    margin: 5px 10px;
}

.inicio-section .more-info-scroll{
    cursor: pointer;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    position: relative;
    display: inline-block;
}
.inicio-section .more-info-scroll:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}


.programa-section{
    padding: 100px 0;
    height: 100%;

    position: relative;
    background: url("../images/bg/bg_bienvenida_01.jpg");
    background-size: cover;
    background-attachment: fixed;

}
.programa-section:after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,84,61,  0.90);
}
.programa-section .programa-section-content{
    z-index: 9;
    position: relative;
}
.programa-section .programa-section-content .title-section{
    font-family: var(--font-family-title);
    font-weight: 500;
    color: #FFF;
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.programa-section #tab-programa {
    text-align: center;
    margin: 0 auto;
    border-bottom: none;
    justify-content: center;
}
.programa-section #tab-programa .nav-link{
    border: 1px solid;
    border-color: #e9ecef #e9ecef #dee2e6;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #dee2e6;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    color: #343a40;
}
.programa-section #tab-programa .nav-link:hover{
    color: #000;
}
.programa-section #tab-programa .nav-link:first-child{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.programa-section #tab-programa .nav-link:last-child{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.programa-section #tab-programa .nav-link.active {
    color: #FFF;
    background-color: var(--color-5);
    border-color: var(--color-5) var(--color-5) var(--color-5);
}

.programa-section #tab-content-programa{
    padding: 50px 0 30px 0;
    color: var(--color-light);
}

.programa-section .nombre-sala{
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
}

.programa-section .table-bht-congress{
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 100%;
}
.programa-section .table-bht-congress tbody td{
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    vertical-align: middle;
    padding: 5px 4px 10px 4px;
    color: #FFF;
}

.programa-section .table-bht-congress tbody tr.bloque td{
    padding-top: 50px;
    padding-bottom: 0;
}
.programa-section .table-bht-congress tbody tr.bloque:first-child td{
    padding-top: 10px;
}

.programa-section .table-bht-congress tbody tr.bloque td.nombre-bloque,
.programa-section .table-bht-congress tbody tr.bloque td.horario-bloque{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 18px;
    color: #FFF;
}

.programa-section .table-bht-congress tbody tr.coordinadores td{
    font-size: 12px;
    padding-top: 0;
    padding-bottom: 18px;
}

.programa-section .table-bht-congress tbody td.t_inicio{
    border-right: 2px solid  var(--color-5);
    width: 65px;
}
.programa-section .table-bht-congress tbody td.tema{
    padding-left: 10px;
    border-right: 2px solid var(--color-5);
    padding-right: 15px;
}
.programa-section .table-bht-congress tbody td.expositor{
    padding-left: 10px;
    width: 250px;
}

.profesor-section{
    padding: 100px 0;
    height: 100%;

    position: relative;
    background: url("../images/bg/bg_bienvenida_02.jpg");
    background-size: cover;
    background-attachment: fixed;
}
.profesor-section:after{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(233, 233, 242, 0.90);
}

.profesor-section .profesor-section-content{
    z-index: 9;
    position: relative;
}

.profesor-section .title-section{
    font-family: var(--font-family-title);
    font-weight: 500;
    color: var(--color-1);
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.profesor-section .profesor{
    text-align: center;
    margin-bottom: 30px;
}

.profesor-section .profesor img{
    border: 2px solid var(--color-1);
    max-width: 180px;
    margin-bottom: 6px;
    border-left: 3px solid var(--color-2);
    border-right: 3px solid var(--color-3);
    border-bottom: 3px solid var(--color-4);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.profesor-section .profesor h4{
    font-size: 14px;
    font-family: var(--font-family-title);
    color: var(--color-1);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.profesor-section .profesor h5{
    font-size: 12px;
    font-weight: 500;
    color: var(--color-3);
    text-transform: uppercase;
    margin-bottom: 2px;
}
.profesor-section .profesor p{
    font-size: 12px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0;
}

@media (min-width: 992px) {

    .profesor-section .list-ponentes li{
        float:left;
        width: 45%;
        padding-right: 20px;
    }
}

.costos-section{
    padding: 100px 0;
    height: 100%;
    position: relative;
    background-color: var(--color-1);
    color: #FFF;
}
.costos-section .costos-section-content{
    z-index: 9;
    position: relative;
}
.costos-section .title-section{
    font-family: var(--font-family-title);
    font-weight: 500;
    color: var(--color-light);
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}
.costos-section .table-view02{
    color: var(--color-light);
}

.patrocinadores-section{
    padding: 60px 0 100px;
    height: 100%;
    position: relative;
    background-color: var(--color-light);
    color: var(--color-1);
}
.patrocinadores-section .title-section {
    font-family: var(--font-family-title);
    font-weight: 500;
    color: var(--color-01);
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}
.patrocinadores-section .patrocinadores-carousel{
    padding: 30px 40px 0 40px;
}

.hotel-section{
    padding: 100px 0;
    height: 100%;
    position: relative;
    background-color: var(--color-2);
    color: #FFF;
}

.registrate-section{
    padding: 60px 0;
    background-color: var(--color-1);
    color: #FFF;
}

.space10{
    min-height: 10px;
}

.space30{
    min-height: 30px;
}


/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .title {
        font-size: 60px;
        line-height: 70px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    .title {
        font-size: 26px;
        line-height: 40px;
    }


}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {  }





/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  }

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }




