@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/open-sans-v40-latin-300.woff2") format("woff2"), url("fonts/open-sans-v40-latin-300.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/open-sans-v40-latin-regular.woff2") format("woff2"), url("fonts/open-sans-v40-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/open-sans-v40-latin-700.woff2") format("woff2"), url("fonts/open-sans-v40-latin-700.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-slab-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 100;
  src: url("fonts/roboto-slab-v34-latin-100.woff2") format("woff2"), url("fonts/roboto-slab-v34-latin-100.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* roboto-slab-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/roboto-slab-v34-latin-regular.woff2") format("woff2"), url("fonts/roboto-slab-v34-latin-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  padding: 0;
  color: #666161;
  margin: 0;
  background-color: #F2F2F2;
}

ul {
  font-size: 14px;
}

h1 {
  font-family: "Roboto Slab", sans-serif;
  font-weight: 500;
  color: #254E58;
  font-size: 33px;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  margin-top: 8px;
  font-family: "Roboto Slab", sans-serif;
  font-weight: 500;
  color: #88BDBC;
  font-size: 24px;
}

a {
  font-family: "Open Sans", serif;
  color: #666161;
}

p {
  font-family: "Open Sans", serif;
  color: #666161;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5em;
  text-align: justify;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

.main_sidebar {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  left: -100vw;
  background-color: #ffffff;
  overflow-x: hidden;
  border-right: solid 1px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}
.main_sidebar > ul {
  margin-top: 48px;
  padding: 0;
  z-index: 100;
  list-style-type: none;
  text-align: center;
}
.main_sidebar > ul > li a {
  z-index: 100;
  font-size: 20px;
  margin-top: 15px;
  display: inline-block;
  font-family: "Roboto Slab", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #254E58;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-bottom: transparent solid 2px;
}
.main_sidebar > ul > li a:hover {
  color: #88BDBC;
  text-shadow: black;
  border-bottom: #88BDBC solid 2px;
}
@media only screen and (min-width: 1200px) {
  .main_sidebar > ul > li a {
    font-size: 18px;
  }
}
.main_sidebar > ul > li:last-child {
  position: absolute;
  bottom: 1px;
  left: 1px;
}
.main_sidebar > ul > li:last-child a {
  font-size: 10px;
  color: #a49f9f;
}
@media only screen and (min-width: 1200px) {
  .main_sidebar > ul {
    padding-right: 28px;
    padding-top: 60px;
    margin-top: 0;
    list-style-type: none;
    text-align: right;
  }
}
.main_sidebar > a {
  width: 50%;
  display: none;
}
.main_sidebar > a > img {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .main_sidebar > a > img {
    padding: 80px 28px 0 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .main_sidebar > a {
    width: 100%;
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .main_sidebar {
    border-right: none;
  }
}
@media only screen and (min-width: 1200px) {
  .main_sidebar {
    width: 290px;
    left: 0;
    border-right: solid 1px rgba(0, 0, 0, 0.09);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    opacity: 1;
  }
}

.main_content {
  width: 100%;
  padding-left: 0;
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  .main_content {
    padding-top: 0;
    padding-left: 290px;
  }
}

.main_mobile_menu_button {
  font-size: 47px;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  .main_mobile_menu_button {
    display: none;
  }
}

.main_mobile_menu_button_close {
  font-size: 60px;
  cursor: pointer;
  align-self: flex-start;
  margin: 0 15px 15px 15px;
}
@media only screen and (min-width: 1200px) {
  .main_mobile_menu_button_close {
    display: none;
  }
}

.main_mobile_menu_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-bottom: solid 1px rgba(0, 0, 0, 0.09);
}
.main_mobile_menu_bar > a {
  display: flex;
  align-items: center;
  width: 50%;
}
.main_mobile_menu_bar > a > img {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .main_mobile_menu_bar {
    display: none;
  }
}

.desktop_pic {
  display: none;
}
@media only screen and (min-width: 769px) {
  .desktop_pic {
    display: block;
  }
}

.mobile_pic {
  display: block;
}
@media only screen and (min-width: 769px) {
  .mobile_pic {
    display: none;
  }
}

.main_mobile_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  background: #fdfdfd;
  position: fixed;
  top: -300vh;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.main_mobile_menu > a {
  display: block;
  width: 70%;
}
.main_mobile_menu > a > img {
  width: 100%;
}
.main_mobile_menu > ul {
  margin-top: 20px;
  margin-bottom: 15px;
  padding-left: 0;
  font-size: 14px;
  list-style-type: none;
  text-align: center;
}
.main_mobile_menu > ul > li a {
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 25px;
  display: inline-block;
  font-family: "Roboto Slab", sans-serif;
  font-weight: 300;
  text-decoration: none;
  color: #254E58;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.main_mobile_menu > ul > li a:hover {
  color: #88BDBC;
  text-shadow: black;
}
.main_mobile_menu > ul > li:last-child {
  position: absolute;
  bottom: 2px;
}
.main_mobile_menu > ul > li:last-child a {
  font-size: 10px;
  color: #a49f9f;
}
@media only screen and (min-width: 769px) {
  .main_mobile_menu {
    display: none;
  }
}
.main_mobile_menu .main_active_nav {
  color: #88BDBC !important;
  font-weight: 500 !important;
  border-bottom: 2px solid #88BDBC !important;
}

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