html {
    --primary-color: #1733CF;
    --secondary-color: #C31332;
    --tertiary-color: #21282A;
    --p-color: #1D1D1B;
    --color-light: #f5f5f5;

  	scroll-behavior: smooth !important;
}

a {
  text-decoration: none;
}

#filtervideo {
	background: linear-gradient(97deg,rgba(195, 19, 50, 0.9) 15%, rgba(23, 51, 207, 0.9) 55%);
}

.banner {
	text-align: center;
	position: relative;
}

.banner-text {
  padding: 5px 20px;
	border-radius: 6px;
  -webkit-box-shadow: 1px 1px 14px -5px rgb(0 0 0 / 24%);
  -moz-box-shadow: 1px 1px 14px -5px rgba(0, 0, 0, 0.24);
  box-shadow: 1px 1px 14px -5px rgb(0 0 0 / 24%);
  font-size: 26px;
  background: linear-gradient(97deg, rgba(23, 51, 207, 0.5) 15%, rgba(195, 19, 50, 0.5) 55%);
  width: fit-content;
  margin: 0 auto 15px auto;
}

.banner h1 {
	font-size: 70px;
}

.banner h1 span {
  font-size: 60px;
}

.banner h2 {
  margin-bottom: 45px;
}

.btn-arrow, .btn-arrow:hover, .btn-arrow:focus,
.icon-button, .icon-button:hover, .icon-button:focus, .icon-button:active {
  background-color: var(--primary-color);
  color: white !important;
  border: none;
  font-weight: bold;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  border-radius: 6px;
}

.icon-button, .icon-button:hover, .icon-button:focus {
  padding: 10px 15px 10px 50px;
}

.icon-button::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
	filter: brightness(0) invert(1);
  left: 15px;
  top: 10px;
  background-image: url('../images/icons/icon-register.svg');
  width: 25px;
  height: 30px;
  background-size: contain;
}

.icon-button.program::before {
  background-image: url('../images/icons/icon-program.svg');
  width: 25px;
  height: 30px;
  background-size: contain;
}

.icon-button.send::before {
  background-image: url('../images/icons/icon-send.svg');
  width: 25px;
  height: 30px;
  background-size: contain;
}

.btn-arrow:after {
	content: "";
	width: 30px;
	height: 30px;
	background-image: url('../images/icons/arrow-blue.svg');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center right;
  position: absolute;
  right: 2px;
  top: 2px;
}

.bg-wrap.email .btn-arrow:after {
	content: "";
	width: 30px;
	height: 30px;
	background-image: url('../images/icons/arrow-red.svg');
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center right;
  position: absolute;
  right: 2px;
  top: 2px;
}

.registration .btn-arrow {
  background-color: white;
  color: var(--primary-color) !important;
  font-size: 24px;
  padding: 10px 50px 10px 15px;
}

/* Block dates */
.block-dates .date {
	padding-left: 50px;
	position: relative;
	font-weight: bold;
	font-size: 20px;
}

.block-dates .date:before {
	content: "";
	width: 30px;
	height: 30px;
	background-size: contain;
	background-position: center center;
	position: absolute;
	background-repeat: no-repeat;
	left: 0;
	top: 0;
	background-image: url('../images/icons/icon-calendar.svg');
}

.block-dates .location {
	padding-left: 50px;
	position: relative;
	margin-top: 30px;
	font-size: 17px;
	line-height: 23px;
}

.block-dates .location:before {
	content: "";
	width: 30px;
	height: 30px;
	background-size: contain;
	background-position: center center;
	position: absolute;
	background-repeat: no-repeat;
	left: 0;
	top: 0;
	background-image: url('../images/icons/icon-map.svg');
}

.block-dates > div {
	border: 3px solid #fff;
	border-radius: 4px;
	padding: 20px;
	width: 300px;
	max-width: 100%;
	position: relative;
}


	/* Polygon dates */
	.icon-dates {
	  width: 40px;
	  height: 34.6px; /* 40 * 0.866 */
	  background-color: white;
	  clip-path: polygon(
	    25% 0%,
	    75% 0%,
	    100% 50%,
	    75% 100%,
	    25% 100%,
	    0% 50%
	  );
	  position: absolute;
	  top: -10px;
	  right: -22px;
	  z-index: 1;
	  transform: rotate(90deg);
	}
	/* EOF Polygon dates */

/* EOF Block dates */

/* Intro block */
.intro-block h3 {
  font-weight: 800;
  font-size: 32px;
}
.intro p{
  font-size: 20px;
  margin-top: 20px;
}

