.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #052460;
  padding: 48px 32px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 96px), 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 96px), 0 100%);
}

.nav .nav-logo {
  margin: 0;
  height: 20px;
}

.nav .nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav .nav-logo-img {
  display: inline-block;
  width: auto;
  height: 100%;
}

.nav .nav-logo + .nav-menu {
  margin-top: 20px;
}

.nav .nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 32px;
  color: #ee283b;
}

.nav .nav-menu a {
  text-decoration: none;
  color: inherit;
}

.nav .nav-menu .nav-menu-item-link {
  display: inline-block;
  -webkit-transition: color 750ms;
  transition: color 750ms;
}

.nav .nav-menu .nav-menu-item-link:hover,
.nav .nav-menu .nav-menu-item-link.-active {
  color: #fff;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}

@media (min-width: 960px) {
  .nav {
    position: fixed;
    right: auto;
    bottom: 0;
    width: 288px;
    padding: 72px 48px;
    -webkit-clip-path: none;
    clip-path: none;
    background: url("../images/slant.svg");
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .nav .nav-logo {
    height: 24px;
  }
  .nav .nav-logo + .nav-menu {
    margin-top: 24px;
  }
  .nav .nav-menu {
    font-size: 16px;
    letter-spacing: 4px;
    line-height: 28px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.background,
.foreground {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.foreground {
  opacity: 0;
  z-index: 2;
}

.foreground #foreground {
  position: absolute;
  right: -25%;
  bottom: -8px;
  width: 150%;
  height: auto;
}

.background #background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.pagehero .pagehero-image {
  top: 136px;
  left: 0;
  right: 0;
  position: absolute;
  height: calc(66vh - 136px);
  z-index: 4;
}

.pagehero .pagehero-image .pagehero-image-source {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.content {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  z-index: 3;
  padding-top: 66vh;
  font-size: 16px;
  line-height: 20px;
}

.content .content-container {
  padding: 32px 0;
}

.content .content-container p {
  margin: 16px 0;
}

@media (min-width: 480px) {
  .foreground #foreground {
    right: -24px;
    width: auto;
    height: 50%;
  }
}

@media (min-width: 960px) {
  .foreground {
    opacity: 1;
  }
  .pagehero .pagehero-image {
    top: 0;
    position: fixed;
    right: calc(50% - 24vh);
    bottom: 0;
    height: auto;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 48vh) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 48vh) 100%, 0 100%);
    -webkit-mask: url("../images/mask.svg") top right/cover;
            mask: url("../images/mask.svg") top right/cover;
  }
  .pagehero .pagehero-image .pagehero-image-source {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .content {
    left: 40%;
    right: 0;
    padding-top: 0;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    line-height: 24px;
  }
  .content .content-container {
    padding: 0 48px 0 22vw;
  }
}

#home {
  background: #052460;
  color: #fff;
}

#home .foreground {
  opacity: 1;
}

#home .homehero .homehero-copy {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  z-index: 3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 216px;
  min-height: 100%;
  max-width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
}

#home .homehero .homehero-copy .homehero-copy-container p {
  margin: 16px 0;
}

#home .homehero .homehero-video {
  top: 136px;
  left: 0;
  right: 0;
  position: fixed;
  bottom: 0;
  overflow: hidden;
}

#home .homehero .homehero-video .homehero-video-source {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 960px) {
  #home .homehero .homehero-copy {
    left: calc(50% - 320px);
    right: calc(50% - 320px);
    max-width: none;
    z-index: 5;
    padding-top: 0;
    font-size: 36px;
    text-align: center;
  }
  #home .homehero .homehero-video {
    top: 0;
  }
  #home .homehero .homehero-video .homehero-video-source {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #home .homehero::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 288px;
    padding: 48px;
    background: url("../images/slant-right.svg");
    background-position: bottom left;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (min-width: 960px) {
  #about .content-container {
    padding-top: 56px;
    padding-bottom: 56px;
    background: #ee283b;
  }
}

