body {
  --blue: #085585;
  --red: #BA223B;
  --max-width: 1440px;
  --padding: 5%;
  --heading-2: clamp(1.3rem, 4vw, 4vw);
  --heading-1: clamp(2.2rem, 6vw, 6vw);
  --p: clamp(0.9rem, 1.3vw, 3rem);
}

body {
  --blue: #085585;
  --red: #BA223B;
  --max-width: 1440px;
  --padding: 5%;
  --heading-2: clamp(1.3rem, 4vw, 4vw);
  --heading-1: clamp(2.2rem, 6vw, 6vw);
  --p: clamp(0.9rem, 1.3vw, 3rem);
}

.conference-container {
  font-family: Avenir, sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  background-color: var(--blue);
  box-sizing: border-box;
}
.conference-container .greeting-container {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.conference-container .greeting-container .image {
  width: 100%;
  display: block;
}
.conference-container .greeting-container .image img {
  display: block;
}
.conference-container .greeting-container .greeting {
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(8, 85, 133, 0.6274509804);
  position: absolute;
  bottom: 0;
  padding-left: var(--padding);
  color: white;
  font-weight: 800;
}
.conference-container .greeting-container .greeting h1 {
  font-size: var(--heading-1);
  margin: 0;
  padding: 0;
}
.conference-container .page-title-container .subtitle-container {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 var(--padding);
}
@media (max-width: 700px) {
  .conference-container .page-title-container .subtitle-container {
    padding: var(--padding);
  }
}
.conference-container .page-title-container .subtitle-container h1 {
  font-size: var(--heading-2);
  font-weight: 500;
}
.conference-container .page-title-container .subtitle-container img {
  margin: 10px 0;
}
@media (max-width: 700px) {
  .conference-container .page-title-container .subtitle-container img {
    display: none;
  }
}
.conference-container .meeting-info-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 5%;
  box-sizing: border-box;
  margin-top: 2%;
}
@media (max-width: 700px) {
  .conference-container .meeting-info-container {
    flex-direction: column;
    padding: 0;
  }
}
.conference-container .meeting-info-container .white-register-container {
  line-height: 1.5;
  padding: 3% var(--padding);
  width: 50%;
  box-sizing: border-box;
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
  border-top-right-radius: 20%;
  border-bottom-right-radius: 20%;
  color: var(--blue);
  background-color: white;
}
@media (max-width: 700px) {
  .conference-container .meeting-info-container .white-register-container {
    width: 100vw;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-size: var(--p);
  }
}
.conference-container .meeting-info-container .white-register-container ul {
  margin-top: 0;
  padding: 0 20px;
}
.conference-container .meeting-info-container .white-register-container li {
  text-decoration: var(--blue);
  list-style: inherit;
}
.conference-container .meeting-info-container .white-register-container .register-button {
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
  color: white;
  padding: 10px 15px;
  border: none;
  text-decoration: none;
  background: var(--red);
  border-radius: 15px;
}
@media (max-width: 800px) {
  .conference-container .meeting-info-container .white-register-container .register-button {
    margin: 0;
  }
}
.conference-container .meeting-info-container .map-container {
  box-sizing: border-box;
  font-size: clamp(1rem, 1.3vw, 1.3vw);
  margin-left: 5%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .conference-container .meeting-info-container .map-container {
    max-width: 100vw;
    width: 100vw;
    height: 100%;
    box-sizing: border-box;
    margin: 10% 0;
    align-items: center;
  }
}
.conference-container .meeting-info-container .map-container iframe {
  box-sizing: border-box;
  aspect-ratio: auto;
  height: 100%;
  width: 100%;
}
@media (max-width: 800px) {
  .conference-container .meeting-info-container .map-container iframe {
    width: 90vw;
  }
}
.conference-container .meeting-info-container .map-container .map-text-container {
  box-sizing: border-box;
  padding-top: 20px;
  width: 100%;
  align-self: flex-start;
}
@media (max-width: 800px) {
  .conference-container .meeting-info-container .map-container .map-text-container {
    padding-left: var(--padding);
  }
}
.conference-container .form-container {
  left: 0;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: var(--padding) 0;
  box-sizing: border-box;
  align-self: center;
  display: flex;
  flex-direction: column;
  background-color: white;
  margin: 5% 0;
  color: var(--blue);
}
.conference-container .form-container > div {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  outline: 1px var(--blue) solid;
  padding: 2%;
  border-radius: 10px;
}
@media (max-width: 800px) {
  .conference-container .form-container > div {
    flex-direction: column;
    outline: 0 solid transparent;
  }
}
.conference-container .form-container > div div {
  align-items: center;
}
@media (max-width: 800px) {
  .conference-container .form-container > div div {
    flex-direction: column;
    padding-top: 5%;
  }
}
.conference-container .form-container > div p {
  padding-bottom: 10px;
}
.conference-container .form-container > div p span, .conference-container .form-container > div p input {
  border: none;
}
.conference-container .form-container > div p span .form-file, .conference-container .form-container > div p input .form-file {
  background-color: transparent;
}
.conference-container .form-container > div p input[type=submit] {
  background-color: var(--red);
  border-radius: 2em;
  color: white;
  padding: 2%;
  max-width: 50%;
}
.conference-container .form-container label {
  font-size: var(--p);
  align-self: center;
}
.conference-container .form-container label span {
  outline: 1px var(--red) solid;
  border-radius: 10px;
}
.conference-container .thank-you-container {
  margin: auto;
  color: var(--blue);
  box-sizing: border-box;
  background-color: white;
  padding: 5% 7%;
  border-radius: 100px;
}
.conference-container .conference-list-container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: flex-start;
}
@media (max-width: 800px) {
  .conference-container .conference-list-container {
    width: 100%;
  }
}
.conference-container .conference-list-container h1 {
  font-weight: 500;
  font-size: var(--heading-2);
  padding: 0 var(--padding);
}
.conference-container .conference-list-container .conference-list {
  box-sizing: border-box;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue);
  background-color: white;
  width: 100%;
  line-height: 1.4em;
  padding: var(--padding);
  gap: 5%;
}
@media (max-width: 800px) {
  .conference-container .conference-list-container .conference-list {
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  .conference-container .conference-list-container .conference-list img {
    width: 100%;
    padding: 5%;
  }
}
.conference-container .conference-list-container .conference-list .list-wrapper {
  font-weight: bolder;
  width: 60%;
  line-height: 2.7rem;
}
@media (max-width: 800px) {
  .conference-container .conference-list-container .conference-list .list-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: var(--p);
    line-height: normal;
  }
}
.conference-container .conference-list-container .conference-list a {
  padding: 0 0 3% 0;
}

h4, p {
  padding: 0;
  margin: 0;
}

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