@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@600&display=swap");
.menu-btn {
  position: absolute;
  z-index: 3;
  right: 35px;
  top: 35px;
  cursor: pointer;
  transition: all 0.5s ease-out;
}
.menu-btn .btn-line {
  width: 28px;
  height: 3px;
  margin: 0 0 5px 0;
  background: #fff;
  transition: all 0.5s ease-out;
}
.menu-btn.close {
  transform: rotate(180deg);
}
.menu-btn.close .btn-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.close .btn-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.close .btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  float: right;
  width: 25%;
  opacity: 0.9;
  visibility: hidden;
}
.menu.show {
  visibility: visible;
}
.menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
}
.menu-nav {
  margin: 0;
  padding: 0;
  background: #002663;
  list-style: none;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s ease-out;
}
.menu-nav.show {
  transform: translate3d(0, 0, 0);
}
.menu .nav-item {
  transform: translate3d(600px, 0, 0);
  transition: all 0.5s ease-out;
}
.menu .nav-item.show {
  transform: translate3d(0, 0, 0);
}
.menu .nav-item.current > a {
  color: #2596be;
}
.menu .nav-link {
  display: inline-block;
  position: relative;
  font-size: 30px;
  text-transform: uppercase;
  padding: 1rem 0;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease-out;
}
.menu .nav-link:hover {
  color: #2596be;
}
.menu:hover {
  color: #2596be;
}

* {
  box-sizing: border-box;
}

body {
  background: rgb(32, 31, 31);
  color: #fff;
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 200;
}
h1.lg-heading, h2.lg-heading, h3.lg-heading, h4.lg-heading {
  font-size: 4rem;
  font-family: "Dosis";
  padding: 0.4rem;
}
h1.home-name, h2.home-name, h3.home-name, h4.home-name {
  font-family: "Source Sans 3", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 4.1rem;
  letter-spacing: 0.01em;
}
h1.sm-heading, h2.sm-heading, h3.sm-heading, h4.sm-heading {
  font: size 1px;
  margin-bottom: 2rem;
}
h1.section-heading, h2.section-heading, h3.section-heading, h4.section-heading {
  font-size: 40px;
  text-align: center;
  padding-bottom: 2rem;
}

section {
  border-radius: 20px;
  margin-bottom: 4rem;
}
section#Introduction {
  flex-direction: column;
  min-height: 450px;
  width: 100%;
  top: 0;
  position: relative;
  text-align: center;
}
section#Introduction#Introduction {
  content: "";
  background: url("../images/intro/austin5.jpg");
  background-size: cover;
  /* &:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-image: linear-gradient(to bottom right,#002f4b,#dc4225);
      opacity: .6; 
  } */
}
section#Introduction .intro-content {
  position: relative;
}
section#Introduction .intro-content .profile-pic {
  width: 300px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
section#Introduction .icons {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
section#Introduction .icons a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
section#Introduction .icons a::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}
section#Introduction .icons a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  width: 10px;
  height: 10px;
  background: rgba(9, 12, 18, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}
section#Introduction .icons a:hover::after, section#Introduction .icons a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
section#Introduction::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(32, 31, 31, 0.75);
}
section#Projects .project {
  background: rgba(47, 47, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  margin: 20px;
  padding: 20px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 150px 1fr;
}
section#Projects .project .project-img-section {
  grid-row: span 2;
  grid-area: 1.5/1/3/2;
}
section#Projects .project .project-link {
  height: fit-content;
  text-align: center;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
