:root {
  --main-yellow: #0aa2ff;
  --main-blue: #f33094;
  --main-pink: #7440c7;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  background-image: url("../img/fondo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* Main Section */
.main-section {
  margin-top: 120px;
  margin-bottom: 120px;
}
.main-section .main-content {
  position: relative;
}
body section.main-section .main-content h2 {
  font-weight: 300;
}
body section.main-section .main-content h2 strong {
  font-weight: 800;
}
.main-section .main-content img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
}
/* Main Section */

/* Cards Section */
.cards-section .card-item {
  padding: 30px;
}

.cards-section .card-item .item-img {
  position: relative;
}
.cards-section .card-item .item-img img {
  position: relative;
  display: block;
  width: 66%;
  margin: 0 auto;
}

.cards-section .card-item .item-title {
  text-align: right;
  position: relative;
  padding-right: 40px;
}
.cards-section .card-item .item-title::before {
  position: absolute;
  content: "";
  display: block;
  top: 25%;
  right: 0;
  width: 8px;
  height: 50%;
  background: #fff;
}
body section.cards-section .card-item .item-title h2 {
  font-size: 40px;
  font-weight: 400;
}
body section.cards-section .card-item .item-title h2 span {
  font-size: 50px;
  font-weight: 800;
}
.cards-section .card-item .item-date {
  padding-left: 40px;
}

.cards-section .card-item .item-date h3,
.cards-section .card-item .item-date h4 {
  font-size: 40px;
}
.cards-section .card-item .item-date h3 strong,
.cards-section .card-item .item-date h4 strong {
  font-weight: 800;
}
.cards-section .card-item.item-first .item-title h2 span,
.cards-section .card-item.item-third .item-title h2 span {
  color: var(--main-yellow);
}
.cards-section .card-item.item-second .item-title h2 span {
  color: var(--main-pink);
}
.cards-section .card-item.item-first {
  background-color: var(--main-blue);
}
.cards-section .card-item.item-second {
  background-color: var(--main-yellow);
}
.cards-section .card-item.item-third {
  background-color: var(--main-pink);
}
.item-streets ul {
  display: inline-block;
  padding-left: 0;
}
.item-streets ul li {
  list-style-type: none;
}
.item-streets ul li::before {
  content: "\2022 ";
  color: var(--main-pink);
  padding-right: 0.5em;
}
.item-streets.streets-first ul {
  float: right;
}
@media all and (max-width: 1299px) {
  .cards-section .card-item .item-title h2 {
    font-size: 40px;
  }
  .cards-section .card-item .item-title h2 span {
    font-size: 50px;
  }
  .cards-section .card-item .item-date h3,
  .cards-section .card-item .item-date h4 {
    font-size: 28px;
  }
}
@media all and (max-width: 1199px) {
  .cards-section .card-item .item-img img {
    width: 33%;
  }
}
@media all and (max-width: 991px) {
  .cards-section .card-item .item-img img {
    width: 50%;
  }
  .cards-section .card-item .item-date,
  .cards-section .card-item .item-title {
    text-align: center;
    padding: 20px 0;
  }
  /* .cards-section .card-item .item-title h2{
        font-size: 32px;
    }
    .cards-section .card-item .item-title h2 span{
        font-size: 50px;
    } */
  .cards-section .card-item .item-date h3,
  .cards-section .card-item .item-date h4 {
    font-size: 24px;
  }
  .cards-section .card-item .item-title::before {
    position: absolute;
    content: "";
    display: block;
    top: auto;
    right: 30%;
    bottom: 0;
    width: 40%;
    height: 4px;
    background: #fff;
  }
  .cards-section .card-item.item-second .container {
    padding: 0;
  }
  .item-streets {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .cards-section .card-item .item-img img {
    width: 100%;
  }
}
/* Cards Section */

/* Events Section */
.event-item {
  padding: 40px 0;
}
.event-title {
  text-align: center;
}
.event-title h3 {
  font-weight: 800;
  color: var(--main-pink);
}
.event-title.alter-event h3 {
  font-weight: 800;
  color: var(--main-yellow);
}
.event-title ul {
  padding-left: 0;
}
.event-title ul li {
  list-style-type: none;
}
.event-title ul li::before {
  content: "\2022 ";
  color: var(--main-pink);
  padding-right: 0.5em;
}
.event-title.alter-event ul li {
  list-style-type: none;
}
.event-title.alter-event ul li::before {
  content: "\2022 ";
  color: var(--main-yellow);
  padding-right: 0.5em;
}
.event-date {
  text-align: right;
  padding-right: 20px;
}
.event-location {
  text-align: left;
  position: relative;
}
.event-location::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  width: 4px;
  height: 60px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}
.event-location ul {
  display: inline-block;
  padding-left: 0;
}
.event-icon {
  position: relative;
}
.event-icon img {
  position: relative;
  display: block;
  width: 20%;
  margin: 0 auto;
}
@media all and (max-width: 1199px) {
  .event-icon {
    margin: 20px 0;
  }
  .event-icon img {
    width: 5%;
  }
}
@media all and (max-width: 991px) {
  .event-icon img {
    width: 10%;
  }
  .event-title {
    text-align: left;
  }
  .event-date {
    text-align: left;
    padding-right: 0;
  }
  .event-location {
    padding-top: 20px;
  }
  .event-location::before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 12px;
    width: 30%;
    height: 2px;
    background: #fff;
  }
}
/* Events Section */

/* Footer */
footer {
  padding: 80px 0;
}
.logo-footer {
  position: relative;
}
.logo-footer img {
  position: relative;
  display: block;
  width: 10%;
  margin: 0 auto;
}
@media all and (max-width: 1199px) {
  .logo-footer img {
    width: 15%;
  }
}
@media all and (max-width: 991px) {
  .logo-footer img {
    width: 20%;
  }
}
@media all and (max-width: 767px) {
  .logo-footer img {
    width: 33%;
  }
}
/* Footer */

.play-btn {
  position: relative;
}
.play-btn svg {
  font-size: 4em;
  color: #fff;
}
.play-btn:hover svg {
  font-size: 4em;
  color: var(--main-blue);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
