/* fonts */
@font-face {
  font-family: "Metropolis";
  src: url("fonts/Metropolis-Black.eot?#iefix") format("embedded-opentype"),
    url("fonts/Metropolis-Black.otf") format("opentype"),
    url("fonts/Metropolis-Black.woff") format("woff"),
    url("fonts/Metropolis-Black.ttf") format("truetype"),
    url("fonts/Metropolis-Black.svg#Metropolis-Black") format("svg");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("fonts/Metropolis-BlackItalic.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/Metropolis-BlackItalic.otf") format("opentype"),
    url("fonts/Metropolis-BlackItalic.woff") format("woff"),
    url("fonts/Metropolis-BlackItalic.ttf") format("truetype"),
    url("fonts/Metropolis-BlackItalic.svg#Metropolis-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("fonts/Metropolis-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Metropolis-Bold.otf") format("opentype"),
    url("fonts/Metropolis-Bold.woff") format("woff"),
    url("fonts/Metropolis-Bold.ttf") format("truetype"),
    url("fonts/Metropolis-Bold.svg#Metropolis-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("fonts/Metropolis-BoldItalic.eot?#iefix") format("embedded-opentype"),
    url("fonts/Metropolis-BoldItalic.otf") format("opentype"),
    url("fonts/Metropolis-BoldItalic.woff") format("woff"),
    url("fonts/Metropolis-BoldItalic.ttf") format("truetype"),
    url("fonts/Metropolis-BoldItalic.svg#Metropolis-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Metropolis";
  src: url("fonts/Metropolis-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/Metropolis-Regular.otf") format("opentype"),
    url("fonts/Metropolis-Regular.woff") format("woff"),
    url("fonts/Metropolis-Regular.ttf") format("truetype"),
    url("fonts/Metropolis-Regular.svg#Metropolis-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("fonts/Metropolis-RegularItalic.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/Metropolis-RegularItalic.otf") format("opentype"),
    url("fonts/Metropolis-RegularItalic.woff") format("woff"),
    url("fonts/Metropolis-RegularItalic.ttf") format("truetype"),
    url("fonts/Metropolis-RegularItalic.svg#Metropolis-RegularItalic")
      format("svg");
  font-weight: normal;
  font-style: italic;
}

body {
  background: #112739;
  font-family: "Metropolis", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
#full-wrap {
  padding: 20px;
}
#wrapper {
  background: #fff;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 900px;
}
#content {
  padding: 30px;
}
#header {
  text-align: center;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
}
#menu a {
  text-decoration: none;
}
#menu {
  text-align: center;
  background: #2f6798;
  display: flex;
  justify-content: center;
}
#menu div {
  position: relative;
}
#menu a {
  padding: 20px;
  display: inline-block;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
}
#menu a:hover {
  color: #fbc052;
}
#menu div.dropdown-menu {
  position: absolute;
  background: #112739;
  left: calc(50% - 100px);
  width: 200px;
  display: none;
  z-index: 80;
}
#menu .dropdown-menu a {
  display: block;
}
a {
  color: #000;
}
#leftside {
  width: 250px;
  float: left;
}
#leftside a {
  text-decoration: none;
}
#rightside {
  float: right;
  width: 830px;
}
#rightside img {
  max-width: 830px;
  height: auto;
}
figcaption {
  font-style: italic;
  font-size: 0.8em;
}
figure {
  text-align: center;
}

.intro-text {
  max-width: 700px;
  margin: 0 auto;
}
.intro-left {
  float: left;
  text-align: right;
  width: 400px;
  margin-top: 30px;
  background: #eee;
  padding: 15px 25px;
  border-radius: 20px;
  color: #000;
  box-sizing: border-box;
  position: relative;
}
.intro-right {
  float: right;
  width: 300px;
  text-align: right;
  margin-top: 30px;
}
.right-triangle {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-left: 35px solid #eee;
  border-bottom: 25px solid transparent;
  display: inline-block;
  position: absolute;
  top: 200px;
}
.bottom-triangle {
  width: 0;
  height: 0;
  border-bottom: 25px solid transparent;
  border-top: 35px solid #eee;
  border-right: 25px solid transparent;
  display: inline-block;
  position: absolute;
  right: 30px;
  display: none;
}
#menu-click {
  display: none;
}
@media screen and (max-width: 835px) {
  .intro-left,
  .intro-right {
    width: 100%;
    float: none;
  }
  .bottom-triangle {
    display: block;
  }
  .right-triangle {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #menu {
    display: block;
    display: none;
  }
  #menu a {
    display: block;
  }
  #menu-click {
    display: block;
    background: #112739;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
  }
  #menu div.dropdown-menu {
    position: static;
    background: #112739;
    left: 0;
    width: 100%;
  }
  #full-wrap {
    padding: 0;
  }
}