section#Projects .project .project-link .proj-link-icon {
  display: none;
}
section#Projects .project .project-link:hover .project-img, section#Projects .project .project-link:hover .project-img--logo {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.02);
}
section#Projects .project .project-link:hover .proj-link-icon {
  opacity: 1;
}
section#Projects .project .project-img, section#Projects .project .project-img--logo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  position: relative;
  border-radius: 16px;
  filter: saturate(0.82) brightness(0.82) contrast(1.04);
  transition: transform 0.25s ease-out, filter 0.25s ease-out;
}
section#Projects .project .project-img--logo {
  object-fit: contain;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.14);
  filter: brightness(0.95) contrast(1.04);
}
section#Projects .project .proj-link-icon {
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  opacity: 0;
  padding: 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transition: opacity 0.25s ease-out;
}
section#Projects .project .project-stuff {
  grid-row-start: 1;
  grid-row-end: 1.5;
  grid-column-start: 2;
  padding-left: 20px;
  vertical-align: top;
}
section#Projects .project .project-title {
  font-size: 25px;
}
section#Projects .project .project-description {
  margin: 0;
}
section#Experience .job {
  background: rgba(47, 47, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  margin: 20px;
  padding: 20px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 150px 1fr;
}
section#Experience .job .company {
  text-align: center;
}
section#Experience .job .company .exp-img-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
section#Experience .job .company .exp-img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  display: block;
  filter: brightness(0.92) contrast(1.08);
}
section#Experience .job .company .company-name {
  font-weight: 500;
  margin-top: 0.85rem;
}
section#Experience .job .job-description {
  padding-left: 20px;
}
section#Experience .job .job-description .job-title {
  font-size: 25px;
}
section#Experience .job .job-description .job-exp {
  padding-left: 20px;
}
section#Skills .tech-table {
  display: table;
  width: 100%;
}
section#Skills .tech-table .tech-row {
  display: table-row;
}
section#Skills .tech-table .tech-row .tech-type {
  display: table-cell;
  width: 25%;
  padding: 20px;
  font-size: 25px;
}
section#Skills .tech-table .tech-row .tech-icons {
  display: table-cell;
  padding: 20px;
  font-size: 75px;
}
section#Skills .tech-table .tech-row .tech-icons .tech-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7rem;
  cursor: default;
}
section#Skills .tech-table .tech-row .tech-icons .tech-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}
section#Skills .tech-table .tech-row .tech-icons .tech-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  width: 10px;
  height: 10px;
  background: rgba(9, 12, 18, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}
section#Skills .tech-table .tech-row .tech-icons .tech-icon:hover::after, section#Skills .tech-table .tech-row .tech-icons .tech-icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
section#Blog .blog {
  display: flex;
}
section#Blog .blog h3 {
  text-align: center;
}
section#Blog .blog a {
  background-color: #044fbf;
  border-radius: 20px;
  padding: 20px;
  margin: auto;
  font-size: 20px;
}
section#Blog .blog a:hover {
  background-color: #1671fa;
  transition: all 0.5s ease-out;
}