.bg-wrap {
  background: linear-gradient(97deg,rgba(195, 19, 50, 0.95) 15%, rgba(23, 51, 207, 0.95) 65%);
  position: relative;
  padding: 35px;
  padding-right: 100px;
  border-radius: 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.bg-wrap.email {
  background: linear-gradient(97deg,rgba(23, 51, 207, 0.95) 15%, rgba(195, 19, 50, 0.95) 90%);
  border-radius: unset;
  padding: 45px 15px;
}

.bg-wrap::after {
  content: "";
  position: absolute;
  background-image: url('../images/icons/register.svg');
  width: 160px;
  height: 194px;
  top: 10px;
  right: 10px;
  background-size: cover;
}

.bg-wrap.email::after {
  background-image: url('../images/icons/send.svg');
  width: 193px;
  height: 171px;
  top: 50%;
  transform: translateY(-50%);
}

.bg-wrap.email .btn-arrow {
  color: var(--secondary-color) !important;
}

.registration {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.registration p {
  font-size: 22px;
  margin-top: 15px;
}

.school {
  width: 500px;
  max-width: 100%;
  padding: 20px;
}

.icon-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre imagen y texto */
  margin-bottom: 8px;
  justify-content: center;
}
.icon-title-wrapper p{
  color: var(--primary-color-2);
}
.icon-title-wrapper img {
  width: 35px;
  height: 35px;
  margin-top: -20px;
}

.more-info-block {
  padding: 0 20px;
  position: relative;
  height: 100%;
  text-align: left;
}

.more-info-block h5 {
  font-size: 22px;
  color: var(--primary-color);
}

.more-info-block a{
color: var(--p-color) !important;
  text-decoration: none !important;
}
.border-info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 90%;
  width: 2px;
  background-color: #525859;
}

/* Scheudle */

.table-schedule .item {
    margin-bottom: 7px;
}

.table-schedule .header {
    padding: 10px;
    background-color: var(--tertiary-color);
    border: 1px solid #fff;
    pointer-events: none;
}

.table-schedule .row {
    margin: 0;
}


.table-schedule .item .content {
    padding: 10px;
    background-color: #f8f8f8;
}

.table-schedule .item.cat-rest .content {
    border-left: 5px solid var(--primary-color);
}

.table-schedule .item.cat-rest .thematic span {
    padding-left: 10px;
    line-height: 18px;
    font-weight: bold;
}

.table-schedule .item .thematic > div {
    padding-top: 5px;
    padding-bottom: 5px;
}

.table-schedule .item .thematic .title {
    font-weight: bold;
}

.table-schedule .item .hours {
    border-right: 2px solid #e0e0e0;
}

.table-schedule .hours {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.table-schedule .header div {
    color: #fff;
    font-weight: bold;
}

.table-schedule .cat-rest img {
    max-width: 30px;
}

.table-schedule .header {
    padding-left: 15px;
}

.table-schedule li {
  list-style: disc;
}

@media (min-width: 768px) {
    .table-schedule .item .header {
        margin-bottom: 2px;
    }
}
.nav-tabs {
  border: none !important;
}
#programmeTabs .nav-link {
    background-color: var(--tertiary-color);
    color: white;
    font-size: 19px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

#programmeTabs .nav-link.active {
    background-color: var(--primary-color);
}

#programmeTabs li {
    width: 50%;
    padding: 5px;
}

#programmeTabs button {
    width: 100%;
    border-radius: 5px;
    border: 0;
}

#programmeTabs button:hover {
    cursor: pointer !important;
}

.table-schedule .speaker {
    margin-bottom: 10px;
    width: 100%;
    justify-content: flex-start;
}

.table-schedule .speaker p {
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 15px;
}

.table-schedule .speaker img {
    max-width: 100px;
    border-radius: 100%;
    margin-bottom: 10px;
}

.table-schedule .title_speaker {
    text-align: left;
    font-weight: bold;
}

.table-schedule .location {
    font-size: 13px;
    padding: 10px;
    margin-top: 20px !important;
    background: #8080801f;
    display: inline-block;
    border-radius: 25px;
    margin-bottom: 10px;
}
.place-icon{
   width: 17px;
   margin-bottom: 5px !important;
   margin-right: 5px;
}


@media (max-width: 991px) {
	.block-dates {
    	display: flex;
    	justify-content: center;
	}
}

/*---- Patrocinadores LOGOS ----*/
h2.main-title {
  text-align: center;
  text-decoration: underline;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
}

.logos-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.logos-wrap img {
    padding: 20px 15px;
    transition: transform 0.3s;
    max-width: 230px;
    max-height: 145px;
    width: auto;
    height: auto;
}

.logos-wrap img[src$=".svg"] {
    width: 100%;
    height: auto;
    max-width: 230px;
    max-height: 145px;
}

.logos-wrap img[alt="USAL"],
.logos-wrap img[alt="V Calendario Escuela de Salamanca"],
.logos-wrap img[alt="Cátedra de Innovación"] {
  max-width: 270px;
}

