/* Photo explanation/caption style */
.photo-explanation {
  display: block;
  font-size: 12px;
  color: #888;
  margin: 0.5em 0 1.5em 0;
  text-align: center;
}
/* ============================================
   MODERN CSS RESET & SONOXHIBIT STYLES
   Converted from SASS/Compass (2025)
   ============================================ */

/* ============================================
   MODERN CSS RESET
   Based on best practices from modern frameworks
   ============================================ */
@font-face {
  font-family: 'Suisse';
  src: url(../src/Fonts/SuisseIntl-Light.otf) format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'Neureal';
  src: url(../src/Fonts/NeurealTrial-Mono.otf) format('opentype');
}

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;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* ============================================
   BASE STYLES & LAYOUT
   ============================================ */

/* general styles - not recommended for change */
strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

object {
  display: block;
}

.once {
  clear: left;
}

.clL {
  clear: left;
}

/* example rules for styling via section */
body.section-1 { /* background-color: yellow; */ }
body.section-2 { }
/* style via particular exhibit */
body.exhibit-12 { }
/* styling via exhibit format */
body.visual_index { /* background: green; */ }

/* this is to prevent some background colors on links in exhibits */
/* do not change these */
#img-container span.backgrounded a,
#img-container a.thickbox,
#img-container a.thumb-img,
#img-container #d-col1 a {
  background: transparent;
}

/* not recommended for change */
#index {
  overflow: auto;
  top: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  height: 100%;
  z-index: 1;
  line-height: 1.5em;
}

#exhibit {
  height: 100%;
  top: 0;
}

/* ============================================
   BODY & GLOBAL TYPOGRAPHY
   ============================================ */

body {
  font-size: 14px;
  font-family: 'Suisse', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.3em;
  /* font-weight: 300; */
}

/* link scheme */
/* you can customize links further down the page too */
a:link {
  text-decoration: none;
  color: #666;
}

a:active {
  text-decoration: none;
  color: #00cc00;
}

a:visited {
  text-decoration: none;
  color: #666;
}

a:hover {
  text-decoration: underline;
}

.top a:hover {
  text-decoration: wavy underline !important;
}

a img {
  border: none;
}

/* general styles */
small {
  font-size: 9px;
}

code {
  font-family: monospace;
}

blockquote {
  padding-left: 9px;
}

/* headings */
h1 {
  font-size: 13px;
  margin-bottom: 1em;
  margin-top: 1em;
  font-weight: bold;
  width: 60%;
}

h2 {
  font-size: 13px;
  margin-bottom: 1em;
  margin-top: 1em;
  font-weight: bold;
  width: 60%;
}

h3 {
  font-size: 13px;
  margin-bottom: 1em;
  margin-top: 1em;
  font-weight: bold;
  width: 60%;
}

h4 {
  font-size: 13px;
  margin-bottom: 1em;
  margin-top: 1em;
}

/* paragraph width */
#index p {
  width: auto;
  margin-bottom: 1em;
}

#exhibit p, code, blockquote {
  width: 60%;
  margin-bottom: 1em;
  /* line-height: 1.3em; */
}

/* list styling */
#exhibit ul {
  list-style-type: disc;
  margin-bottom: 1.5em;
  margin-top: 1em;
  padding-left: 1em;
  width: 60%;
}

#exhibit ol {
  list-style-type: decimal;
  margin-bottom: 1.5em;
  margin-top: 1em;
  padding-left: 1.5em;
  width: 60%;
}

#exhibit ul li {
  list-style-type: disc;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

#exhibit ol li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

/* image styling */
#exhibit img {
  border: 1px solid #ddd;
  margin-bottom: 1em;
  margin-top: 1em;
  max-width: 100%;
  height: auto;
  display: block;
  width: auto;
}

#exhibit img.sinBorde {
  border: none;
}

/* jekyll_picture_tag responsive sizing */
#exhibit picture {
  max-width: 100%;
  width: auto;
  display: block;
}

#exhibit picture img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

/* Image wrapper container for constraining size */
div[style*="max-width"] picture,
div[style*="max-width"] img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}

div[style*="max-width"] {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============================================
   INDEX NAVIGATION/LINKS RULES
   ============================================ */

/* never adjust the margin or padding here unless you seriously know what you are doing */
/* think #index .container and #exhibit .container for only padding adjustments */
#index {
  width: 215px;
  background: #fff;
  /* line-height: 1.3em; */
}

