/*
 * colors
 */
/*
 * font
 */
/*
 * layput
 */
/*
 * Main header
 */
/*
 * buttons
 */
/*
 * Tabs
 */
/*
 * Speakers
 */
/*
 * Timeline
 */
@font-face {
  font-family: Roboto;
  src: url(app/fonts//Roboto-Regular.ttf); }

@font-face {
  font-family: Futura;
  src: url(app/fonts//Futura-Condensed-Extrabold.ttf); }

* {
  margin: 0;
  padding: 0; }

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/
/*
  ...with some changes.
 */
[class*='grid'],
[class*='col-'],
[class*='mobile-'],
.grid:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

[class*='col-'] {
  float: left;
  min-height: 1px;
  padding-right: 20px;
  /* column-space */ }

[class*='col-'] [class*='col-']:last-child {
  padding-right: 0; }

.grid {
  width: 100%;
  max-width: 1900px;
  min-width: 748px;
  /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
  margin: 0 auto;
  overflow: hidden; }

.grid:after {
  content: "";
  display: table;
  clear: both; }

.grid-pad {
  padding-top: 20px;
  padding-left: 20px;
  /* grid-space to left */
  padding-right: 0;
  /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */ }

.push-right {
  float: right; }

/* Content Columns */
.col-1-1 {
  width: 100%; }

.col-2-3, .col-8-12 {
  width: 66.66%; }

.col-1-2, .col-6-12 {
  width: 50%; }

.col-1-3, .col-4-12 {
  width: 33.33%; }

.col-1-4, .col-3-12 {
  width: 25%; }

.col-1-5 {
  width: 20%; }

.col-1-6, .col-2-12 {
  width: 16.667%; }

.col-1-7 {
  width: 14.28%; }

.col-1-8 {
  width: 12.5%; }

.col-1-9 {
  width: 11.1%; }

.col-1-10 {
  width: 10%; }

.col-1-11 {
  width: 9.09%; }

.col-1-12 {
  width: 8.33%; }

/* Layout Columns */
.col-12-12 {
  width: 100%; }

.col-11-12 {
  width: 91.66%; }

.col-10-12 {
  width: 83.333%; }

.col-9-12 {
  width: 75%; }

.col-5-12 {
  width: 41.66%; }

.col-7-12 {
  width: 58.33%; }

/* Pushing blocks */
.push-2-3, .push-8-12 {
  margin-left: 66.66%; }

.push-1-2, .push-6-12 {
  margin-left: 50%; }

.push-1-3, .push-4-12 {
  margin-left: 33.33%; }

.push-1-4, .push-3-12 {
  margin-left: 25%; }

.push-1-5 {
  margin-left: 20%; }

.push-1-6, .push-2-12 {
  margin-left: 16.667%; }

.push-1-7 {
  margin-left: 14.28%; }

.push-1-8 {
  margin-left: 12.5%; }

.push-1-9 {
  margin-left: 11.1%; }

.push-1-10 {
  margin-left: 10%; }

.push-1-11 {
  margin-left: 9.09%; }

.push-1-12 {
  margin-left: 8.33%; }

@media handheld, only screen and (max-width: 1200px) {
  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    /* grid-space to left */
    padding-right: 10px;
    /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */ }
  [class*='col-'] {
    width: auto;
    float: none;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 10px;
    /* column-space */ }
  [class*='col-'] [class*='col-'] {
    padding-right: 0; }
  /* Mobile Layout */
  [class*='mobile-col-'] {
    float: left;
    margin: 0 0 10px;
    padding-left: 0;
    padding-right: 10px;
    /* column-space */
    padding-bottom: 0; }
  .mobile-col-1-1 {
    width: 100%; }
  .mobile-col-2-3, .mobile-col-8-12 {
    width: 66.66%; }
  .mobile-col-1-2, .mobile-col-6-12 {
    width: 50%; }
  .mobile-col-1-3, .mobile-col-4-12 {
    width: 33.33%; }
  .mobile-col-1-4, .mobile-col-3-12 {
    width: 25%; }
  .mobile-col-1-5 {
    width: 20%; }
  .mobile-col-1-6, .mobile-col-2-12 {
    width: 16.667%; }
  .mobile-col-1-7 {
    width: 14.28%; }
  .mobile-col-1-8 {
    width: 12.5%; }
  .mobile-col-1-9 {
    width: 11.1%; }
  .mobile-col-1-10 {
    width: 10%; }
  .mobile-col-1-11 {
    width: 9.09%; }
  .mobile-col-1-12 {
    width: 8.33%; }
  /* Layout Columns */
  .mobile-col-12-12 {
    width: 100%; }
  .mobile-col-11-12 {
    width: 91.66%; }
  .mobile-col-10-12 {
    width: 83.333%; }
  .mobile-col-9-12 {
    width: 75%; }
  .mobile-col-5-12 {
    width: 41.66%; }
  .mobile-col-7-12 {
    width: 58.33%; }
  .hide-on-mobile {
    display: none !important;
    width: 0;
    height: 0; } }

@media (min-width: 1201px) {
  .mobile-only {
    display: none !important;
    width: 0;
    height: 0; } }

.menu {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s, background-color 0.3s, border 0.3s;
  z-index: 400; }

.menu.menu-active {
  transform: scaleY(1);
  background-color: #2e45a6;
  box-shadow: 0px 3px 6px -3px #000; }

.menu__box-shadow-only-bottom {
  width: 100%;
  height: 0;
  box-shadow: 0px 3px 6px -3px #000;
  z-index: 100; }

.menu__list {
  max-width: 1900px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.6rem;
  font-family: Futura;
  justify-content: space-around;
  list-style-type: none;
  width: 100%; }

.menu__list__item {
  align-items: center;
  display: flex;
  flex: 1;
  height: 75px; }

.menu__anchor {
  color: #fff;
  height: 100%;
  line-height: 75px;
  padding: 0 2rem;
  text-align: center;
  text-decoration: none;
  width: 100%; }

.main-header {
  display: block;
  height: 75px;
  margin: 0 auto;
  max-width: 1900px;
  position: fixed;
  top: 0;
  width: 100%;
  color: #fff;
  padding: 0 8rem;
  transition: background-color 0.3s;
  z-index: 500; }

.main-header--scrolled,
.main-header.menu-active {
  background-color: #2e45a6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 3px 6px -3px #000; }

.main-header__title {
  align-items: center;
  display: flex;
  height: 75px; }

.main-header__title img {
  height: auto;
  max-height: 60px;
  max-width: 100%; }

.main-header__elements {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  height: 75px;
  padding-right: 0; }

.main-header__target {
  line-height: 1.8rem;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 0rem;
  order: 1; }

.main-header__target--when {
  font-size: 2rem;
  font-family: Futura; }

.main_header__target--where {
  font-size: 1.2rem;
  font-family: Futura; }

.main-header__buttons {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  order: 2; }

.main-header__button {
  height: 75px;
  width: 75px;
  border: none; }

.main-header__button--map {
  background: url(app/images//pin.png) no-repeat center center;
  color: #2e45a6;
  order: 1;
  transition: border 0.3s; }

.main-header__button--menu {
  background: #fff url(app/images//menu-hamburger.png) no-repeat center center;
  color: #fff;
  order: 2; }

.main-header__button--menu.menu-active {
  background-color: #eee; }

@media handheld, only screen and (max-width: 1200px) {
  .main-header {
    padding: 0;
    height: 75px; }
  .main-header--scrolled .main-header__button--map {
    border-left: 1px solid rgba(255, 255, 255, 0.3); }
  .main-header__title {
    height: 75px; }
  .main-header__elements {
    height: 75px;
    margin: 0; } }

.main-footer {
  background-color: #fff;
  height: 100px;
  margin: 0 auto;
  padding: 4rem 8rem; }

.main-footer__contact {
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase; }

.main-footer__contact * {
  font-size: 1.6rem;
  line-height: 3.2rem; }

.main-footer__social-icons {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 100px;
  justify-content: flex-start;
  list-style-type: none; }

.main-footer__copyright {
  text-align: right; }

.social-icon:not(:last-child) {
  margin-right: 4rem; }

@media handheld, only screen and (max-width: 1200px) {
  .social-icon:not(:last-child) {
    margin-right: 2rem; }
  .main-footer__contact * {
    font-size: 1.2rem;
    line-height: 2.4rem; }
  .main-footer {
    padding: 2rem 2rem; }
  .main-footer__social-icons {
    height: 75px;
    justify-content: flex-end; }
  .main-footer__copyright {
    margin-top: 1rem;
    text-align: left; }
  .main-footer__copyright__text {
    font-size: 1.2rem; } }

.about-section {
  background-image: url(app/images//about-section-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #2e45a6;
  color: #fff;
  height: 800px;
  padding: 4rem 8rem; }

.about-section__content {
  padding-top: 150px; }

@media handheld, only screen and (max-width: 1200px) {
  .about-section {
    background-position: 26% top;
    height: auto;
    padding: 2rem 2rem; }
  .about-section__content {
    padding-top: 75px; } }

.form-section {
  background-image: url(app/images//form-section-bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 800px;
  padding: 4rem 8rem;
  overflow: hidden; }

.form-section__form__submit {
  margin-top: 2rem; }

.form-section__form-success {
  display: none; }

.form-section__form-success__header {
  color: #2ea688; }

@media handheld, only screen and (max-width: 1200px) {
  .form-section {
    background-image: none;
    padding: 2rem 2rem; } }

.history-section {
  background-color: #000;
  background-image: url(app/images//history-section-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
  height: 800px;
  padding: 4rem 8rem; }

.history-section__content {
  padding-top: 40px; }

@media handheld, only screen and (max-width: 1200px) {
  .history-section {
    background-image: none;
    height: auto;
    padding: 2rem 2rem; } }

.photos-section {
  display: block;
  background: url(app/images//photos-all.png) top left no-repeat;
  background-size: cover;
  height: 16.7vw;
  min-height: 150px; }

.map-section {
  background-color: #2e45a6;
  color: #fff;
  padding: 0 0 0 8rem; }

.map-section__text {
  padding-top: 4rem; }

#map {
  display: flex;
  height: calc(90vh - 75px);
  min-height: 200px;
  width: 100%; }

.map-section__map-wrapper {
  padding-right: 0;
  margin: 0; }

@media handheld, only screen and (max-width: 1200px) {
  .map-section {
    padding: 0; }
  .map-section__text {
    padding: 2rem 2rem; }
  #map {
    height: calc(75vh - 75px); } }

.partners-section {
  background-color: #fff;
  color: #2e45a6;
  padding: 4rem 8rem; }

@media handheld, only screen and (max-width: 1200px) {
  .partners-section {
    padding: 2rem 2rem; } }

.speakers-section {
  background-color: #eff1f6;
  color: #2e45a6;
  padding: 4rem 2rem 4rem 8rem; }

.speakers-section__title-side {
  padding-top: 10rem; }

.agenda {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.agenda-mobile__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem; }

.agenda-mobile__table th {
  background-color: #2e45a6;
  color: #fff;
  padding: 1rem 0.5rem;
  font-size: 1.6rem;
  font-family: Futura;
  text-transform: uppercase; }
  .agenda-mobile__table th:not(:last-child) {
    border-right: 1px solid #fff; }

.agenda-mobile__table td {
  background-color: #fff;
  padding: 0.5rem;
  border: 1px solid #2e45a6; }
  .agenda-mobile__table td:not(:last-child) {
    border-right: 1px solid #2e45a6; }

@media handheld, only screen and (max-width: 1600px) {
  .speakers-section__title-side {
    width: 100%; }
  .agenda-wrapper {
    width: 1000px;
    margin: 0 auto; }
  .agenda {
    margin: 4rem auto 2rem auto;
    width: 100%; } }

@media handheld, only screen and (max-width: 1200px) {
  .speakers-section {
    padding: 2rem 2rem; }
  .speakers-section__title-side {
    padding-top: 0; } }

.agenda__speakers-cards {
  position: relative;
  height: 780px;
  overflow: hidden;
  padding: 150px 20px 150px 20px;
  width: 600px; }
  .agenda__speakers-cards::before, .agenda__speakers-cards::after {
    content: '';
    display: block;
    height: 195px;
    position: absolute;
    left: 0;
    width: calc(100% + 40px);
    z-index: 100; }
  .agenda__speakers-cards::before {
    background: linear-gradient(to bottom, #eff1f6 0%, transparent);
    top: 0; }
  .agenda__speakers-cards::after {
    bottom: 0;
    background: linear-gradient(to top, #eff1f6 0%, transparent); }

.speaker-cards__scroll-wrapper {
  position: relative;
  top: 0;
  transition: top 0.75s cubic-bezier(0.21, 1.27, 0.42, 1) 0s; }

.speaker-card {
  border-radius: 8px;
  box-shadow: #a1a1a1 0 0 20px 0;
  display: flex;
  flex-direction: row;
  margin: 90px 0 90px 0;
  height: 300px;
  width: 100%; }

.speaker-card__image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  display: block;
  min-width: 180px;
  border-radius: 8px 0 0 8px; }

.speaker-card__info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 2rem; }

.speaker-card__name {
  margin: 1rem 0 2rem 0;
  line-height: 1; }

.speaker-card__description {
  color: #a1a1a1;
  font-size: 1.2rem;
  line-height: 2;
  flex-grow: 1; }

.speaker-card__social-links {
  align-items: center;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin-top: 2rem; }

.speaker-card__social-link {
  display: flex;
  padding-right: 2rem; }

.timeline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
  list-style-type: none;
  height: 100%; }

.timeline__prelection {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 0rem;
  transition: opacity 0.2s ease-in-out 0s; }
  .timeline__prelection:hover {
    cursor: pointer; }

.timeline__pointer {
  position: absolute;
  top: -999px;
  left: -999px;
  opacity: 0;
  height: 50px;
  width: auto;
  transition: top 0.75s cubic-bezier(0.21, 1.27, 0.42, 1) 0s, opacity 2s ease-in-out 0.75s; }

.timeline__pointer__background-line {
  border-left: 1px solid rgba(46, 69, 166, 0.5);
  position: absolute;
  top: -999px;
  left: -999px;
  height: 0; }

.timeline__prelection__info {
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 1rem;
  text-align: right; }

.timeline__prelection__when {
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0 1rem; }

.timeline__prelection__pointer-space {
  flex-grow: 0;
  flex-shrink: 1;
  height: 100%;
  width: 80px; }

.timeline__prelection__author {
  font-size: 1.6rem; }

.timeline__prelection__title {
  font-size: 1.2rem; }

.timeline__prelection__hour {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: Futura; }

.tile-header--light, .tile-header--dark {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 2.4rem;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: Futura;
  padding-left: 3.2rem;
  text-transform: uppercase; }

.tile-header--light {
  color: #fff;
  background-image: url(app/images//header-bullet-point-light.png); }

.tile-header--dark {
  color: #2e45a6;
  background-image: url(app/images//header-bullet-point-dark.png); }

.section-header {
  font-size: 8.6rem;
  text-transform: uppercase;
  padding-bottom: 4rem;
  line-height: 1; }

.section-header--light {
  color: #fff; }

.section-header--dark {
  color: #2e45a6; }

.section-header--shadow {
  text-shadow: rgba(161, 161, 161, 0.5) 0 0 30px; }

@media handheld, only screen and (max-width: 1200px) {
  .section-header {
    font-size: 4.2rem;
    padding-bottom: 2rem; }
  .section-header--shadow {
    text-shadow: rgba(161, 161, 161, 0.5) 0 0 10px; } }

.section-description {
  margin-bottom: 5rem; }

.button--dark, .button--light {
  box-sizing: content-box;
  border: none;
  display: inline-block;
  font-family: Roboto;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem;
  padding: 2rem 3rem;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 18rem; }

.button--dark {
  background-color: #2e45a6;
  color: #fff; }

.button--light {
  background-color: #fff;
  color: #2e45a6; }

.button--icon-dark-mouse, .button--icon-light-movie, .button--icon-dark-picture, .button--icon-light-mouse {
  background-position: 2rem center;
  background-repeat: no-repeat;
  padding-left: 7rem;
  width: 14rem; }

.button--icon-dark-mouse {
  background-image: url(app/images//button-icon-dark-mouse.png); }

.button--icon-light-movie {
  background-image: url(app/images//button-icon-light-movie.png); }

.button--icon-dark-picture {
  background-image: url(app/images//button-icon-dark-picture.png); }

.button--icon-light-mouse {
  background-image: url(app/images//button-icon-light-mouse.png); }

.logo-list {
  margin: 4rem auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; }

.logo-list__item {
  display: block;
  list-style-type: none;
  padding: 0 1rem 4rem 1rem; }

.logo-list__item a {
  display: block;
  width: 305px;
  height: 130px;
  background-size: 305px 260px;
  background-position: top center; }

.logo-list__item a:hover {
  background-position: bottom center; }

.logo-list__item img {
  width: 100%; }

.form-chooser {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase; }

.form-chooser__label {
  padding: 2rem 3rem 2rem 0; }

.form-chooser__tabs {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  text-transform: uppercase; }

.form-chooser__tab {
  color: #abb1d5;
  display: block;
  list-style-type: none;
  padding: 2rem 3rem 2rem 3rem; }

.form-chooser__tab.active {
  background: url(app/images//check.png) no-repeat left 2.6rem;
  color: #2ea688; }

@media handheld, only screen and (max-width: 1200px) {
  .form-chooser {
    flex-direction: column;
    align-items: flex-start; }
  .form-chooser__label {
    padding-bottom: 0; } }

.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: calc(100% - 2em);
  vertical-align: top; }

.input__field {
  position: relative;
  display: block;
  padding: 0.8em;
  width: 100%;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  color: #2e45a6;
  font-weight: 400;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
  font-size: 1.6rem; }

.input__field:focus {
  outline: none; }

.input__label {
  display: inline-block;
  padding: 0 1em;
  width: 40%;
  color: #696969;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.6rem; }

.input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%; }

.graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none; }

.icon {
  color: #2e45a6;
  font-size: 150%; }

/* Individual styles */
/* Nariko */
.input--nariko {
  overflow: hidden;
  padding-top: 4rem; }

.input__field--nariko {
  background: transparent;
  opacity: 0;
  z-index: 100;
  color: #2e45a6; }

.input__label--nariko {
  width: 100%;
  bottom: 0;
  position: absolute;
  pointer-events: none;
  text-align: left;
  color: #2e45a6;
  padding: 0 0.5em; }

.input__label--nariko::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4em;
  top: 100%;
  left: 0;
  background: #f0f0ff;
  border-top: 4px solid #2e45a6;
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }

.input__label-content--nariko {
  padding: 0;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.4s, color 0.4s;
  transition: transform 0.4s, color 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }

.input__field--nariko:focus,
.input--filled .input__field--nariko {
  cursor: text;
  opacity: 1;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s; }

.input__field--nariko:focus + .input__label--nariko::before,
.input--filled .input__label--nariko::before {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transform: translate3d(0, -3.3em, 0);
  transform: translate3d(0, -3.3em, 0); }

.input__field--nariko:focus + .input__label--nariko .input__label-content--nariko,
.input--filled .input__label-content--nariko {
  color: #2e45a6;
  -webkit-transform: translate3d(0, -3.3em, 0) scale3d(0.81, 0.81, 1);
  transform: translate3d(0, -3.3em, 0) scale3d(0.81, 0.81, 1); }

html, body {
  background-color: #fff;
  color: #2e45a6;
  font-family: Roboto;
  font-size: 10px;
  line-height: 1.8; }

h1 {
  font-family: Futura;
  font-size: 4.8rem; }

h2 {
  font-family: Futura;
  font-size: 8.6rem; }

h3 {
  font-family: Futura;
  font-size: 2.4rem; }

p {
  font-family: Roboto;
  font-size: 1.6rem; }

.main {
  max-width: 1900px;
  margin: 0 auto; }

.hidden {
  display: none; }

@media handheld, only screen and (max-width: 1200px) {
  h1 {
    font-size: 4.8rem; }
  h2 {
    font-size: 4.2rem; }
  h3 {
    font-size: 2.4rem; }
  p {
    font-size: 1.6rem; } }
