/* agenda */

:root {
  --agenda-title-color: var(--patricks-blue);
  --outer-descrption-color: var(--white);
  --card-descrption-color: var(--patricks-blue);
  --agenda-card-border-radius: 10px;
}

.agenda-view {
  font-family: var(--secondary-font);
  font-weight: var(--robotocondensed-regular);
}

.agenda-title-section {
  width: 100%;
  text-align: center;
  color: var(--agenda-title-color);
  font-weight: var(--robotocondensed-light);
  font-size: 24px;
}

.agend-section-title {
  font-size: 45px;
  line-height: 51px;
}

.agend-section-sub-title {
  font-weight: var(--robotocondensed-bold);
  margin-top: 16px;
}

.agenda-description {
  font-size: 24px;
  line-height: 30px;
}

.agenda-outer-description {
  color: var(--outer-descrption-color);
  padding-top: 35px;
  padding-bottom: 5px;
}

.agenda-card-description {
  color: var(--card-descrption-color);
  font-weight: var(--robotocondensed-light);
  text-align: center;
  padding: 30px 0;
}

.agenda-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--agenda-card-border-radius);
}

.agenda-image-field img {
  width: 100%;
  height: auto;
}

.agends-button-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.agends-card-bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: var(--primary-font);
  font-weight: var(--opensans-regular);
  color: var(--orange);
  margin-top: 25px;
  position: relative;
  padding: 0 143px;
}

.agenda-language-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.agenda-language-link {
  color: var(--patricks-blue);
  font-size: 16px;
  text-decoration: none !important;
  line-height: 20px;
  display: block;
}

.agenda-language-links li {
  line-height: 20px;
}

.agenda-language-links li:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--border-color);
}

.watch-video-section {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -14px;
}

.watch-video-link {
  position: relative;
  color: var(--patricks-blue);
  text-decoration: none !important;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.watch-video-link:before {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../icons/video.png) no-repeat center center;
  display: block;
  margin-right: 8px;
}

/* states */

.watch-video-link:hover,
.agenda-language-link:hover {
  color: var(--orange);
}