#exhibit {
  margin: 0 0 0 215px;
}

/* styling the index */
#index ul {
  list-style: none;
  margin: 0;
}

#index ul.section {
  margin-bottom: 1em;
}

#index ul.subsection { }

/* the follow rules for index are not required */
/* they are mostly for complex customization */
/* for tag display */
#index ul#all_tags {
  list-style-type: none;
  margin-bottom: 1em;
}

#index ul#all_tags li {
  display: inline;
  margin-right: 3px;
}

#index ul#all_tags li a { }

/* styles for the section titles */
#index ul.section span.section_title,
#index ul.section span.section_title a {
  cursor: pointer;
  font-weight: normal;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Neureal', monospace;
}

/* styles for hovering section titles */
#index ul.section span.section_title:hover,
#index ul.section span.section_title a:hover { }

/* active section titles */
#index ul.active_section span.active,
#index ul.active_section span.active a { }

#index span.active_section_title,
#index span.active_section_title a {
  font-weight: normal;
}

/* sub-section titles */
#index ul.section span.subsection_title,
#index ul.section span.subsection_title a {
  cursor: pointer;
  /* font-weight: bold; */
}

/* sub-section titles hover */
#index ul.section span.subsection_title:hover,
#index ul.section span.subsection_title a:hover { }

/* exhibit titles */
#index ul.section li.exhibit_title { }

#index ul.section li.exhibit_title a:link { }

#index ul.section li.exhibit_title a:hover {background-color: #00fff7; }

#index ul.section li.exhibit_title a:active { }

#index ul.section li.exhibit_title a:visited { }

/* index links */
#index ul.section li.exhibit_link { }

#index ul.section li.exhibit_link a:link { }

#index ul.section li.exhibit_link a:hover { }

#index ul.section li.exhibit_link a:active { }

#index ul.section li.exhibit_link a:visted { }

/* active subsection title */
#index span.active_subsection_title,
#index span.active_subsection_title a { }

/* targeted examples */
/* specific section */
#index ul#section_1 { }

/* links within the specific section */
#index ul#section_1 li.exhibit_title a { }

/* specific exhibit title */
#index li#exhibit_150 a { }

/* affect subsections container */
#index ul.subsection {
  /* padding-left: 18px; */
}

/* top/bot divs - not really used but do exist */
#index .top {
  /* height: 36px; */
  font-family: 'Neureal', monospace;
  font-size: 26px;
}

#exhibit .top {
  display: none;
}

.page-title {
  font-family: 'Neureal', monospace;
  font-size: 22px;
  margin-bottom: 18px;
}

#index .bot {
  /* font-style: italic; */
  margin-top: 80px;
  line-height: 1.2em;
}

/* generic #img-container - but remember that exhibit formats can override these */
#img-container { }

#img-container p { }

#img-container .captioning { }

#img-container .captioning .title {
  /* font-size: 13px; */
}

#img-container .captioning .caption {
  /* font-size: 13px; */
  text-align: left;
}

/* active exhibit title parts */
li.active a:link,
li a.active,
li.active a:hover,
li.active a:active,
li.active a:visited,
li span.active,
#index ul.section li.active a:link,
#index ul.section li.active a:hover,
#index ul.section li.active a:active,
#index ul.section li.active a:visited {
  font-weight: normal;
}

/* additional #index options */
#index ul li .password a {
  /* background: url(../img/locked.gif) right center no-repeat; padding-right: 18px; */
}

/* the "new" indicator */
#index ul li sup {
  color: #0c0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 8px;
  vertical-align: top;
}

/* end styling for index */

/* links styles only for the #index region */
#index a:link { }

#index a:hover { }

#index a:active { }

#index a:visted { }

/* links styles only for the #exhibit region */
#exhibit a:link {
  text-decoration: underline;
}

#exhibit a:hover { }

#exhibit a:active { }

#exhibit a:visted { }

#exhibit p{
  width: 60%;
  font-size: 18px;
  line-height: 1.15em;
}
/* ============================================
   CONTAINER & PADDING
   ============================================ */

/* this is where you adjust your paddings for #index and #exhibit together */
.container {
  padding: 27px 9px 25px 27px;
}

