/* COLORS */
/* TYPOGRAPHY */
/* COMMON SPACING */
/* 
TABLE OF CONTENTS
    - HIGH LEVEL
    - BASE TYPOGRAPHY
    - HEADER BAR
    - TOOLBAR 
    - MAIN CONTENT
    - ABOUT 
    - PROJECT 
    - FOOTER
*/
/* ===== HIGH LEVEL ===== */
html {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  /* 1rem = 16px */
}

html, body {
  height: 100%;
  margin: 0;
  width: 100%;
}

body {
  background-color: #ffffff;
  color: #262021;
}

#content-wrapper {
  height: 100%;
  position: relative;
}

/* ========== */
/* ===== BASE TYPOGRAPHY ===== */
h1 {
  color: #3a3434;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

h2 {
  color: #5a5252;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  margin-top: 0.5rem;
}

h3 {
  border-top: 0.0625rem solid #cccccc;
  color: #6C7075;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  margin-bottom: 0.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  text-transform: uppercase;
}

h4 {
  color: #5a5252;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02rem;
  margin-bottom: 0.1rem;
  margin-top: 1.5rem;
}

p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 175%;
  margin-block-start: 0;
}

.italic {
  font-style: italic;
}

ul.inline-ul, ol.inline-ol {
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}
ul.inline-ul li.inline-li, ol.inline-ol li.inline-li {
  line-height: 150%;
  margin-bottom: 0.75rem;
}

a.inline-link, a.inline-link:visited {
  color: #105f81;
  font-weight: 800;
  text-decoration: none;
}

a.inline-link:hover {
  color: #2188b4;
  text-decoration: underline;
}

/* ========== */
/* ===== HEADER BAR ===== */
#header-bar {
  background-color: #ffffff;
  border-bottom: 0.0625rem solid #bbbbbb;
  height: auto;
  padding: 0 3.125rem;
}
#header-bar #header-bar-wrapper {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1280px;
}
#header-bar #header-bar-wrapper .logo-img {
  height: 3.25rem;
  padding: 0.8125rem 0;
}
#header-bar #header-bar-wrapper .logo-img img {
  height: 3.25rem;
  width: auto;
}
#header-bar #header-bar-wrapper ul.navigation {
  display: inline-flex;
  font-size: 0.875rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#header-bar #header-bar-wrapper ul.navigation li.nav-item {
  align-self: flex-end;
  color: #5a5252;
  font-weight: 800;
  letter-spacing: 0.1rem;
  margin-left: 0.109375rem;
  padding-bottom: 0.8rem;
  padding-top: 0.6125rem;
  text-align: center;
  text-transform: uppercase;
  width: 10.85rem;
}
#header-bar #header-bar-wrapper ul.navigation li.nav-item a, #header-bar #header-bar-wrapper ul.navigation li.nav-item a:visited {
  color: #3a3434;
  text-decoration: none;
}
#header-bar #header-bar-wrapper ul.navigation li.nav-item a:hover {
  color: #2188b4;
  text-decoration: none;
}
#header-bar #header-bar-wrapper ul.navigation li.nav-item.selected {
  background-image: url(../../images/Select.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-weight: 900;
  margin-bottom: -1px;
}

/* ========== */
/* ===== TOOLBAR ===== */
#toolbar-wrapper {
  margin: auto;
  max-width: 1280px;
  width: 100%;
}

#toolbar {
  align-items: center;
  background-color: #f9f9f9;
  border-bottom: 0.0625rem solid #bbbbbb;
  display: flex;
  height: 2.75rem;
  padding: 0 3.125rem;
}

/* ========== */
/* ===== MAIN CONTENT ===== */
.main-content {
  height: calc(100% - 4.9375rem);
  /* Height of header bar */
  overflow: hidden;
  overflow-y: auto;
}

.main-content.portfolio {
  height: calc(100% - 7.75rem);
  /* Height of header bar + toolbar */
  overflow: hidden;
  overflow-y: auto;
}

/* ========== */
/* ===== ABOUT ===== */
#about {
  background-color: #f9f9f9;
  padding: 0.5rem 0;
}
#about .section.top {
  max-width: 43rem;
  margin: auto;
  margin-bottom: 1rem;
}
#about .section.overview {
  background: #f0f0f0;
  margin: 0;
  margin-bottom: 2rem;
  max-width: 100%;
  padding: 2rem 1.625rem;
}
#about .split {
  align-items: center;
  display: flex;
  max-width: 43rem;
  margin: 0 auto;
  width: 100%;
}
#about .split .left {
  display: flex;
  margin-right: 1rem;
  width: 12.25rem;
}
#about .split .left img {
  height: 15.625rem;
  width: auto;
}
#about .split .right {
  align-self: flex-start;
  margin-left: 1rem;
  margin-top: 1rem;
}
#about .split .right span:last-child p {
  margin-block-end: 0;
}
#about p.left-label {
  align-items: baseline;
  color: #5a5252;
  display: inline-flex;
  font-weight: 900;
  font-size: 0.7rem;
  justify-content: flex-end;
  letter-spacing: 0.05rem;
  margin-right: 1rem;
  text-align: right;
  text-transform: uppercase;
  width: 3.75rem;
}
#about p.right-value {
  display: inline-flex;
}
#about p.right-value a {
  color: #105f81;
  font-weight: 800;
  text-decoration: none;
}
#about p.right-value a:hover {
  color: #2188b4;
  text-decoration: underline;
}

