/********** Template CSS **********/
:root {
    --primary: #EE7528;
    --light: #FFF5F3;
    --dark: #103741;
    --gris: #74787C;

    --azul: #0126FF;
    --gris-fondo: #C2C1C1;
    --gris-footer: #E5E5E5;
    --gris-texto: #C2C1C1;
    --blanco: #FFFFFF;
    --green: #06b781;
    --font-poppins: 'Poppins', sans-serif;

    --orange: #ff8800;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.btn-blue{
    background-color: var(--azul) !important;
}

.jconfirm-type-blue{
    border-top: solid 7px var(--azul) !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.area-menu{
    border-bottom: 1px solid var(--gris-fondo);
    margin-bottom: 1em;
}

.field-required{
    color: red;
}


/*** Button ***/
.btn {
    font-weight: 700;
    transition: .5s;
    font-family: var(--font-poppins);
}

.btn.btn-orange {
    color: var(--blanco);
    background-color: var(--primary);
    border-radius: 50px;
}

.btn.btn-green {
    color: var(--blanco);
    background-color: var(--green);
    border-radius: 10px;
}

.btn.btn-azul {
    color: var(--blanco) !important;
    background-color: var(--azul) !important;
    border-radius: 50px;
}

.btn.btn-gray{
    background-color: var(--gris-fondo);
    color: var(--gris-texto);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

body{
    background-color: var(--blanco);
    font-family: var(--font-poppins);
}


/*** Heading ***/
h1,h2,h3,h4,h5,h6,p,span{
    font-family: var(--font-poppins) !important;
    text-wrap: pretty;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 800;
}

h1,h2,h3,h4{
    color: var(--primary);
}

.font-secondary {
    font-family: var(--font-poppins) !important;
}

.logo{
    width: 100%;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 15px 15px;
    color: var(--azul);
    font-weight: 700;
    outline: none;
    text-decoration: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    /*background-color: var(--primary);*/
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    /*background: url(../img/bg-header-top.png) center center repeat-x;*/
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    /*background: url(../img/bg-header-bottom.png) center center repeat-x;*/
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}

.team-item a:hover{
    background-color: var(--primary);
    color: var(--blanco);
}

/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer{
    background-color: var(--gris-footer);
    color: var(--gris-texto) !important;
    border-top: 2px solid var(--gris-texto);
    border-bottom: 2px solid var(--gris-texto);
}

.footer h1,
.footer h2,
.footer h3{
    color: var(--gris-texto) !important;
}

.footer p{
    margin: 0;
    padding: 0;
}

.footer p a{
    color: var(--gris-texto);
    text-decoration: none;
}

.footer p a:hover{
    color: var(--primary);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-texto);
    border: 1px solid var(--gris-texto);
    border-radius: 45px;
    transition: .3s;
}

.footer .social{
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.footer .social span{
    margin-right: 5px;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.boletin{
    border: 2px solid var(--azul);
    border-radius: 2em;
    padding: 2em 0;
    align-items: center;
}

.boletin h5{
    color: var(--azul);
}

.boletin-index{
    border: 2px solid var(--azul);
    border-radius: 2em;
    padding-bottom: 1.5em;
    align-items: center;
}

.boletin-index img{
    width: 75%;
}

.boletin-index h5{
    color: var(--azul);
}

.btn-boletin{
    width: 50%;
}

.owl-nav.disabled + .owl-dots {
    margin-top: 10px; }
  
  .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent; }
    .owl-dots .owl-dot {
      display: inline-block;
      zoom: 1;
      *display: inline; }
      .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 7px;
        background: #D6D6D6;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 30px; }
      .owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
        background: #869791; }

.month-option{
    width: 100%;
    height: 200px;
    /*background-color: var(--gris-fondo);*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    text-align: center;
}

.event > a{
    display: block;
    position: relative;
}

.event > a > div.event-option,
.event > a > div.event-text
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.event > a > div.event-option{
    background-color: var(--azul);
    opacity: 0.5;
}

.event > a > div.event-text{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event > a > div.event-text h5{
    color: var(--blanco) !important;
}



.flex-container {
  display: flex;
  flex-wrap: nowrap;
  background-color: DodgerBlue;
}

.speaker-photo{
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
}

.speaker-photo .photo{
    width: 200px;
    /*height: 200px;*/
    border-radius: 100px;
    margin-bottom: 1em;
}

.speaker-carousel .item{
    margin: 0 1em;
}

.wrapper{
    display: grid;
}

.wrapper > div{
    /*background-color: var(--gris-fondo);*/
    margin-right: 1em;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.formula-sp{
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    align-items: center;
    justify-content: center;
}

.formula-sp .photo{
    width: 200px !important;
    /*height: 200px;*/
    border-radius: 100px;
    margin-bottom: 1em;
}

.owl-item img {
    display: inline !important;
    width: 100%;
}

.taller-carousel .item{
    margin: 0 1em;
    /*border: 1px solid var(--gris-fondo);*/
    text-align: center;
}

.taller-carousel .item img{
    width: 100%;
    height: 100%;
}

.taller-carousel .item .taller-option{
    padding-bottom: 0.5em;
}

.taller-carousel .item .taller-option > div > div.soldout{
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    align-content: center;
    font-weight: bolder;
    font-size: 45px;
    color: var(--dark);
    border-radius: 11%;
    
}

.taller-carousel .item .taller-option .soldout p{
    text-shadow: 0 0 5px #fff;
    text-decoration: solid;
    transform: rotate(-35deg);
}

.paquetes-carousel .item{
    margin: 0 1em;
    /*border: 1px solid var(--gris-fondo);*/
    text-align: center;
    border-radius: 10%;
}

.paquetes-carousel .item img{
    width: 100%;
    height: 100%;
}

.paquetes-carousel .item .paquete-option{
    padding-bottom: 0.5em;
}

.turismo-carousel .item{
    margin: 0 1em;
    /*border: 1px solid var(--gris-fondo);*/
    text-align: center;
    border-radius: 10%;
}

.turismo-carousel .item img{
    width: 100%;
    height: 100%;
}

.turismo-carousel .item .turismo-option{
    padding-bottom: 0.5em;
}

.turismo-carousel .item .turismo-option a{
    margin-top: -115px !important;
}

.expositor-carousel .item-exp{
    width: 100px;
    height: 100px;
}

.expositor-carousel .item-exp img.photo{
    width: 90px;
}

hr{
    margin: 3em 0;
    border: 1px solid;
}

.directorio-option{
    border: 1px solid var(--gris-fondo);
    padding-bottom: 0.5em;
    text-align: center;
    width: 100%;
    height: 620px;
}

.directorio-option p,
.directorio-option h5,
.directorio-option a{
    margin: 0 10px;
}

.directorio-option h5{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: left !important;
}

.directorio-option p{
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    text-align: left !important;
    vertical-align: middle;
    align-items: center;
}

.directorio-option p i{
    margin-right: 10px;
}

.directorio-option > a{
    width: 70%;
    text-align: center;
    align-items: center;
    bottom: 0;
}

.directorio-option hr{
    margin: 0 !important;
    margin: 0 4% 0 4% !important;
    border: none !important;
}

.directorio-option .photo{
    width: 308px;
    height: 288px;
}

.modal-header{
    background-color: var(--primary);
    padding: 5px 1rem 5px 1rem !important;
}

.modal-header h6{
    color: var(--blanco);
}

.modal-header button.close{
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 18pt;
}

.modal-body label, 
.modal-body p, 
.modal-body small{
    color: var(--dark);
    font-family: var(--font-poppins);
}

.modal-footer{
    flex-wrap: nowrap;
}

.modal-footer button{
    width: 35%;
}

.fa-whats::before{
    background-image: url('../img/BOCETO-ICONOS-DIR-CVCB-10.svg');
    content: '';
    height: 32px;
    width: 32px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center !important;
    text-align: center;
    align-items: center;
}


.fa-link::before{
    background-image: url('../img/BOCETO-ICONOS-DIR-CVCB-11.svg');
    content: '';
    height: 32px;
    width: 32px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center, 50%, 50%;
    text-align: center;
    align-items: center;
}

.fa-ubi::before{
    background-image: url('../img/BOCETO-ICONOS-DIR-CVCB-12.svg');
    content: '';
    height: 32px;
    width: 32px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center, 50%, 50%;
    text-align: center;
    align-items: center;
}

.fa-fb::before{
    background-image: url('../img/BOCETO-ICONOS-DIR-CVCB-13.svg');
    content: '';
    height: 32px;
    width: 32px;
    display: inline-flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center, 50%, 50%;
    text-align: center;
    align-items: center;
}

.form-floating > label{
    font-size: 10pt !important;
}

.cinta{
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .wrapper{
        grid-template-columns: 20% 20% 20% 20% 20%;
    }

    .footer{
        align-items: center;
        text-align: center;
        /*border: 10px solid red;*/
    }

    .footer .logo-footer{
        width: 75px;
    }

    .footer .logo-pbsk{
        width: 100%;
    }

    .logo{
        width: 100%;
    }

    .nav-link{
        display: flex;
        align-items: center;
        align-content: center;
        text-align: center;
    }

    hr{
        margin: 1em 0;
    }

    .cinta{
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }

    .wrapper{
        grid-template-columns: 33% 33% 33%;
    }

    .footer{
        align-items: center;
        text-align: center;
        /*border: 10px solid blue;*/
    }

    .footer .logo-footer{
        width: 100px;
    }

    .footer .logo-pbsk{
        width: 35%;
    }

    .logo{
        width: 100%;
    }

    .boletin-index{
        align-items: center;
        justify-content: center;
    }

    .boletin-index img{
        width: 100px;
    }

    .boletin-index h5{
        text-align: center;
    }

    hr{
        margin: 1em 0;
    }

    .cinta{   
        background-size: 145% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (max-width: 768px) {
    
    .wrapper{
        grid-template-columns: 33% 33% 33%;
    }

    .footer{
        align-items: center;
        text-align: center;
        /*border: 10px solid green;*/
    }

    .footer .logo-footer{
        width: 75px;
    }

    .footer .logo-pbsk{
        width: 60%;
    }

    .logo{
        width: 100%;
    }

    .boletin-index h5,
    .boletin h5{
        font-size: 16px;
    }

    .boletin-index .btn,
    .boletin .btn{
        font-size: 12px;
    }

    .modal-footer button{
        width: 45%;
    }
    
    hr{
        margin: 1em 0;
    }

    .cinta{
        height: 80px;
        background-size: 145% 100%;
        background-repeat: no-repeat;
        background-position: center;
    }
}

#contenido > ul{
    list-style: none;
}

#contenido > ul li{
    margin-bottom: 1em;
}

.paquetes-carousel .item .paquete-option > div{
    position: relative;
}

.paquetes-carousel .item .paquete-option > div > div.soldout{
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    align-content: center;
    font-weight: bolder;
    font-size: 45px;
    color: var(--dark);
    border-radius: 11%;
    
}

.paquetes-carousel .item .paquete-option .soldout p{
    text-shadow: 0 0 5px #fff;
    text-decoration: solid;
    transform: rotate(-35deg);
}

.btn-social-center {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris);
    border: 2px solid var(--gris);
    border-radius: 45px;
    transition: .3s;
}

.social-center{
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.social-center span{
    margin-right: 5px;
}