/* this is where you pad them separately */
#index .container { }

#exhibit .container { }

/* ============================================
   BLOG STYLING
   ============================================ */

/* blog parts */
#entries_wrapper {
  width: 800px;
}

#entries {
  width: 525px;
  float: left;
}

#entries .entry { }

#entries .entry p {
  width: auto;
}

#entries .entry .asset {
  margin-bottom: 9px;
}

#entries .entry .captioning .title {
  margin-bottom: 9px;
}

#entries .entry .captioning .caption {
  margin-bottom: 9px;
}

#entries .entry_footer {
  margin-top: 12px;
  font-size: 11px;
  color: #999;
}

#entries .entry_footer .entry_footer_pad { }

#entries .separator {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}

#entries_wrapper #sidebar {
  float: right;
  width: 200px;
}

#entries ul#prev_new_entries { }

#prev_new_entries { }

#prev_new_entries div#older {
  float: left;
}

#prev_new_entries div#newer {
  float: right;
  text-align: right;
}

.entry {
  margin-bottom: 18px;
}

.blog-separator {
  border-top: 1px solid #ccc;
  margin-bottom: 27px;
  width: 460px;
}

#plugins-list {
  margin-bottom: 18px;
}

/* ============================================
   FORM STYLING
   ============================================ */

/* style forms */
.form-row { }

.form-label { }

.form-label label {
  padding-right: 24px;
  line-height: 2.2em;
}

.form-input { }

.form-submit { }

.form-alert {
  margin-top: 9px;
}

.form-alert .failed {
  color: red;
}

#form-return {
  display: block;
}

.form-submit input {
  background-color: #333;
  border-radius: 3px;
  border: 0px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  margin: 5px 0 0 0;
  padding: 9px 12px;
}

.form-submit input:hover {
  background: #0c0;
}

input[type=text],
input[type=password],
textarea {
  font: normal normal normal 1em/1.4 'Helvetica Neue', Arial, Helvetica, sans-serif;
  margin: 0px 0px 0.5em;
  padding: 0.3em;
}

#exhibit #columned p {
  width: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

/* BUTTONS */
/* http://particletree.com/features/rediscovering-the-button-element/ */

.buttons button a {
  display: block;
  float: left;
  margin: 0 7px 0 0;
  background-color: #333;
  border-radius: 3px;
  border: 0px;
  color: white;
  cursor: pointer;
  font-size: 1em;
  line-height: 1;
  padding: 9px 12px;
  text-decoration: none;
}

.buttons button {
  width: auto;
  overflow: visible;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}

.buttons button[type] { }

/* STANDARD */
.buttons a:hover {
  background-color: #0c0;
  color: #fff;
  line-height: 1;
  margin: 5px 0 0 0;
  padding: 9px 12px;
  font-size: 12px;
}

.buttons a:active {
  background-color: #0c0;
  color: #fff;
  line-height: 1;
  margin: 5px 0 0 0;
  padding: 9px 12px;
  font-size: 12px;
}

/* ============================================
   WALKTHROUGH STYLES
   ============================================ */

/* walkthrough */
.walkthrough {
  position: relative;
  width: 905px;
  height: 655px;
  background: url(http://www.indexhibit.org/files/gimgs/screenshot1.png) no-repeat;
}

/* dots */
.walkthrough-dot {
  height: 12px;
  width: 12px;
  position: absolute;
}

.trigger:hover {
  border: 4px solid red;
  background: red;
}

/* title space */
#w1-1 {
  left: 94px;
  top: 133px;
  z-index: 1;
}

/* basic editor */
#w1-2 {
  left: 148px;
  top: 170px;
  z-index: 2;
}

/* publish */
#w1-3 {
  left: 770px;
  top: 140px;
  z-index: 3;
}

/* options */
#w1-4 {
  left: 802px;
  top: 219px;
  z-index: 4;
}

/* uploads */
#w1-5 {
  left: 792px;
  top: 317px;
  z-index: 5;
}

/* files */
#w1-6 {
  left: 272px;
  top: 537px;
  z-index: 6;
}

/* files options */
#w1-7 {
  left: 114px;
  top: 621px;
  z-index: 7;
}

.popup {
  position: absolute;
  display: none;
  /* keeps the popup hidden if no JS available */
  width: 66px;
  background: #f3f3f3;
}

