/*===========================
  COMMON css 
===========================*/
:root {
    --body-color: #f6f6f6;
    --blue-color: #002c77;
    --darkblue-color: #002c77;
    --violet-color: #3f1bbb;
    --cyan-color: #3DB7E4;
    --magenta-color: #af2473;
    --gray-color: #f6f6f6;
    --white: #ffffff;
}

.color-gray {
    color: var(--gray-color);
}

.color-darkblue {
    color: var(--darkblue-color);
}

.color-body {
    color: var(--body-color);
}

.color-blue {
    color: var(--blue-color) !important;
}

.bg-blue {
    background-color: var(--blue-color);
}

.bg-gray {
    background-color: var(--gray-color);
}

.bg-magenta {
    background-color: var(--magenta-color);
}

.color-magenta {
    color: var(--magenta-color);
}

.bg-violet {
    background-color: var(--violet-color);
}

.bg-cyan {
    background-color: var(--cyan-color);
}

.color-cyan {
    color: var(--cyan-color);
}


body {
    font-family: "Montserrat", sans-serif;
    color: #002c77;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
    scroll-padding-top: 50px;
}

html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


a,
button,
input,
textarea {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}



button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}


i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


/* ==========================================================================
   text
========================================================================== */
h1,
h2,
43,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 15px;
    font-weight: 600;
}

h1 strong {
    font-weight: 800;
    font-size: 72px;

}

h2 {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 700;

}

h4 {
    font-size: 21px;
    font-weight: 700;

}

h5 {
    font-size: 18px;
    font-weight: 700;

}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #002c77;
    margin: 0px;
}

p.grande {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

.normal-txt {
    font-weight: 400;
}

/* ==========================================================================
   Navbar Style
   ========================================================================== */


h2.w-line {
    position: relative;
    background: var(--body-color);
    margin-bottom: 30px;
}

h2.w-line span {
    position: relative;
    z-index: 1;
    background: var(--body-color);
    padding-right: 10px;
}

h2.w-line:before {
    content: '';
    width: 100%;
    border-top: 2px solid var(--cyan-color);
    position: absolute;
    top: 50%;
    left: 0;
}

h2.w-line.animation-element:before {
    content: '';
    width: 0%;
    border-top: 2px solid var(--cyan-color);
    position: absolute;
    top: 50%;
    left: 0;
    transition: 1.2s all;
}

h2.w-line.animation-element.in-view:before {
    width: 100%;
}


h2.w-line-center {
    position: relative;
    background: #fff;
    margin-bottom: 30px;
}

h2.w-line-center span {
    position: relative;
    z-index: 1;
    background: #fff;
    padding-right: 10px;
    padding-left: 10px;
    line-height: 30px;
}

h2.w-line-center:before {
    content: '';
    width: 100%;
    border-top: 2px solid #faee5c;
    position: absolute;
    top: 50%;
    left: 0;
}

h2.w-line-center.animation-element:before {
    width: 0%;
    left: 50%;
    right: 50%;
    transition: 1.2s all;

}


h2.w-line-center.animation-element.in-view:before {
    width: 100%;
    left: 0%;
    right: 0%;
    transition: 1.2s all;

}


@-webkit-keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.rainbow {
    position: relative;

    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
}

.rainbow::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #3df0e3;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#3df0e3, #3df0e3), linear-gradient(#af2473, #af2473);
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite;
}

.rainbow::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 6px;
    top: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: white;
    border-radius: 5px;
}



/* ==========================================================================
   Navbar Style
   ========================================================================== */

.b-radius-30 {
    border-radius: 30px;
}

.b-radius-20 {
    border-radius: 20px;
}

.b-radius-10 {
    border-radius: 10px;
}

.p-10 {
    padding: 10px;
}

/* ==========================================================================
   Navbar Style
   ========================================================================== */

#site-header.menu-bg .brand a {
    background: url('../img/logos/EK_blanco.svg') center no-repeat;
    background-size: contain;
}



