/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: "Space Mono", monospace;
  color: #010027;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h5, h6 {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
}

h3, h4 {
  font-family: "Space Mono", sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 32px;
}

h4 {
  font-size: 24px;
  letter-spacing: -2px;
  margin-bottom: 18px;
  line-height: 28px;
}

h6 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 16px;
  color: #08055F;
}

/*layout*/
.wrapper {
  max-width: 1272px;
  width: 90%;
  margin: auto;
}

.button {
  background: #FFC750;
  color: #6B2700;
  box-shadow: 2px 2px 0px 0px #00A3FF;
  font-family: "Space Mono", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  transform: translate(-2px, -2px);
}

input[type=text] {
  background: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  font-family: "Space Mono", sans-serif;
}

.section {
  padding: 60px 0px;
  background: #D8E3FA;
}

.section__first {
  padding-top: 120px;
}

.section__last {
  padding-bottom: 80px;
}

.section__wrapper {
  display: flex;
}

.section__left {
  width: 400px;
  padding-right: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.section__right {
  width: 872px;
}

.section__title {
  position: relative;
  padding: 0px 8px;
}
.section__title .section__title-yellow {
  background: #FFC750;
  width: 48px;
  height: 12px;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 0;
}
.section__title h2 {
  color: #12339E;
  text-shadow: -2px -2px 0px #FFC750, 2px 2px 0px #00A3FF;
  font-size: 56px;
  position: relative;
  z-index: 1;
}
.section__title .section__title-light-blue {
  background: #00A3FF;
  width: 48px;
  height: 12px;
  position: absolute;
  bottom: 2px;
  right: 0;
  z-index: 0;
}

@media screen and (max-width: 1272px) {
  .section__right {
    width: calc(100% - 400px);
  }
}
@media screen and (max-width: 1000px) {
  .section__wrapper {
    display: block;
  }

  .section__title {
    margin-bottom: 48px;
  }

  .section__left, .section__right {
    width: 100%;
    padding-right: 0;
  }
}
.grid__2 {
  display: grid;
  row-gap: 20px;
  column-gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}
@media screen and (max-width: 1000px) {
  .grid__2 {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 500px) {
  .section {
    padding: 40px 0px;
  }

  .section__first {
    padding-top: 80px;
  }

  .grid__2 {
    display: block;
  }
}
/*nav*/
.nav {
  width: 100%;
  padding-top: 24px;
}
.nav .nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .nav__logo img {
  width: 60px;
}
.nav .nav__links a {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  margin-left: 36px;
  color: #fff;
}
.nav .nav__links li {
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .nav {
    margin-bottom: 12px;
  }
  .nav .nav__wrapper {
    justify-content: center;
  }
  .nav .nav__logo {
    display: none;
  }
  .nav .nav__links a {
    margin: 0px 4px;
  }
}
/*header*/
.header {
  background: #12339E;
  padding-bottom: 60px;
}
.header .header__content {
  width: 1000px;
  margin: auto;
  text-align: center;
  position: relative;
  padding-top: 40px;
}
.header .header__content .header__img {
  width: 500px;
  margin-top: 32px;
}
.header .header__content .header__content-text {
  position: absolute;
  top: 20px;
}
.header .header__content .header__content-text .header__logo-img {
  width: 250px;
}
.header .header__content .header__content-text .header__title-1 {
  font-size: 72px;
  text-shadow: -3px -3px 0px #FFC750, 3px 3px 0px #00A3FF;
  position: relative;
  top: -150px;
  color: #fff;
  z-index: 5;
}
.header .header__content .header__content-text .header__title-2 {
  font-size: 160px;
  color: #12339E;
  text-shadow: -1px -1px 0px #fff, 0px -1px 0px #fff, 1px -1px 0px #fff, -1px 0px 0px #fff, 1px 0px 0px #fff, -1px 1px 0px #fff, 0px 1px 0px #fff, 1px 1px 0px #fff, -2px -2px 0px #fff, -1px -2px 0px #fff, 0px -2px 0px #fff, 1px -2px 0px #fff, 2px -2px 0px #fff, 2px -1px 0px #fff, 2px 0px 0px #fff, 2px 1px 0px #fff, 2px 2px 0px #fff, 1px 2px 0px #fff, 0px 2px 0px #fff, -1px 2px 0px #fff, -2px 2px 0px #fff, -2px 1px 0px #fff, -2px 0px 0px #fff, -2px -1px 0px #fff;
  position: relative;
  top: -150px;
  z-index: 5;
}
.header .header__content .header__content-text .header__subtitle {
  color: #fff;
  line-height: 30px;
  font-weight: 700;
  position: relative;
  top: -140px;
  z-index: 5;
}
.header .header__content .header__date {
  font-size: 28px;
  font-weight: 700;
  margin-top: 28px;
  color: #fff;
  height: 420px;
  width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .header .header__content .header__date {
    height: 175px;
    width: 300px;
  }
}
.header .header__content .header__signup {
  margin-top: 32px;
  position: relative;
  z-index: 4;
}
.header .header__content .header__signup p {
  color: #fff;
}
.header .header__content .header__signup input {
  width: 360px;
}
.header .header__content .header__logos {
  margin-top: 56px;
}
.header .header__content .header__logos .header__logos-text {
  text-align: center;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #93A9F0;
  margin-bottom: 20px;
}
.header .header__content .header__logos .header__logos-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.header .header__content .header__logos .header__logos-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header__content .header__logos .header__logos-wrapper img {
  height: 72px;
  margin: 0px 20px;
}
@media screen and (max-width: 1050px) {
  .header .header__content {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .header .header__content .header__img {
    width: 90%;
    max-width: 500px;
  }
  .header .header__content .header__content-text .header__logo-img {
    width: 200px;
  }
  .header .header__content .header__content-text .header__title-1 {
    font-size: 48px;
    top: -80px;
  }
  .header .header__content .header__content-text .header__title-2 {
    font-size: 100px;
    top: -75px;
  }
  .header .header__content .header__content-text .header__subtitle {
    top: -60px;
  }
}
@media screen and (max-width: 715px) {
  .header .header__content .header__logos .header__logos-wrapper {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
}
@media screen and (max-width: 590px) {
  .header .header {
    overflow-x: hidden;
  }
  .header .header__content .header__img {
    display: none;
  }
  .header .header__content .header__content-text {
    position: relative;
    padding-bottom: 24px;
    padding-top: 100px;
  }
  .header .header__content .header__content-text .header__logo-img {
    position: absolute;
    left: calc(50% - 100px);
    top: -40px;
  }
  .header .header__content .header__content-text .header__title-1 {
    top: 0;
  }
  .header .header__content .header__content-text .header__title-2 {
    top: 0;
  }
  .header .header__content .header__content-text .header__subtitle {
    top: 0;
  }
  .header .header__content .header__signup {
    max-width: 100%;
  }
  .header .header__content .header__signup input {
    width: calc(100% - 32px);
    margin-bottom: 12px;
  }
  .header .header__content .header__signup button {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .header .header__content .header__content-text .header__title-1 {
    font-size: 40px;
  }
  .header .header__content .header__content-text .header__title-2 {
    font-size: 80px;
    margin-bottom: 18px;
  }
  .header .header__content .header__content-text .header__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .header .header__content .header__logos .header__logos-wrapper {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.yellow__rect {
  background: #FFC750;
  height: 12px;
  position: absolute;
}

.header__yellow-rect-1 {
  top: 90px;
  left: calc(50% - 270px);
  width: 40px;
}

.header__yellow-rect-2 {
  top: 200px;
  left: calc(50% - 230px);
  width: 60px;
}

.header__yellow-rect-3 {
  top: 330px;
  left: calc(50% - 270px);
  width: 40px;
}

.light-blue__rect {
  background: #00A3FF;
  height: 12px;
  position: absolute;
}

.header__light-blue-rect-1 {
  top: 240px;
  right: calc(50% - 270px);
  width: 100px;
}

.header__light-blue-rect-2 {
  top: 170px;
  right: calc(50% - 300px);
  width: 60px;
}

.header__light-blue-rect-3 {
  top: 360px;
  right: calc(50% - 270px);
  width: 40px;
}

@media screen and (max-width: 590px) {
  .yellow__rect, .light-blue__rect {
    display: none;
  }
}
/*section*/
.section-grid__item {
  background: #fff;
  margin: 12px;
  position: relative;
  padding: 32px;
  padding-top: 72px;
  padding-left: 40px;
  padding-bottom: 20px;
}
.section-grid__item p {
  margin-bottom: 0;
  font-size: 16px;
}
.section-grid__item img {
  position: absolute;
  left: -20px;
  top: -20px;
  z-index: 3;
}
.section-grid__item .section-lightest-blue-rect__1 {
  background: #D8E3FA;
  width: 12px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
}
.section-grid__item .section-lightest-blue-rect__2 {
  background: #D8E3FA;
  width: 12px;
  height: 72px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-grid__item .section-light-blue-rect {
  z-index: 1;
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 72px;
  height: 12px;
  background: #00A3FF;
}
.section-grid__item.reverse .section-lightest-blue-rect__1 {
  left: 0;
  right: auto;
}
.section-grid__item.reverse .section-lightest-blue-rect__2 {
  right: 0;
  left: auto;
}
.section-grid__item.reverse .section-light-blue-rect {
  z-index: 1;
  position: absolute;
  bottom: 33px;
  right: -4px;
  width: 12px;
  height: 72px;
  background: #00A3FF;
}

@media screen and (max-width: 500px) {
  .section-grid__item {
    margin-bottom: 48px;
  }
  .section-grid__item:last-child {
    margin-bottom: 0;
  }
}
/*schedule*/
.schedule__timezone {
  margin-bottom: 32px;
}

.timezone__button.active {
  background: #12339E;
  box-shadow: 3px 3px 0px #000F37;
  color: #fff;
}

.timezone__button {
  background: #D8E3FA;
  border: 1px solid #12339E;
  box-shadow: 3px 3px 0px #12339E;
  color: #12339E;
  font-family: "Archivo", sans-serif;
  margin-bottom: 12px;
}

.schedule__block {
  margin-top: 56px;
}

.schedule__block-title {
  margin-bottom: 24px;
}
.schedule__block-title h6 {
  margin-bottom: 8px;
}
.schedule__block-title h2 {
  font-size: 36px;
  letter-spacing: -1px;
}

.schedule__item {
  background: #fff;
  padding: 24px;
  padding-left: 110px;
  position: relative;
  margin-bottom: 24px;
}
.schedule__item .schedule__time-block {
  padding: 12px;
  background: #12339E;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  position: absolute;
  left: -20px;
  z-index: 4;
}
.schedule__item .schedule__content p {
  font-size: 16px;
}
.schedule__item .schedule__content .schedule__item-bottom {
  display: flex;
  justify-content: space-between;
}
.schedule__item .schedule__content .schedule__item-bottom .schedule__author {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.schedule__item .schedule__content .schedule__item-bottom .schedule__author .schedule__author-img {
  border-radius: 50%;
  background: grey;
  margin-right: 10px;
  width: 32px;
  height: 32px;
}
.schedule__item .schedule__content .schedule__item-bottom .schedule__author .schedule__author-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.schedule__item .schedule__content .schedule__item-bottom .schedule__button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule__item .schedule__content .schedule__item-bottom .schedule__button .schedule__button-icon {
  margin-right: 16px;
}
.schedule__item .schedule__content .schedule__item-bottom .schedule__button div {
  color: #6B2700;
}
.schedule__item .schedule__content .schedule__item-bottom.authors__only {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.schedule__item .schedule__content .schedule__item-bottom.authors__only .schedule__author {
  margin-top: 16px;
}
.schedule__item .lightest-blue-rect__1 {
  background: #D8E3FA;
  width: 12px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.schedule__item .lightest-blue-rect__2 {
  background: #D8E3FA;
  width: 12px;
  height: 64px;
  position: absolute;
  top: 0;
  right: 0;
}
.schedule__item .light-blue-rect__1 {
  width: 20px;
  height: 12px;
  background: #00A3FF;
  position: absolute;
  bottom: 24px;
  right: -20px;
}
.schedule__item .yellow-rect__1 {
  width: 32px;
  height: 12px;
  background: #FFC750;
  position: absolute;
  top: 24px;
  right: -12px;
}
.schedule__item .yellow-rect__2 {
  width: 32px;
  height: 12px;
  background: #FFC750;
  position: absolute;
  bottom: 32px;
  left: -20px;
}

@media screen and (max-width: 550px) {
  .schedule__item {
    margin-left: 20px;
    padding-left: 24px;
    padding-top: 80px;
  }
  .schedule__item .schedule__time-block {
    top: 24px;
  }
  .schedule__item .schedule__content .schedule__item-bottom {
    flex-direction: column;
  }
  .schedule__item .schedule__content .schedule__item-bottom .button {
    margin-top: 20px;
  }
}
/*speakers*/
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 32px;
  row-gap: 56px;
}

.speaker-item {
  text-align: center;
}
.speaker-item .speaker-item__img {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
}
.speaker-item .speaker-item__name {
  margin-bottom: 12px;
}
.speaker-item .speaker-item__subtitle {
  color: #08055F;
  font-size: 16px;
  line-height: 22px;
}

@media screen and (max-width: 550px) {
  .speakers-grid {
    column-gap: 24px;
    row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
/*faq*/
.faq-item {
  margin-bottom: 40px;
}
.faq-item h4 {
  margin-bottom: 12px;
}

/*footer*/
.footer {
  background: #12339E;
  width: 100%;
  height: 80px;
}

.footer__wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.footer__left {
  color: #fff;
}
.footer__left a {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
}

.footer__right {
  color: #fff;
  text-align: right;
}

@media screen and (max-width: 660px) {
  .footer {
    height: auto;
    padding: 24px 0px;
  }

  .footer__wrapper {
    height: auto;
    flex-direction: column;
  }

  .footer__left {
    margin-bottom: 16px;
    text-align: center;
  }

  .footer__right {
    text-align: center;
    line-height: 24px;
  }
}

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