#work {
  background: #fff;
  color: #052460;
}

#work .work {
  position: absolute;
  top: 136px;
  left: 0;
  right: 0;
  z-index: 3;
  padding-bottom: 24px;
}

#work .work .work-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#work .work .work-list .work-list-item .work-media {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #052460;
  -webkit-clip-path: polygon(0 96px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 96px, 100% 0, 100% 100%, 0 100%);
}

#work .work .work-list .work-list-item .work-media .work-media-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#work .work .work-list .work-list-item .work-media .work-media-list .work-media-list-item {
  opacity: 0;
  -webkit-transition: opacity 1000ms;
  transition: opacity 1000ms;
}

#work .work .work-list .work-list-item .work-media .work-media-list .work-media-list-item .work-media-source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#work .work .work-list .work-list-item .work-media .work-media-list .work-media-list-item.-active {
  opacity: 1;
}

#work .work .work-list .work-list-item .work-media .work-media-button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 48px;
  height: 48px;
  line-height: 0;
  margin-top: -24px;
  background: #ee283b;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 750ms, width 750ms;
  transition: background 750ms, width 750ms;
}

#work .work .work-list .work-list-item .work-media .work-media-button:hover {
  background: #052460;
}

#work .work .work-list .work-list-item .work-media .work-media-button:active {
  background: #fff;
  width: 64px;
  -webkit-transition-duration: 0ms;
          transition-duration: 0ms;
}

#work .work .work-list .work-list-item .work-info .work-info-container {
  padding: 32px 32px 0 32px;
}

#work .work .work-list .work-list-item .work-info .work-info-container .work-info-header {
  margin: 16px 0;
  font-size: 24px;
  line-height: 26px;
  color: #ee283b;
}

#work .work .work-list .work-list-item .work-info .work-info-container .work-info-details {
  margin: 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
}

#work .work .work-list .work-list-item .work-info .work-info-container .work-info-details .work-info-details-icon {
  margin: -2px 4px 0 0;
}

#work .work .work-list .work-list-item .work-info .work-info-container .work-info-details .work-info-details-icon,
#work .work .work-list .work-list-item .work-info .work-info-container .work-info-details .work-info-details-text {
  vertical-align: middle;
}

#work .work .work-list .work-list-item .work-info .work-info-container .work-info-content {
  margin: 32px 0;
  font-size: 16px;
  line-height: 20px;
}

#work .work .work-list .work-list-item .work-info .work-info-container .work-info-content p {
  margin: 16px 0;
}

#work .work .work-list .work-list-item:first-child .work-media {
  -webkit-clip-path: none;
  clip-path: none;
}

@media (min-width: 960px) {
  #work .work {
    top: 0;
    padding-bottom: 0;
  }
  #work .work .work-list .work-list-item {
    position: relative;
    height: calc(50vh + 1px);
    margin-bottom: -1px;
    overflow: hidden;
  }
  #work .work .work-list .work-list-item .work-media {
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    width: auto;
    left: 0;
    right: calc(50% - 12vh);
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 24vh) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 24vh) 100%, 0 100%);
    -webkit-mask: url("../images/mask.svg") top right/cover;
            mask: url("../images/mask.svg") top right/cover;
  }
  #work .work .work-list .work-list-item .work-media .work-media-button {
    width: calc(12vh + 64px);
    height: 64px;
    margin-top: -32px;
    text-align: left;
  }
  #work .work .work-list .work-list-item .work-media .work-media-button .work-media-button-icon {
    margin-left: 12px;
    width: 24px;
    height: auto;
  }
  #work .work .work-list .work-list-item .work-media .work-media-button:active {
    width: calc(12vh + 80px);
  }
  #work .work .work-list .work-list-item .work-info {
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    left: calc(50% + 24vh);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #work .work .work-list .work-list-item .work-info .work-info-container {
    padding: 16px 48px 0 0;
  }
  #work .work .work-list .work-list-item .work-info .work-info-container .work-info-details {
    font-size: 13px;
  }
  #work .work .work-list .work-list-item:nth-child(even) {
    background: rgba(5, 36, 95, 0.03);
  }
  #work .work .work-list .work-list-item:first-child .work-media {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 24vh) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 24vh) 100%, 0 100%);
    -webkit-mask: url("../images/mask.svg") top right/cover;
            mask: url("../images/mask.svg") top right/cover;
  }
}