.tags-section {
  grid-row-start: 3;
  grid-column: span 2;
  padding-top: 20px;
}
.tags-section .tags, .tags-section .tags--linux, .tags-section .tags--sass, .tags-section .tags--sqlserver, .tags-section .tags--aws, .tags-section .tags--gcp, .tags-section .tags--node, .tags-section .tags--javascript, .tags-section .tags--java, .tags-section .tags--react, .tags-section .tags--pytorch, .tags-section .tags--tensorflow, .tags-section .tags--csharp, .tags-section .tags--python, .tags-section .tags--css, .tags-section .tags--html {
  padding: 5px;
  border-radius: 5px;
  display: inline-block;
  align-content: center;
  margin-right: 10px;
  color: #fff;
  font-weight: 600;
}
.tags-section .tags--html {
  background-color: #e44c24;
}
.tags-section .tags--html:before {
  content: "HTML";
}
.tags-section .tags--css {
  background-color: rgb(35, 162, 204);
  color: #111;
}
.tags-section .tags--css:before {
  content: "CSS";
}
.tags-section .tags--python {
  background-color: darkgreen;
}
.tags-section .tags--python:before {
  content: "Python";
}
.tags-section .tags--csharp {
  background-color: #9a4993;
}
.tags-section .tags--csharp:before {
  content: "C#";
}
.tags-section .tags--tensorflow {
  background-color: orange;
  color: #111;
}
.tags-section .tags--tensorflow:before {
  content: "Tensorflow";
}
.tags-section .tags--pytorch {
  background-color: rgb(250, 97, 8);
}
.tags-section .tags--pytorch:before {
  content: "Pytorch";
}
.tags-section .tags--react {
  background-color: #61dafb;
  color: #111;
}
.tags-section .tags--react:before {
  content: "React";
}
.tags-section .tags--java {
  background-color: rgb(165, 93, 0);
}
.tags-section .tags--java:before {
  content: "Java";
}
.tags-section .tags--javascript {
  background-color: #f3db4c;
  color: #111;
}
.tags-section .tags--javascript:before {
  content: "Javascript";
}
.tags-section .tags--node {
  background-color: #60a556;
  color: #111;
}
.tags-section .tags--node:before {
  content: "Node";
}
.tags-section .tags--gcp {
  background-color: #437af9;
}
.tags-section .tags--gcp:before {
  content: "Google Cloud Platform";
}
.tags-section .tags--aws {
  background-color: #ff9900;
  color: #111;
}
.tags-section .tags--aws:before {
  content: "Amazon Web Services";
}
.tags-section .tags--sqlserver {
  background-color: #ad1519;
}
.tags-section .tags--sqlserver:before {
  content: "SQL Server";
}
.tags-section .tags--sass {
  background-color: #cc649c;
}
.tags-section .tags--sass:before {
  content: "SCSS";
}
.tags-section .tags--linux {
  background-color: #f7c843;
  color: #111;
}
.tags-section .tags--linux:before {
  content: "Linux";
}

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

header {
  position: fixed;
  z-index: 2;
  width: 100%;
}

.text-secondary {
  color: #2596be;
}

.description {
  font-size: 1rem;
}

main {
  padding: 1rem 6rem;
  height: 100%;
}
main#Introduction {
  content: "";
  background: url("../images/intro/austin5.jpg");
  background-size: cover;
  /* &:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-image: linear-gradient(to bottom right,#002f4b,#dc4225);
      opacity: .6; 
  } */
}
main .icons {
  margin-top: 1rem;
}
main .icons a {
  padding: 0.4rem;
}
main .icons a:hover {
  color: #2596be;
  transition: all 0.5s ease-out;
}
main#home {
  overflow: hidden;
}
main#home h1 {
  text-align: center;
}

footer {
  padding: 20px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  main {
    align-items: center;
    text-align: center;
  }
  main .lg-heading {
    line-height: 1;
    margin-bottom: 1rem;
  }
  .menu.show {
    width: 100%;
  }
  ul.menu-nav {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.menu-nav.show {
    transform: translate3d(0, 0, 0);
  }
  .menu-nav {
    height: 100vh;
    transform: translate3d(100%, 0, 0);
    font-size: 24px;
  }
  #home {
    padding: 0px;
  }
  .profile-pic {
    max-width: 100%;
    border-radius: 50%;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
  }
  section#Projects .project {
    display: inline-block;
  }
  section#Projects .project .project-link {
    margin: 0 auto;
    max-width: 75%;
  }
  section#Projects .project .project-img, section#Projects .project .project-img--logo {
    width: 100%;
    height: 140px;
  }
  section#Experience .job {
    display: inline-block;
  }
  section#Experience .job .company .exp-img-frame {
    max-width: 75%;
    margin: 0 auto;
  }
  section#Experience .job .company .exp-img {
    width: 100%;
  }
  section#Experience .job .job-description {
    padding-left: 0px;
  }
  section#Skills .tech-table {
    display: block;
  }
  section#Skills .tech-table .tech-row {
    display: block;
  }
  section#Skills .tech-table .tech-row .tech-icons {
    display: block;
  }
  section#Skills .tech-table .tech-row .tech-type {
    padding: 0px;
  }
}

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