/* footer */
.footer-media img{
  width: 28px;
  height: 30px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.footer-icons img{
  filter: brightness(0) invert(1);
  width: 200px;
  margin-right: 15px;
  padding: 20px;
}

/* responsive */
@media (max-width: 1199px) {
    .intro h3 br {
        display: none;
    }

    .more-info-block p {
        text-align: left;
    }

    .speakers-block .col-3 {
        width: 33%;
    }

  .banner h1 {
    font-size: 60px;
  }

  .banner h1 span {
    font-size: 50px;
  }

  .registration {
      gap: 45px;
    }

     .registration br {
      display: none;
    }
}


@media (max-width: 991px) {
    .banner-intro {
        padding-top: 120px;
    }

    .border-info {
        margin-top: 30px;
    }

    .border-info::before {
        content: none;
    }

    .container .row > div.col-2 {
        flex: 0 0 auto !important;
        width: 15% !important;
    }

    .container .row > div.col-10 {
        flex: 0 0 auto !important;
        width: 85% !important;
    }

    .block-dates {
        margin-top: 30px;
    }

    .pitch-date .btn {
        margin: auto !important;
        margin-top: 30px !important;
    }

    .speakers-block .col-3 {
        width: 50% !important;
    }

    .banner-text {
      font-size: 20px;
      padding: 8px 15px;
    }

    .banner h1 {
      font-size: 47px;
    }

    .banner h1 span {
      font-size: 39px;
    }

    .banner h2 {
      font-size: 24px;
    }

    .banner br {
      display: none;
    }

    .brand {
      margin: 0 auto;
    }

    .col.position-relative {
      margin: 25px auto 25px auto;
    }

    .header-scrolled .brand {
      display: none;
    }

    .registration.bg-wrap h3 {
      font-size: 24px;
    }

    .registration p {
      font-size: 20px;
    }

    .bg-wrap {
      padding: 35px 15px;
    }

    .bg-wrap::after {
      width: 140px;
      height: 174px;
    }
    
    .ponentes.border-info::after{
      content: none;
    }

    .more-info-block {
      padding: 0 45px;
    }

    .info-wrap {
      align-items: center;
      padding-left: 75px;
    }

    .border-info::after {
      right: 15px;
    }

}

@media (max-width: 767px) {
  .more-info-block {
      padding: 0;
    }

    .speakers-block {
        justify-content: center !important;
    }

    .speakers-block .col-3 {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .speakers-block .speaker-item {
        max-width: 400px;
    }

    .banner h1 {
      font-size: 40px;
    }

    .banner h1 span {
      font-size: 32px;
    }

    .intro-block h3 {
      font-size: 26px;
    }

    .banner h2 {
      font-size: 20px;
    }

    .registration {
      flex-direction: column;
    }

    #programmeTabs li {
      width: 100%;
    }

    .container .row > div.col-2 {
      padding-left: 0;
    }

    .nav-tabs {
      margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
  .funding-block .images-wrap {
    margin-top: 30px;
    text-align: center !important;
  }

  .info-wrap {
    padding-left: 25px;
    display: block;
  }

  .border-info::after {
    content: none;
  }

  .info-wrap > div {
    margin-bottom: 10px;
  }

  .section-scheudle .content {
    flex-direction: column;
    align-items: center;
  }

  .container .row > div.col-10 {
    width: 100% !important;
  }

  .header-item .thematic.col-10 {
    text-align: center;
  }

  .container .row > div.col-2 {
    width: 100% !important;
    border-right: unset;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  h2.main-title {
    font-size: 32px;
  }

  .more-info-block,
  .more-info-block p {
    text-align: center;
  }

  .section-scheudle .cont-img,
  #programmeTabsContent {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-block h3 {
    font-size: 22px;
  }

  .intro p {
    font-size: 18px;
  }

  .col.position-relative {
    width: 100% !important;
  }

  /*-----MENU-----*/
  .menu {
    display: none !important;
    width: 100%;
  }

  .menu.active {
    display: block !important;
  }

  .header-scrolled .menu.active {
    margin: 55px auto 25px auto !important;
  }

  .menu ul {
    flex-direction: column;
    padding: 0;
  }

  .menu li {
    margin: 0;
  }

  .responsive-menu-wrap {
    border: 2px solid white;
    border-radius: 6px;
    padding: 5px 13px;
  }

  .menu-toggle {
    cursor: pointer;
    display: block;
    background-image: url('../images/icons/bars-solid.svg');
    filter: brightness(0) invert(100);
    width: 26px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
  }

  .header-scrolled .responsive-menu-wrap {
    position: absolute;
    right: 15px;
  }

  .header-scrolled {
    min-height: 60px;
  }
  
  .wow {
    visibility: visible !important;
  }

  .animate__animated {
    animation: none !important;
  }
}

@media (max-width: 767px) {   
  .buttons-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner .icon-button {
    margin-right: 0 !important;
    margin-bottom: 20px;
    display: block;
    width: 100%;
  }
}

a.disabled {
  background-color: #d7d7d7ba !important;
}