.trigger {
  display: block;
  border: 4px solid #0c0;
  background: #0c0;
  border-radius: 30px;
  height: 4px;
  width: 4px;
}

/* ============================================
   MISC STYLES
   ============================================ */

/* highlighter style - maybe you want to change colors? */
.highlight {
  background: #ccff00;
  color: #000;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   Based on indexhibit mobile architecture
   All media queries at end for proper cascade override
   ============================================ */

/* Mobile elements - hidden by default */
.index-toggle {
  display: none;
}

#closing_layer {
  display: none;
}

#mobile-header {
  display: none;
}

/* ============================================
   TABLET & MOBILE (min-width: 320px and max-width: 736px)
   ============================================ */

@media only screen and (min-width: 320px) and (max-width: 736px) {
  body {
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
    padding: 10px 10px 0 10px;
    padding-top: 60px;
  }

  /* Mobile header - always visible */
  #mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    padding: 8px 15px;
    box-sizing: border-box;
    z-index: 9998;
    overflow: hidden;
  }

  #mobile-header p {
    margin: 0;
    padding: 0;
    line-height: 34px;
    font-size: 22px;
    text-align: center;
    font-family: 'Neureal', monospace;
  }

  #mobile-header a {
    color: #000;
    text-decoration: none;
  }

  #mobile-header a:hover {
    text-decoration: underline;
  }

  /* Off-canvas navigation */
  #index {
    position: fixed;
    left: -100vw;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
  }

  #exhibit {
    margin-left: 0;
    height: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
  }

  /* Headings - full width on mobile */
  h1, h2, h3 {
    width: 100%;
    font-size: 15px;
    margin-bottom: 0.8em;
    margin-top: 0.8em;
  }

  h4 {
    font-size: 15px;
  }

  /* Text content - full width on mobile */
  #index p {
    width: 100%;
  }

  #exhibit p,
  code,
  blockquote {
    width: 100%;
    margin-bottom: 1em;
  }

  /* Lists - full width on mobile */
  #exhibit ul,
  #exhibit ol {
    width: 100%;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
  }

  #exhibit ul li,
  #exhibit ol li {
    margin-bottom: 0.5em;
  }

  /* Images - responsive on mobile */
  #exhibit img,
  #exhibit object,
  #exhibit picture {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
  }

  #exhibit img.sinBorde {
    border: none;
  }

  #exhibit .container #img-container {
    margin-top: 0;
  }

  #exhibit .container #img-container div {
    width: 100%;
  }

  /* Container padding */
  #index .container,
  #exhibit .container {
    padding: 15px;
  }

  /* Typography adjustments */
  #index ul.section span.section_title,
  #index ul.section span.section_title a {
    font-size: 16px;
  }

  #index .top {
    font-size: 20px;
  }

  .page-title {
    font-size: 18px;
  }

  /* Blog layout - stack on mobile */
}

/* ============================================
   BLOG FEED STYLES
   ============================================ */

/* Blog page layout */
body.blog-page #blog-feed {
  display: block;
  margin-left: 200px;
  height: auto;
  overflow-y: auto;
  background: #fff;
  padding: 40px 0;
}

#blog-feed .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

#blog-entries {
  margin-top: 2em;
}

/* Blog entry articles */
article.blog-entry {
  margin-bottom: 3em;
  padding-bottom: 2em;
  border-bottom: 1px solid #eee;
}

article.blog-entry:last-child {
  border-bottom: none;
}

/* Entry date heading */
h2.entry-date {
  font-size: 13px;
  color: #666;
  font-weight: normal;
  margin-bottom: 0.5em;
  margin-top: 0;
  width: auto;
}

/* Entry title */
h3.entry-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 0;
  width: auto;
  color: #000;
}

/* Entry content */
.entry-content {
  line-height: 1.6em;
}

.entry-content p {
  margin-bottom: 1em;
  width: 100%;
  font-size: 14px;
}

.entry-content h3 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  width: 100%;
}

.entry-content h4 {
  font-size: 13px;
  margin-top: 1em;
  margin-bottom: 0.5em;
  width: 100%;
}

.entry-content ul,
.entry-content ol {
  width: 100%;
  margin: 1em 0 1em 1.5em;
  padding-left: 1.5em;
}