#contact .content .content-container .contactinfo {
  margin: 16px 0;
}

#contact .content .content-container .contactinfo .contactinfo-line {
  margin: 4px 0;
}

#contact .content .content-container .contactinfo .contactinfo-line .contactinfo-icon {
  margin: 0 8px 0 0;
  vertical-align: middle;
}

#contact .content .content-container .contactinfo .contactinfo-line .contactinfo-link {
  vertical-align: middle;
}

#contact .content .content-container .contactinfo + .contactform {
  margin-top: 32px;
}

#contact .content .content-container .contactform {
  margin: 16px 0;
}

#contact .content .content-container .contactform .contactform-textbox,
#contact .content .content-container .contactform .contactform-textarea,
#contact .content .content-container .contactform .contactform-button {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  line-height: 20px;
  -webkit-transition: color 1s, background 1s;
  transition: color 1s, background 1s;
}

#contact .content .content-container .contactform .contactform-textbox,
#contact .content .content-container .contactform .contactform-textarea {
  width: 100%;
  margin: 16px 0;
  padding: 8px 12px;
  background: #f2f4f7;
  border-bottom: 1px solid #052460;
  outline: none;
}

#contact .content .content-container .contactform .contactform-textarea {
  resize: vertical;
}

#contact .content .content-container .contactform .contactform-button {
  margin: 16px 0 16px auto;
  padding: 8px 24px;
  background: #ee283b;
  color: #fff;
  cursor: pointer;
}

#contact .content .content-container .contactform .contactform-textbox::-webkit-input-placeholder,
#contact .content .content-container .contactform .contactform-textarea::-webkit-input-placeholder,
#contact .content .content-container .contactform .contactform-button {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#contact .content .content-container .contactform .contactform-textbox:-ms-input-placeholder,
#contact .content .content-container .contactform .contactform-textarea:-ms-input-placeholder,
#contact .content .content-container .contactform .contactform-button {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#contact .content .content-container .contactform .contactform-textbox::-ms-input-placeholder,
#contact .content .content-container .contactform .contactform-textarea::-ms-input-placeholder,
#contact .content .content-container .contactform .contactform-button {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#contact .content .content-container .contactform .contactform-textbox::placeholder,
#contact .content .content-container .contactform .contactform-textarea::placeholder,
#contact .content .content-container .contactform .contactform-button {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#contact .content .content-container .contactform .contactform-textbox::-webkit-input-placeholder,
#contact .content .content-container .contactform .contactform-textarea::-webkit-input-placeholder {
  color: #8f9fbf;
}

#contact .content .content-container .contactform .contactform-textbox:-ms-input-placeholder,
#contact .content .content-container .contactform .contactform-textarea:-ms-input-placeholder {
  color: #8f9fbf;
}

#contact .content .content-container .contactform .contactform-textbox::-ms-input-placeholder,
#contact .content .content-container .contactform .contactform-textarea::-ms-input-placeholder {
  color: #8f9fbf;
}

#contact .content .content-container .contactform .contactform-textbox::placeholder,
#contact .content .content-container .contactform .contactform-textarea::placeholder {
  color: #8f9fbf;
}

#contact .content .content-container .contactform .contactform-textbox:focus,
#contact .content .content-container .contactform .contactform-textarea:focus {
  background: #fff;
  border-bottom-color: #ee283b;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

#contact .content .content-container .contactform .contactform-button:hover {
  background: #052460;
}

#contact .content .content-container .contactform .contactform-textbox:focus,
#contact .content .content-container .contactform .contactform-textarea:focus,
#contact .content .content-container .contactform .contactform-button:hover {
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}