/* ========== */
/* ===== PROJECT ===== */
#project {
  background-color: #f9f9f9;
  padding: 0.5rem 0;
}

.section {
  margin: auto;
  margin-bottom: 2.5rem;
  padding: 0 1.625rem;
}

.section.details, .section.overview {
  max-width: 43rem;
}

.section.carousel {
  background-color: #f0f0f0;
  height: 25rem;
  padding: 2rem 0 1rem 0;
}
.section.carousel .carousel-item img {
  max-height: 20rem;
  width: auto;
}

.section.carousel.single-item {
  align-items: center;
  height: 20rem;
  padding: 1rem 0;
}
.section.carousel.single-item a {
  display: flex;
}
.section.carousel.single-item a .carousel-item {
  margin: auto;
}

.back-link {
  display: flex;
  letter-spacing: 0.02rem;
  margin-bottom: 1.5rem;
  margin: auto;
  width: 100%;
}
.back-link a {
  align-self: center;
  color: #105f81;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto;
  padding: 0.75rem 0 0.75rem 0;
}
.back-link a:hover {
  color: #2188b4;
}
.back-link a i {
  padding-right: 0.25rem;
}

/* ========== */
/* ===== FOOTER ===== */
#footer-bar {
  align-items: center;
  background-color: #ffffff;
  border-top: 0.0625rem solid #bbbbbb;
  bottom: 0;
  height: 2.1875rem;
  left: 0;
  padding: 0 3.125rem;
  right: 0;
}
#footer-bar #footer-bar-wrapper {
  align-items: center;
  display: flex;
  height: 2.1875rem;
  justify-content: space-between;
  margin: auto;
  max-width: 1280px;
}
#footer-bar #footer-bar-wrapper .social-icons {
  font-size: 0.9375rem;
}
#footer-bar #footer-bar-wrapper .social-icons a, #footer-bar #footer-bar-wrapper .social-icons a:visited {
  color: #105f81;
  margin-right: 2.1875rem;
}
#footer-bar #footer-bar-wrapper .social-icons a:hover {
  color: #2188b4;
  text-decoration: none;
}
#footer-bar #footer-bar-wrapper .copyright-text p {
  color: #5a5252;
  font-size: 0.75rem;
  margin: 0;
}

/* ========== */
/* COLORS */
/* TYPOGRAPHY */
/* COMMON SPACING */
.navigation {
  overflow: hidden;
}

.navigation .icon {
  display: none;
}

.logo-img.mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  #header-bar {
    padding: 0;
  }

  #header-bar #header-bar-wrapper ul.navigation {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    width: 100%;
  }
  #header-bar #header-bar-wrapper ul.navigation li.nav-item {
    min-width: 100%;
    padding: 0;
    width: 100%;
  }
  #header-bar #header-bar-wrapper ul.navigation li.nav-item.selected {
    background-size: 11.85rem;
  }
  #header-bar #header-bar-wrapper ul.navigation li.nav-item a {
    height: inherit;
    min-width: 100%;
    padding: 1rem 0;
    width: 100%;
  }

  .logo-img {
    display: none;
  }

  .navigation li {
    display: none;
  }

  div.logo-img.mobile {
    display: block;
    height: 3.25rem;
    padding: 0.8125rem 0 0.8125rem 3.125rem;
  }
  div.logo-img.mobile img {
    display: flex;
    height: 3.25rem;
    margin-left: 1.625rem;
    width: auto;
  }

  .navigation .icon {
    color: #3a3434;
    display: flex;
    font-size: 2rem;
    padding: 1.4rem 1rem 1.4rem 1rem;
    position: absolute;
    right: 26px;
    text-decoration: none;
    top: 0;
  }

  .navigation .icon:hover {
    color: #105f81;
  }

  .navigation.responsive {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
  }

  .navigation.responsive .icon {
    position: absolute;
    right: 26px;
    top: 0;
  }

  #header-bar ul.navigation.responsive li.nav-item {
    background-position-x: center;
    background-position-y: bottom;
    background-size: 10.8rem;
    border-top: 0.0625rem solid #bbbbbb;
    display: flex;
    float: none;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  #header-bar ul.navigation.responsive li.nav-item a {
    padding-top: 0.9rem;
    padding-bottom: 0.8rem;
    width: 100%;
  }

  #toolbar {
    padding: 0 1.625rem;
  }

  .main-content.responsive {
    height: calc(100% - 11.422rem);
  }

  .main-content.portfolio.responsive {
    height: calc(100% - 14.2344rem);
  }
}
@media screen and (max-width: 590px) {
  #about .split {
    display: flex;
    flex-direction: column;
  }
  #about .split .left {
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  #about .split .left img {
    height: 15.625rem;
    width: auto;
  }
  #about .split .right {
    border-bottom: 0.0625rem solid #bbbbbb;
    border-top: 0.0625rem solid #bbbbbb;
    margin: 0 auto;
    padding: 1rem 2rem;
  }
}

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