.brand a {
    width: 100%;
    height: 50px;
    display: block;
    background: url('../img/logos/EK_negro.svg') center no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

.navbar {
    opacity: 1 !important;
    pointer-events: all !important;

}

.dropdown-menu {
    padding: 20px 15px;
    left: -30px;
    background: #000;
}



.top-menu {
    background: var(--gray-color);
}

.navbar-nav.menu-idea {
    width: 100%;
    justify-content: space-between;
}


/* main-header start */
[data-target="#mainMenu"] {
    position: relative;
    z-index: 999;
}

#mainMenu li {}

#mainMenu li>a {
    font-size: 14px;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-decoration: none;
    padding-left: 5px;
    padding-right: 5px;
}

#mainMenu li>a.btn-link {
    color: var(--darkblue-color);
    background: var(--gray-color);
    border: 2px solid var(--gray-color);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 10px;
    margin-left: 10px;
}



#mainMenu li>ul>li a {
    text-transform: none;
    margin-bottom: 15px;
}


.main-header.fixed-nav #mainMenu li>a {
    color: #fff;
    text-decoration: none;
}

#mainMenu li {
    text-align: center;

}


#mainMenu li>a:hover,
#mainMenu li>a.active {
    color: var(--cyan-color)
}



#mainMenu li>a.btn-link:hover {
    background-color: var(--blue-color);
    color: var(--gray-color);
}


.main-header {
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 60px;
    background: var(--blue-color);
    /* 	background-image: linear-gradient(180deg,rgba(0,0,0,.7) 10%,transparent); */
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#main-header.hide {
    top: -106px;
}

#main-header.menu-bg {
    background: #002c77;
}