#contact .content .content-container .wpcf7 input[type="text"],
#contact .content .content-container .wpcf7 input[type="email"],
#contact .content .content-container .wpcf7 textarea {
  margin: 0 !important;
}

#contact .content .content-container .wpcf7 input[type="submit"] {
  margin-top: 0;
  margin-bottom: 0;
}

#contact .content .content-container .wpcf7-response-output {
  display: none;
}

#contact .content .content-container .wpcf7-spinner {
  display: none;
}

@media (min-width: 960px) {
  #contact .content .content-container {
    width: 100%;
  }
  #contact .content .content-container .contactinfo .contactinfo-line {
    direction: rtl;
  }
  #contact .content .content-container .contactinfo .contactinfo-line .contactinfo-icon {
    margin: 0 0 0 8px;
  }
  #contact .content .content-container .contactinfo .contactinfo-line .contactinfo-link {
    direction: ltr;
    unicode-bidi: bidi-override;
  }
  #contact .content .content-container .contactinfo + .contactform {
    margin-top: 48px;
  }
  #contact .content .content-container .contactform .contactform-textbox,
  #contact .content .content-container .contactform .contactform-textarea,
  #contact .content .content-container .contactform .contactform-button {
    margin-top: 24px;
    line-height: 24px;
  }
  #contact .content .content-container .contactform .contactform-textbox,
  #contact .content .content-container .contactform .contactform-textarea {
    background: #fff;
    border-bottom: none;
  }
  #contact .content .content-container .contactform .contactform-textbox::-webkit-input-placeholder,
  #contact .content .content-container .contactform .contactform-textarea::-webkit-input-placeholder,
  #contact .content .content-container .contactform .contactform-button {
    font-size: 14px;
  }
  #contact .content .content-container .contactform .contactform-textbox:-ms-input-placeholder,
  #contact .content .content-container .contactform .contactform-textarea:-ms-input-placeholder,
  #contact .content .content-container .contactform .contactform-button {
    font-size: 14px;
  }
  #contact .content .content-container .contactform .contactform-textbox::-ms-input-placeholder,
  #contact .content .content-container .contactform .contactform-textarea::-ms-input-placeholder,
  #contact .content .content-container .contactform .contactform-button {
    font-size: 14px;
  }
  #contact .content .content-container .contactform .contactform-textbox::placeholder,
  #contact .content .content-container .contactform .contactform-textarea::placeholder,
  #contact .content .content-container .contactform .contactform-button {
    font-size: 14px;
  }
  #contact .content .content-container .contactform .contactform-textbox:focus,
  #contact .content .content-container .contactform .contactform-textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  #contact .content .content-container .contactform .contactform-button:hover {
    background: #fff;
    color: #052460;
  }
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa-light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nexa";
  src: url("../fonts/nexa-bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: "Nexa", sans-serif;
  background: #fff;
  color: #052460;
  -webkit-transition: background 1000ms;
  transition: background 1000ms;
}

@media (min-width: 960px) {
  body {
    background: #052460;
    color: #fff;
  }
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers.
     */
body {
  margin: 0;
}

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
       ========================================================================== */
/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
       ========================================================================== */
/**
     * Remove the gray background on active links in IE 10.
     */
a {
  background-color: transparent;
}

/**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Remove the border on images inside links in IE 10.
     */
img {
  border-style: none;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * Correct the inability to style clickable types in iOS and Safari.
     */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
     * Remove the inner border and padding in Firefox.
     */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
     * Restore the focus styles unset by the previous rule.
     */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  vertical-align: baseline;
}

/**
     * Remove the default vertical scrollbar in IE 10+.
     */
textarea {
  overflow: auto;
}

/**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/* Misc
       ========================================================================== */
/**
     * Add the correct display in IE 10+.
     */
template {
  display: none;
}

/**
     * Add the correct display in IE 10.
     */
[hidden] {
  display: none;
}
/*# sourceMappingURL=main.css.map */