.entry-content li {
  margin-bottom: 0.5em;
}

/* Entry images */
.entry-content img,
.entry-content picture {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 1.5em 0;
  border: 1px solid #ddd;
}

/* Entry code blocks */
.entry-content code {
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 2px;
  font-family: monospace;
  font-size: 12px;
}

.entry-content pre {
  background: #f5f5f5;
  padding: 1em;
  border-left: 3px solid #ccc;
  overflow-x: auto;
  margin: 1em 0;
  width: 100%;
}

.entry-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Entry blockquotes */
.entry-content blockquote {
  border-left: 3px solid #ccc;
  margin-left: 0;
  padding-left: 1em;
  color: #666;
  font-style: italic;
}

/* Entry links */
.entry-content a {
  color: #666;
  text-decoration: none;
}

.entry-content a:hover {
  text-decoration: underline;
}

/* Entry embeds (iframes, etc) */
.entry-content iframe,
.entry-content embed,
.entry-content object {
  max-width: 100%;
  margin: 1.5em 0;
}

/* Mobile responsive blog */
@media (max-width: 900px) {
  body.blog-page #blog-feed {
    margin-left: 0;
    padding-top: 20px;
  }

  #blog-feed .container {
    padding: 0 15px;
  }

  article.blog-entry {
    margin-bottom: 2em;
    padding-bottom: 1.5em;
  }

  h2.entry-date,
  h3.entry-title {
    font-size: 14px;
  }

  .entry-content p,
  .entry-content h3,
  .entry-content h4 {
    width: 100%;
  }
  #entries_wrapper {
    width: 100%;
  }

  #entries {
    width: 100%;
    float: none;
  }

  #entries_wrapper #sidebar {
    width: 100%;
    float: none;
    margin-top: 20px;
  }

  .blog-separator {
    width: 100%;
  }

  /* Form elements */
  input[type=text],
  input[type=password],
  textarea {
    font-size: 14px;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
  }

  .form-label label {
    padding-right: 12px;
    line-height: 1.8em;
  }

  .form-submit input {
    font-size: 13px;
    padding: 8px 10px;
  }

  .form-submit input:hover {
    background: #0c0;
  }

  /* Buttons */
  .buttons button a {
    font-size: 13px;
    padding: 7px 10px;
    margin: 0 5px 5px 0;
  }

  .buttons a:hover,
  .buttons a:active {
    font-size: 13px;
    padding: 7px 10px;
  }

  /* Small text */
  small {
    font-size: 10px;
  }

  /* Mobile hamburger toggle button */
  .index-toggle {
    display: block;
    height: 35px;
    width: 35px;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 5000000;
    text-indent: -9999px;
    cursor: pointer;
  }

  /* Overlay when menu is open */
  #closing_layer {
    display: none;
    height: 100%;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
  }

  /* Hamburger icon */
  #nav-toggle {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    padding: 10px 0 16px 25px;
  }

  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 25px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
  }

  #nav-toggle span:before {
    top: -7px;
  }

  #nav-toggle span:after {
    bottom: -7px;
  }

  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
  }

  #nav-toggle.active span {
    background-color: transparent;
  }

  #nav-toggle.active span:before,
  #nav-toggle.active span:after {
    top: 0;
  }

  #nav-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #nav-toggle.active span:after {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
    top: 7px;
  }

  /* Fix extra space under images */
  .asset {
    line-height: 0;
  }

  .asset a {
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 0;
  }

  /* Responsive video containers */
  .video-container {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* ============================================
   SMALL PHONES (max-width: 480px)
   ============================================ */

@media only screen and (min-width: 320px) and (max-width: 480px) {
  body {
    font-size: 13px;
  }

  h1, h2, h3, h4 {
    font-size: 13px;
  }

  #index ul.section span.section_title,
  #index ul.section span.section_title a {
    font-size: 14px;
  }

  #index .top {
    font-size: 18px;
  }

  .page-title {
    font-size: 15px;
  }

  #index .bot {
    margin-top: 40px;
  }

  #index .container,
  #exhibit .container {
    padding: 12px 9px;
  }

  .buttons button a {
    font-size: 12px;
    padding: 6px 8px;
  }

  .form-submit input {
    font-size: 12px;
    padding: 6px 8px;
  }
}