.main-header.fixed-nav {
    top: 0;
    background: #fff;
    -webkit-box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
    box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-header.fixed-nav .navbar-brand>img:last-of-type {
    display: block;
}

.main-header.fixed-nav .navbar-brand>img:first-of-type {
    display: none;
}

.navbar-brand {
    color: #fff;
}

.main-header .navbar-brand img {
    width: 105px;
    max-width: 100%;
    min-width: 80px;
    height: auto;
    animation: fadeInLeft 0.4s both 0.4s;
}

/* main-header end */
@media (max-width: 991px) {

    /*header starts*/
    .collapse.in {
        display: block !important;
        padding: 0;
        clear: both;
    }

    .main-header .navbar {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .main-header .navbar-nav {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .main-header .navbar-nav li {
        text-align: center;
        padding: 10px 0px;

    }

    .navbar-collapse {
        background: var(--blue-color);
    }

    /**/
    .navbar-toggle {
        background: none;
        margin: 0;
        padding: 0;
        border: none;
        position: relative;
        height: 20px;
        width: 30px;
    }


    .navbar-toggle .icon-bar {
        position: absolute;
        width: 100%;
        height: 3px;
        background: #fff;
        padding: 0;
        left: 0;
        top: 8px;
    }

    .navbar-toggle .icon-bar:first-child,
    .navbar-toggle .icon-bar:last-child {
        position: absolute;
        width: 100%;
        left: 0;
        background: #fff;
        top: 0px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .navbar-toggle .icon-bar:nth-child(3) {
        top: 17px;
    }

    .navbar-toggle .icon-bar:nth-child(2) {
        background: transparent;
    }

    .navbar-toggle .icon-bar:nth-child(3) {
        -webkit-transform: rotate(45deg) translate(-4px, -5px);
        transform: rotate(45deg) translate(-4px, -5px);
    }

    .navbar-toggle .icon-bar:first-child {
        top: 4px;
        -webkit-transform: rotate(-45deg) translate(-4px, 5px);
        transform: rotate(-45deg) translate(-4px, 5px);
    }

    .navbar-toggle.collapsed .icon-bar:nth-child(2) {
        background: #fff;
    }

    .navbar-toggle.collapsed .icon-bar:nth-child(3) {
        -webkit-transform: rotate(0deg) translate(0px, 0px);
        transform: rotate(0deg) translate(0px, 0px);
    }

    .navbar-toggle.collapsed .icon-bar:first-child {
        top: 0;
        -webkit-transform: rotate(0deg) translate(0px, 0px);
        transform: rotate(0deg) translate(0px, 0px);
    }

    /*header ends*/
}



ul.social {
    display: flex;
    align-items: center;
}

ul.social li {
    margin: 0 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    background: transparent;
    text-align: center;
}

ul.social li a {
    transition: 0.3s all;
}

ul.social li:hover {
    transition: 0.3s all;
}

ul.social li:hover a {
    transition: 0.3s all;
}


/* ==========================================================================
 INTRO  
   ========================================================================== */


a.bt-common {
    background: #3c84b9;
    padding: 10px 40px 10px 40px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

a.bt-common:hover {
    background: #002c77;
    color: #fff;
    background-size: 30px;
}

.filtered {
    background: #002356;
    position: relative;
}

.filtered img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}

.icono {
    width: 75px;
}

/* ==========================================================================
 INTRO  
   ========================================================================== */
.inicio {
    background: url('../img/hero-desk.png') right bottom no-repeat;
    background-size: 100%;
    padding-top: 60px;
    padding-bottom: 150px;
    height: calc(100vh + 150px);
    display: flex;
    align-items: center;
}

.welcome {
    width: 80%;
    max-width: 420px;
}

.brand-hero {
    width: 100%;
}


.inicio h4 {
    font-weight: 400;
    color: #101077;
    margin-bottom: 0px;
    font-size: 21px;
}

.inicio h3 {
    font-weight: 700;
    color: #101077;
    font-size: 32px;

}

.inicio h3 i {
    color: var(--magenta-color);
}

.date p {
    font-size: 18px;
}

.date p strong {
    font-size: 21px;
}

a.tickets {
    background: url(../img/explorar-w.png) no-repeat 15px center var(--magenta-color);
    background-size: 30px;
    padding: 10px 40px 10px 60px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

a.tickets:hover {
    background: url(../img/explorar-w.png) no-repeat 20px center var(--body-color);
    background-size: 30px;
}


.box-animacion {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(67vh - 30px);
    background: var(--magenta-color);
}

.box-animacion img {
    position: absolute;

    transform: translate(-50%, -50%);
}


.rotate-in-center {
    -webkit-animation: rotate-in-center 60s linear infinite both;
    animation: rotate-in-center 60s linear infinite both;
}

.rotate-in-center-2 {
    -webkit-animation: rotate-in-center 10s linear infinite reverse both;
    animation: rotate-in-center 10s linear infinite reverse both;
}

@-webkit-keyframes rotate-in-center {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotate-in-center {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.box-logo-idea {
    position: relative;
    overflow: hidden;
    width: 90%;
    height: calc(33vh - 30px);
    margin: auto;
}

.intro-deco {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(33vh - 30px);
    background: url("../img/intro-03.svg") no-repeat right top;
}


@media (max-width:1190px) {
    .inicio {
        height: auto;
    }

    .welcome {
        width: 80%;
        max-width: 700px;
    }

    .brand-hero {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width:1190px) {
    .inicio {
        height: auto;
    }

    .welcome {
        width: 100%;
        max-width: 100%;
    }

    .brand-hero {
        width: 100%;
        max-width: 280px;
    }
}


/* ==========================================================================
 INTRO  
========================================================================== */

section {
    outline: 0;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

@media (max-width:1190px) {
    section {
        padding: 30px 0;
    }
}

@media (max-width: 991px) {
    .box-animacion {
        height: calc(50vh - 30px);
    }

}

@media (max-width: 767px) {

    .box-animacion {
        height: calc(36vh - 30px);
    }



}

@media (max-width: 575px) {


    .box-logo-idea {
        width: 100%;
        height: calc(18vh - 15px);
    }


}

/* ==========================================================================
 SECTIONS
========================================================================== */
.el-evento {
    padding-top: 20px;
}

.comite {
    padding: 10px 0;
}

.pricing {
    padding: 10px 0;
}

.comite .deco.deco-01 {
    position: absolute;
    right: -250px;
    top: -50px;
}

.content-speaker {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

img.img-speaker {
    width: 100%;
}

.data-speaker {
    position: absolute;
    top: 100%;
    width: 100%;
}

.nombre-speaker {
    height: 50px;
}

.data-speaker p {
    font-size: 14px;
    line-height: 1.2;
}

.data-speaker h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.content-speaker:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    bottom: 0;
    opacity: 1;
    transition: ease-in 0.3s;
}




.slick-dotted.slick-slider.carousel-speakers {
    padding: 20px;
    margin-bottom: 70px;
}

.carousel-speakers .item-speak {

    padding: 10px 10px 30px;
    border-radius: 15px;

}

.carousel-speakers .item-speak>div {
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
}

.content-speaker {
    padding-bottom: 0;
    margin-bottom: 0;
}

.content-speaker .data-speaker {
    position: relative;
    top: auto;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 10;
    padding: 20px 10px 10px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s;
}

.content-speaker .data-speaker h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.data-speaker h6 {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0;
}

.nombre-speaker {
    height: auto;
    padding-bottom: 5px;
}


.listado-speakers {
    display: flex;
    flex-wrap: wrap;
}

.listado-speakers .item-speak {
    width: 20%;
    padding: 10px 10px 30px;
    border-radius: 15px;

}

.listado-speakers .item-speak>div {
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .listado-speakers .item-speak {
        width: 25%;
        padding: 10px 10px 30px;
        border-radius: 15px;
    }
}

@media (max-width: 767px) {
    .listado-speakers .item-speak {
        width: 50%;
        padding: 10px 10px 30px;
        border-radius: 15px;
    }
}



/* ==========================================================================
 AGENDA
========================================================================== */

.nav-tabs {
    border-bottom-color: transparent;
}

.nav-tabs .nav-link {
    font-size: 27px;
    font-weight: 600;
    padding: 10px;
    padding-right: 50px;
    padding-left: 0;
    line-height: 1;
    color: #888;
    margin: 0 15px;
}

.nav-tabs .nav-link span {
    font-size: 18px;
    font-weight: 400;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #002c77;
    background-color: transparent;
    border-color: transparent;
    border-bottom: 2px solid #0987c2;
}

@media (max-width: 768px) {
    .nav-tabs {
        margin-bottom: 40px;
    }

    .nav-tabs .nav-link {
        font-size: 20px;
        font-weight: 600;
        padding: 5px;
        padding-right: 5px;
        padding-left: 0;
        margin: 0 7px;
    }
    
    .nav-tabs .nav-link span {
        font-size: 13px;
    }
        
}


/* ======================================================================= */


#content {
    margin-top: 50px;
    text-align: center;
}

#accordionDia-3,
#accordionDia-2,
#accordionDia-1 {
    border-left: 0.25em solid #0987c2;

    margin: 2em auto;
    line-height: 1.4em;
    padding: 1em;
    padding-left: 3em;
    list-style: none;
    text-align: left;
    margin-left: 10em;
    margin-right: 3em;
    min-width: 22em;
}

.accordion-item {
    min-width: 20em;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
    position: relative;
    background-color: transparent;
    border: 0;
    margin-bottom: 10px;
    transition: 0.3s all;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}



.accordion-button:not(.collapsed) {
    color: #002c77;
    background-color: var(--body-color);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 20px;
    color: #002c77;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
    font-weight: 700;
    transition: 0.3s all;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}




.accordion-item:before,
.accordion-item:after {
    position: absolute;
    display: block;
    top: 1em;
}

.accordion-item:before {
    left: -15em;
    color: #002c77;
    content: attr(data-date);
    text-align: right;
    font-weight: 600;
    font-size: 0.9em;
    min-width: 9em;
}

.accordion-item:after {
    box-shadow: 0 0 0 0.2em #0987c2;
    left: -3.5em;
    background: var(--body-color);
    border-radius: 50%;
    height: 0.75em;
    width: 0.75em;
    content: "";
}

.no-move.accordion-button {
    background: rgba(155, 204, 250, 0.24);
}

.no-move.accordion-button:before,
.no-move.accordion-button:after {
    display: none;
}


.accordion-body {
    padding: 1rem 1.25rem;

}

.accordion-collapse.collapse.show {
    background: var(--body-color);

}

.accordion-collapse.collapse.show {

    box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
    -webkit-box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);

}

.accordion-item:hover {
    box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
    -webkit-box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
}

#accordionFAQ .accordion-item {
    box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
    -webkit-box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 1px 10px 11px 0px rgba(0, 0, 0, 0.21);
}

#accordionFAQ .accordion-item:after,
#accordionFAQ .accordion-item:before {
    display: none;
}

#accordionFAQ .accordion-body ol,
#accordionFAQ .accordion-body ul {
    padding-left: 30px;
}

#accordionFAQ .accordion-body ul li {
    list-style: disc;
}

#accordionFAQ .accordion-body ol li {
    list-style: number;
}

#accordionFAQ .accordion-body p {
    margin-bottom: 10px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../img/descarga.svg");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../img/descarga.svg");
    transform: rotate(-180deg);
}

