@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueRoman.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueBoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueHeavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.header-stripes {
  transform: skewY(-7deg) translateY(-40px);
}
.header-stripes .red-stripe {
  background-color: #d2232b;
  height: 150px;
  margin-top: -36px;
}
.header-stripes .yellow-stripe {
  background-color: #f7b019;
  height: 32px;
}
.header-stripes .white-stripe {
  background-color: #ffffff;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f7b019;
}
.header-stripes .white-stripe .line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.header-stripes .white-stripe .line-container .line {
  flex: 1;
  width: 110px;
  height: 9px;
  background-color: #f7b019;
}
.header-stripes .white-stripe .line-container h1 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 120px;
  line-height: 120px;
  font-style: italic;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-stripes .white-stripe h2 {
  font-family: "Helvetica Neue";
  font-size: 200px;
  line-height: 200px;
  font-style: italic;
  font-weight: 600;
  margin: 0;
}
.header-stripes .white-stripe h3 {
  font-family: "Helvetica Neue";
  font-size: 54px;
  font-style: normal;
  font-weight: bold;
  line-height: 54px;
  margin: 0;
  letter-spacing: -0.03em;
}

.content {
  padding: 20px;
  margin-top: -60px;
}

.schedule-section {
  padding: 40px 20px;
  text-align: center;
  background-color: transparent;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.schedule-title {
  font-family: "Helvetica Neue";
  color: #114e98;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
}

.schedule {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  gap: 0;
}

.time-slot {
  display: table-row;
  font-size: 1.8rem;
  font-family: "Helvetica Neue";
  border-bottom: 1px solid rgba(17, 78, 152, 0.1);
  height: 3em; /* Fixed height for consistent rows */
}
.time-slot:last-child {
  border-bottom: none;
}

.time {
  display: table-cell;
  width: 20%;
  text-align: right;
  padding: 8px 10px;
  vertical-align: middle;
  color: #114e98;
  font-weight: bold;
  line-height: 1.3;
}

.description {
  display: table-cell;
  width: 60%;
  text-align: center;
  padding: 8px 10px;
  vertical-align: middle;
  color: #114e98;
  line-height: 1.3;
}

.distance {
  display: table-cell;
  width: 20%;
  text-align: left;
  padding: 8px 10px;
  vertical-align: middle;
  color: #114e98;
  font-weight: bold;
  line-height: 1.3;
}

.footer-section {
  position: relative;
  margin-top: 50px;
  padding-bottom: 50px;
}

.blue-stripe {
  padding: 20px 40px 50px;
  background-color: #114e98;
  transform: skewY(-5deg);
  transform-origin: top left;
  position: relative;
}

.info-section {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 2;
}

.info-text {
  font-family: "Helvetica Neue";
  color: #f7b019;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  margin: 0px auto;
  max-width: 800px;
  width: 100%;
}

.registration-section {
  position: relative;
}

.registration {
  position: absolute;
  top: -100px;
  right: 40px;
  z-index: 3;
}
.registration a {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.registration a:hover {
  transform: scale(1.05);
}
.registration a:hover .circle {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  background-color: rgb(188.1428571429, 31.3571428571, 38.5244897959);
}

.circle {
  width: 200px;
  height: 200px;
  background-color: #d2232b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: "Helvetica Neue";
  font-weight: bold;
  padding: 20px;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.circle .big {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.organizer {
  text-align: center;
  color: #114e98;
  font-size: 1.5rem;
  font-family: "Helvetica Neue";
  font-weight: bold;
  margin-top: 0px;
  line-height: 1.6;
  padding: 20px;
}
.organizer a {
  color: #114e98;
  text-decoration: none;
  text-decoration: underline;
}

.blue-text {
  color: #114e98;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0;
  }
  .header-stripes {
    transform: skewY(-7deg) translateY(-55px);
  }
  .header-stripes .red-stripe {
    height: 80px;
    margin-top: 0px;
  }
  .header-stripes .yellow-stripe {
    height: 20px;
  }
  .header-stripes .white-stripe {
    height: 220px;
  }
  .header-stripes .white-stripe .line-container {
    gap: 0.5rem;
  }
  .header-stripes .white-stripe .line-container .line {
    width: 50px;
    height: 5px;
  }
  .header-stripes .white-stripe .line-container h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .header-stripes .white-stripe h2 {
    font-size: 90px;
    line-height: 90px;
  }
  .header-stripes .white-stripe h3 {
    font-size: 30px;
    line-height: 30px;
  }
  .content {
    margin-top: -30px;
    padding: 0;
  }
  .schedule-section {
    padding: 8px 10px;
  }
  .schedule-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .time-slot {
    font-size: 1.1rem;
  }
  .time, .description, .distance {
    padding: 8px 4px;
    /* Fix for iOS vertical alignment */
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .time {
    padding-right: 6px;
  }
  .description {
    padding: 8px 4px;
  }
  .distance {
    padding-left: 6px;
  }
  .footer-section {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .info-text {
    font-size: 24px;
  }
  .registration-section {
    top: -80px;
  }
  .registration {
    position: relative;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin: 30px auto;
  }
  .circle {
    width: 150px;
    height: 150px;
    padding: 15px;
  }
  .circle .big {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  .organizer {
    font-size: 1.1rem;
    padding: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header-stripes .white-stripe .line-container h1 {
    font-size: 90px;
    line-height: 90px;
  }
  .header-stripes .white-stripe h2 {
    font-size: 150px;
    line-height: 150px;
  }
  .header-stripes .white-stripe h3 {
    font-size: 42px;
    line-height: 42px;
  }
  .info-text {
    font-size: 30px;
  }
  .circle {
    width: 180px;
    height: 180px;
  }
}

/*# sourceMappingURL=main.css.map */
