@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  font-family: "Lato", sans-serif;
  color: #323233;
  margin: 0;
}

header {
  width: 100%;
  background-color: #81182b;
  color: rgb(247, 245, 238);
  display: flex;
  flex-direction: row;
  position: relative;
}
header .icon {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
header .icon img {
  width: 4rem;
  z-index: 50;
  position: relative;
  height: auto;
  max-width: 100%;
  display: block;
}
header .heading {
  margin-top: auto;
  margin-bottom: auto;
}
header .heading h1 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  overflow-wrap: normal;
  word-break: normal;
  margin: 0;
}

nav {
  width: 100%;
  background-color: #fbefef;
  align-items: center;
  display: flex;
  margin-top: -0.5rem;
  position: relative;
}
nav a {
  color: #9f1d35;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  padding-inline-start: 6rem;
  flex-shrink: 1;
  z-index: 50;
  text-decoration: inherit;
}

main {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  margin-top: 6rem;
}
main article {
  color: #2f4e4e;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
main article h2 {
  color: rgb(159, 29, 53);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin: 0;
}
main article .poster {
  color: rgb(47, 78, 78);
}
main article .poster .poster-img {
  max-width: 2000px;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  display: block;
}
main article .poster .poster-img img {
  max-width: 100%;
  display: block;
  position: static;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main article .poster .poster-text {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: inherit;
  text-decoration: inherit;
}
main article .date {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
}
main article .description {
  margin-top: 4rem;
}
main article .description p:first-child {
  font-size: 1.2rem;
}
main article .speakers {
  margin-top: 1rem;
}
main article .speakers h2 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  color: rgb(47, 78, 78);
}
main article .speakers ul {
  list-style: none;
}
main article .schedule {
  margin-top: 1rem;
}
main article .schedule h2 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  color: rgb(47, 78, 78);
}
main article .schedule table {
  width: 100%;
  border-collapse: collapse;
}
main article .schedule table td {
  border: 1px solid rgb(251, 239, 239);
  padding: 10px;
  text-align: left;
}
main article .schedule table tr td:first-child {
  white-space: nowrap;
}
main article .schedule table tr:nth-child(even) {
  background-color: #F7F5EE;
}
main article .schedule table tr:hover {
  background-color: rgb(251, 239, 239);
}
main article .venue, main article .register {
  margin-top: 1rem;
}
main article .venue h2, main article .register h2 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  color: rgb(47, 78, 78);
}
main article .venue p, main article .register p {
  margin: 10px;
}
main article .register ion-icon {
  color: #FF0000;
}
main article .register a {
  color: inherit;
}
main article .notes {
  margin-top: 1rem;
  border-top: 1px solid rgb(47, 78, 78);
}
main article form input[type=text],
main article form input[type=email],
main article form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #fbefef;
  border-radius: 4px;
}
main article form #otherProgram {
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
main article form button {
  background-color: #81182b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
main article form button:hover {
  background-color: #2f4e4e;
}

ion-icon {
  vertical-align: text-bottom;
}

@media screen and (max-width: 639px) {
  header {
    height: 5rem;
  }
}
@media screen and (min-width: 640px) {
  header {
    height: 4rem;
  }
  header .icon img {
    width: 7rem;
  }
  nav a {
    padding-inline-start: 9rem;
  }
}
@media screen and (min-width: 768px) {
  nav a {
    font-size: 3rem;
    line-height: 1;
  }
  main article .speakers .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  header .icon img {
    width: 8rem;
  }
  nav a {
    padding-inline-start: 10rem;
  }
  main article .poster {
    width: 50%;
    float: right;
  }
  main article .speakers .speakers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}/*# sourceMappingURL=main.css.map */



/* Images */

.image-container {
    display:flex;
    flex-wrap: wrap;
}

.image-container a {
    flex: 1;
    padding: 5px;
    box-sizing:content-box;
}

.image-container img {
    max-width: 100%;
    min-width: 200px; 
    height: auto;
    display: block;
}


main article .poster .poster-img img {
  max-width: 100%;
  display: block;
  position: static;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


.image-container img {
  max-width: 100%;
  min-width: 200px; 
  height: auto;
  display: block;
}


main article .poster .poster-img {
  max-width: 2000px;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  display: block;
}