.accordion-body h6 {
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.content-speaker-agenda {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.content-speaker-agenda .img-speaker {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 2px solid #faee5c;
    overflow: hidden;
    margin-right: 20px;
    background-size: cover;

}

.content-speaker-agenda .data-speaker {
    position: relative;

    width: calc(100% - 100px);
}

.content-speaker-agenda .nombre-speaker {
    height: auto;
}

.content-speaker-agenda .data-speaker p {
    font-size: 14px;
    line-height: 1.4;
}

.content-speaker-agenda .data-speaker h4 {
    padding-top: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width:1190px) {}

@media (max-width: 991px) {

    #accordionDia-2,
    #accordionDia-1,
    #accordionDia-3 {
        margin: 2em auto;
        line-height: 1.4em;
        padding: 1em;
        padding-left: 25px;

        margin-left: 110px;
        margin-right: 0;

    }

    .accordion-item:before {
        left: -166px;
        content: attr(data-date);
        text-align: right;
        font-weight: 600;
        font-size: 12px;
        min-width: 90px;
    }

    .accordion-item:after {
        left: -33px;
    }

    .accordion-item {
        min-width: 0;
        width: 100%;


    }
}

@media (max-width: 767px) {

    #accordionDia-2,
    #accordionDia-1,
    #accordionDia-3 {
        margin-left: 0px;
        min-width: 0;
        border-left: 0;
        padding: 0 0px 20px;
        margin-top: 0;
    }

    .accordion-button {
        font-size: 18px;
        ;
    }

    .accordion-item:before {
        left: 15px;
        text-align: left;
        top: 0px;
        z-index: 20;
        font-size: 14px;
    }

    .accordion-button {
        padding: 20px 15px 15px 15px;
        margin-top: 10px;
    }

    .accordion-item:after {
        display: none;
    }

}


/*========================================================================== */

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 10px;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* End: Video Responsive */


/* ==========================================================================
 SLICK
========================================================================== */
.slick-track {
    align-items: stretch;
    display: flex;
}

.slick-slide {
    height: auto;
}

.sponsor-item img {
    width: 100%;
}

.sponsor-item {
    background: white;
    border-radius: 15px;
    overflow: hidden
}

.slick-slide {
    margin: 0 5px;
}

/* the parent */
.slick-list {
    margin: 0 -5px;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    /*border: 2px solid #9bccfa;*/
    padding: 20px;
    top: calc(100% + 46px);
    z-index: 10;
}


.slick-next {
    right: 10px;
    background: url("../img/explorar-w.png") no-repeat center transparent;
    background-size: 30px;
}

.slick-next:hover {
    right: 0px;
}

.slick-next:hover,
.slick-next:focus {
    background: url("../img/explorar-w.png") no-repeat center var(--darkblue-color);
    background-size: 30px;
}

.slick-prev {
    left: calc(100% - 130px);
    background: url("../img/explorar-w-l.png") no-repeat center transparent;
    background-size: 30px;
}

.slick-prev:hover {
    left: calc(100% - 140px);
}

.slick-prev:hover,
.slick-prev:focus {
    background: url("../img/explorar-w-l.png") no-repeat center var(--darkblue-color);
    background-size: 30px;
}



.slick-prev:before,
.slick-next:before {
    display: none;
}

.carousel-with-arrows {
    padding: 20px;
}

.carousel-speakers .slick-prev,
.carousel-speakers .slick-next,
.carousel-with-arrows .slick-prev,
.carousel-with-arrows .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 0;
    padding: 20px;
    top: calc(50% - 25px);
    z-index: 10;
}


.carousel-speakers .slick-next,
.carousel-with-arrows .slick-next {
    right: -20px;
    background: url("../img/explorar-w.png") no-repeat center transparent;
    background-size: 30px;
}

.carousel-speakers .slick-next:hover,
.carousel-with-arrows .slick-next:hover {
    right: -20px;
}

.carousel-speakers .slick-prev,
.carousel-with-arrows .slick-prev {
    left: -20px;
    background: url("../img/explorar-w-l.png") no-repeat center transparent;
    background-size: 30px;
}

.carousel-speakers .slick-prev:hover,
.carousel-with-arrows .slick-prev:hover {
    left: -20px;
}





.box-beneficios {
    padding-top: 80px;
    position: relative;
}

.box-beneficios:after {
    content: '';
    height: 0px;
    position: absolute;
    left: calc(50% - 2px);
    top: 0;
    border-left: 3px solid var(--cyan-color);
    transition: 1s all;
}

.box-beneficios.in-view:after {
    height: 80px;
}



.box-beneficios>div {
    padding: 40px;
    text-align: center;
    border-radius: 25px;
    /*border: 3px solid var(--cyan-color);*/
}

.box-beneficios h4 {
    line-height: 1.4;
}

.box-beneficios>div.rainbow {}

.box-beneficios>div.rainbow::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 3px;
    top: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: var(--body-color);
    border-radius: 18px;
}

.box-beneficios>div.rainbow::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: var(--cyan-color);
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#3df0e3, #3df0e3), linear-gradient(#af2473, #af2473);
    -webkit-animation: rotate 15s linear infinite;
    animation: rotate 15s linear infinite;
}

.img-sede {
    border-radius: 10px;
}



.sponsor-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    align-items: center;
    grid-gap: 24px;
    gap: 24px;
    margin: auto;
    width: 100%;
}

@media (max-width:1399px) {

    .sponsor-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}


@media (max-width:991px) {

    .sponsor-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-speakers .slick-prev,
    .slick-prev {
        left: calc(50% - 60px);
        background: url("../img/explorar-w-l.png") no-repeat center transparent;
        background-size: 30px;
    }

    .carousel-speakers .slick-next,
    .slick-next {
        right: calc(50% - 60px);
        background: url("../img/explorar-w.png") no-repeat center transparent;
        background-size: 30px;
    }

    .carousel-speakers .slick-prev:hover,
    .slick-prev:hover {
        left: calc(50% - 50px);
    }

    .carousel-speakers .slick-next:hover,
    .slick-next:hover {
        right: calc(50% - 50px);
    }

    .carousel-speakers .slick-prev,
    .carousel-speakers .slick-next {
        top: calc(100% + 25px);

    }

}


@media (max-width:767px) {

    .sponsor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:575px) {

    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


ul.incluye {}

ul.incluye li {
    padding: 3px 0 0px 35px;
    margin-bottom: 2px;
    background: url(../img/incluye.svg) no-repeat left 8px;
}

ul.incluye.no-incluye li {
    padding: 3px 0 0px 30px;
    margin-bottom: 2px;
    background: url(../img/no-incluye.svg) no-repeat left 8px;
}

/* ==========================================================================
 FOOTER
========================================================================== */
.ediciones-pasadas {
    padding: 10px 0 100px;
}

.item-ediciones.slick-slide>div {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    position: relative;
    height: 100%;
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.15);
}

.item-ediciones.slick-slide {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 0px 5px 20px;
}


.item-ediciones.slick-slide a {
    transition: 0.3s all;


}

.data-ediciones {
    padding: 15px 15px 60px;
}

.data-ediciones h5 {
    font-size: 12px;
    color: var(--darkblue-color);
    font-weight: 400;
}

.data-ediciones h3 {
    font-size: 18px;
}

.data-networking {
    padding: 15px 15px;
}

.data-networking h5 {
    font-size: 12px;
    color: var(--darkblue-color);
    font-weight: 400;
}

.data-networking h3 {
    font-size: 18px;
}

.data-networking .brand {
    width: 150px;
}

.item-ediciones.slick-slide a .data-ediciones span.simil-btn {
    position: absolute;
    left: 15px;
    bottom: 30px;
    color: var(--blue-color);
    font-weight: 700;
    padding: 5px 35px 5px 0;
    background: url("../img/arrow-go.svg") no-repeat right center;
    transition: 0.3s all;

}

.item-ediciones.slick-slide a:hover .data-ediciones span.simil-btn {
    padding-right: 45px;
}

.slick-dots {
    left: 0px;
    bottom: -60px;
}

.slick-dots li button {
    padding: 3px;
    border-radius: 100%;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 18px;
    line-height: 23px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #D9D9D9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--darkblue-color);
}

/* ==========================================================================
 FOOTER
========================================================================== */
.card {
    background-color: rgba(255, 255, 255, 0.20);
    border-radius: 20px;
    height: 100%;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
 FOOTER
========================================================================== */
footer {
    background: #002c77;
    color: white;
}

footer p {
    font-size: 14px;
    color: white;
}


footer p a,
footer a {
    font-size: 14px;
    color: white;
}






/* ==========================================================================
 RESPONSIVE
========================================================================== */



@media (max-width:1190px) {}

@media (max-width: 991px) {}

@media (max-width: 767px) {
    .inicio {
        background: url('../img/hero-mobile.png') right top no-repeat;
        background-size: 100%;
        padding-top: 190px;
        padding-bottom: 0px;
    }

    .inicio h3 {
        font-size: 21px;
    }

    h1 strong {
        font-size: 52px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    .comite {
        padding: 0px 0 50px;
    }

    .carousel-speakers {
        margin-bottom: 50px;
    }


}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Optional Delays, change values here  */
.one {
    animation-delay: 0.2s;
}

.two {
    animation-delay: .6s;
}

.three {
    animation-delay: 1s;
}

.four {
    animation-delay: 1.4s;
}

/* Animations start here  */

/* FADE IN  */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}


/* FADE IN DOWN */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

/* FADE IN UP */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* FADE IN UP BIG */

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

/* FADE IN LEFT */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0)rotateZ(30deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

/* FADE IN LEFT BIG */

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

/* FADE IN RIGHT */

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

/* @end standaard animaties  */


.callout {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 100px
}

.test.in-view {
    animation: fadeInUp 2s;
}

.test2.in-view {
    animation: fadeInLeftBig;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: both;
    backface-visibility: hidden;
}