@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,500;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@600&family=Nunito:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@600&display=swap");
@font-face {
  font-family: "Calibre Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Calibre Regular"),
    url("../fonts/calibre-cufonfonts-webfont/CalibreRegular.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Calibre Semibold";
  font-style: normal;
  font-weight: normal;
  src: local("Calibre Semibold"),
    url("../fonts/calibre-cufonfonts-webfont/CalibreSemibold.woff")
      format("woff");
  font-display: swap;
}

@font-face {
  font-family: "SF Mono Regular";
  font-style: normal;
  font-weight: normal;
  src: local("SF Mono Regular"),
    url("../fonts/sf-mono-cufonfonts-webfont/SFMonoRegular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "SF Mono Light";
  font-style: normal;
  font-weight: normal;
  src: local("SF Mono Light"),
    url("../fonts/sf-mono-cufonfonts-webfont/SFMonoLight.woff") format("woff");
  font-display: swap;
}

body {
  background: #02251f;
  color: #f5f5f5;
  font-family: "Calibre Regular", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: #64ffda;
  position: relative;
}

a:hover {
  color: #64ffda;
  cursor: pointer;
}

::-moz-selection {
  background-color: #076c5a;
  color: #f5f5f5;
}

::selection {
  background-color: #01b192;
  color: #f5f5f5;
}

.animate-links:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background-color: #03a187;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.animate-links:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.section-headline {
  font-family: "Calibre Semibold", Arial, Helvetica, sans-serif;
  font-size: 40px;
  padding-bottom: 40px;
  font-weight: 600;
}

.section-number {
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #64ffda;
}

button {
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  border: 1px solid #01b192;
  border-radius: 5px;
  color: #64ffda;
  background-color: #086b5a;
}

button:hover {
  background: #02251f;
  color: #f5f5f5;
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  fill: #f5f5f5;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

svg :hover {
  fill: #01b192;
}

.ease-transition {
  transition: ease-in-out;
  transition-duration: 0.12s;
}

/* Main Nav */

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  background: inherit;
  position: fixed;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(17, 34, 64, 0.21) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: drop-shadow(0px 4px 4px rgba(100, 255, 218, 0.04));
  backdrop-filter: blur(25px);
  box-shadow: rgb(100, 255, 218, 0.04) 0px 10px 30px -10px;
  z-index: 100;
}

.navContainer {
  margin: 0 2vw 0 2vw;
  display: flex;
  justify-content: space-between;
  width: 96vw;
}

#logo {
  padding: 7px 10px;
  width: 20px;
  text-align: center;
  border: 2px solid #64ffda;
  color: #64ffda;
}

.navLink {
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  color: #f5f5f5;
}

#navLinks {
  z-index: 101;
  align-self: center;
}
.numbersNav {
  color: #00ffe0;
}

.hamburger {
  display: none;
}

/* Mobile Nav Menu */

#mobile-nav-wrapper {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100vh;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  visibility: hidden;
  outline: currentcolor none 0px;
  text-align: center;
  transform: translateX(100vw);
}

aside {
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  right: 0px;
  margin-left: auto;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  box-shadow: rgba(0, 0, 0, 0.7) -10px 0px 30px -15px;
  width: 65vw;
  background-color: #043d36;
}

#mobile-nav-tap-close-background {
  position: fixed;
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

aside nav {
  padding: 0;
}

.mobile-nav-container {
  display: flex;
  flex-direction: column;
  background-color: #043d36;
}

.mobile-nav-container ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0px;
  line-height: 0.7;
}

.mobile-nav-container ol li {
  padding-bottom: 50px;
}

.mobile-nav-container ol li {
  padding-bottom: 50px;
}

.mobile-nav-section-numbers {
  color: #00ffd0;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  padding-top: 0px;
}

.mobile-nav-container a {
  color: #f5f5f5;
}

.mobile-nav-button {
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  border: 1px solid #64ffda;
  border-radius: 5px;
  color: #e4e5e5;
  background: none;
  padding: 1.25rem 2rem;
  font-size: 13px;
  cursor: pointer;
}

/* Hero Section */

#hero-section {
  margin: 0px auto;
  padding: 60px 0px 60px 0px;
  max-width: 1000px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  flex-direction: column;
  align-items: flex-start;
  min-height: 85vh;
}

#hero-pre-text {
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  color: #64ffda;
  font-size: 16px;
  padding-bottom: 30px;
}

.hero-header-text {
  font-family: "Calibre Semibold", Arial, Helvetica, sans-serif;
  font-size: 80px;
  font-weight: 500;
}

#hero-name {
  line-height: 1;
}

#hero-tagline {
  color: #c7ebe2;
  padding-bottom: 10px;
}

#subheader-text {
  font-size: 20px;
  color: #8892b0;
  width: 47%;
  padding-bottom: 60px;
}

.cta-contact {
  padding: 1.25rem 1.75rem;
  font-size: 13px;
}

/* About Section */

#about-section {
  padding: 100px 10px 150px 10px;
  margin: 0 auto 12vh auto;
  max-width: 1000px;
}

#about-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#bio-para {
  width: 46%;
  padding-right: 20px;
}

#bio-para p {
  padding: 0 0 20px 0;
}

#headshot-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  position: relative;
}

#headshot {
  width: 100%;
  height: 100%;
}

.tech-skills-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 200px));
  overflow: hidden;
  padding: 0px;
  list-style: none;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  font-size: 13px;
  margin-bottom: 20px;
}

.tech-skills-list li {
  margin-bottom: 10px;
}

.tech-skills-list li::before {
  content: "◈";
  color: #64ffda;
  position: relative;
  padding: 0 10px 0 0;
  font-size: 13px;
}

/* Experience Section */

#experience-section {
  padding: 150px 10px;
  margin: 0 auto 16vh auto;
  max-width: 1000px;
}

.at-symbol {
  color: #64ffda;
}

.jobDateRange {
  color: #8892b0;
}

#experience-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0px;
}

#jobList {
  width: 100%;
}

#jobList :hover {
  background: rgba(5, 237, 210, 0.199);
  color: #f5f5f5;
}

#job-bulletpoints {
  width: 70%;
}

#job-bulletpoints ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

#job-bulletpoints ul li::before {
  content: "◈";
  position: absolute;
  left: 0px;
  color: #00ffe0;
}

.job-button {
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  font-size: 13px;
  border: none;
  padding: 15px 20px;
  color: #8892b0;
  border-radius: 0;
  cursor: pointer;
}

.job-button-selected {
  color: #00ffe0;
  border-left: 1px solid #64ffda;
  border-radius: 6;
}

.job-button-selected :hover {
  background: none;
}

#jobDetails {
  padding-top: 15px;
  width: 70%;
}

.jobTitle {
  font-size: 28px;
  padding-bottom: 10px;
  font-weight: 600;
}

.jobDateRange {
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  font-size: 13px;
  padding-bottom: 40px;
}

#jobDetails li {
  font-size: 19px;
  padding-bottom: 10px;
}

/* Projects Section */

#projects-section {
  padding: 10px 10px;
  margin: 0 auto;
  max-width: 1000px;
}

.featured-project-card {
  display: grid;
  -moz-box-align: center;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 100px;
  align-items: center;
}

.featured-project-card a {
  position: relative;
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  z-index: 10;
}

.featured-project-card a img {
  border-radius: 2px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}

.featured-project-details {
  position: relative;
  grid-column: 8 / 12;
  grid-row: 1 / -1;
  text-align: right;
  background: #024a3e;
  padding: 20px 19px;
  border-radius: 0 2px 2px 0;
  box-shadow: 3px 3px 3px rgba(15, 218, 201, 10);
}

.align-left {
  text-align: left;
}

.align-left div {
  margin-left: 0;
}

.align-left ul {
  justify-content: start;
}

.align-left ul li {
  padding-left: 0;
  padding-right: 20px;
}

.feature-text {
  color: #3dffff;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding-bottom: 10px;
}

.project-title {
  font-family: "Calibre Semibold", Arial, Helvetica, sans-serif;
  font-size: 32px;
  padding-bottom: 10px;
  color: #f5f5f5;
}

.project-title a {
  color: #f5f5f5;
}

.project-title a:hover {
  color: #3dffef;
}

.project-title-small {
  font-size: 27px;
}

.badge-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-bottom: 10px;
}

.badge-container a img {
  border-radius: unset;
  box-shadow: unset;
}

#chrome-browser-badge {
  width: 150px;
  margin-right: 15px;
}

#firefox-browser-badge {
  width: 123px;
}

.project-description-small {
  font-size: 19px;
}
.technology-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0px;
  margin: 25px 0px 10px;
  list-style: outside none none;
  font-size: 12px;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  padding-bottom: 10px;
  color: #00ffd9;
}

.tech-item {
  padding-left: 20px;
  padding-bottom: 7px;
}

.featured-project-screenshot {
  width: 40%;
  max-width: 1000px;
  position: relative;
}

.project-screenshot {
  width: 180%;
  border-radius: 1px;
}

.project-link-icons {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Contact Section */

#contact-section {
  padding: 180px 10px;
  margin: 14vh auto 14vh auto;
  max-width: 600px;
  text-align: center;
}

.contact-section-name {
  font-size: 16px;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  padding-bottom: 30px;
  color: #64ffda;
}

.contact-headline {
  font-family: "Calibre Semibold", Arial, Helvetica, sans-serif;
  font-size: 68px;
  font-weight: bold;
  padding-bottom: 30px;
}

.contact-text {
  padding-bottom: 60px;
}

/* Footer */

footer {
  background: #0249321e;
  text-align: center;
  padding: 32px 0;
}

footer a {
  margin: auto;
  color: #f5f5f5;
  font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
  font-size: 12px;
}

#social-icons-footer {
  display: none;
}

/* Fixed Sidebars */

#social-icons-fixed-bar-container {
  width: 40px;
  position: fixed;
  bottom: 0px;
  left: 40px;
  right: auto;
}

.social-icon {
  padding-bottom: 20px;
}

.social-icon-list {
  text-align: center;
}

.social-icon-list::after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  margin: 0px auto;
  background-color: #f5f5f5;
}

#email-fixed-bar-container {
  width: 40px;
  position: fixed;
  bottom: 0px;
  left: auto;
  right: 40px;
  font-family: "SF Mono Light", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

#fixed-bar-email-link {
  display: flex;
  flex-direction: column;
  -moz-box-align: center;
  align-items: center;
  position: relative;
  letter-spacing: 0.245em;
}

#email-fixed-bar-container a {
  color: #f5f5f5;
  font-size: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin: 20px auto;
  padding: 10px;
  writing-mode: vertical-rl;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

#email-fixed-bar-container::after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  margin: 0px auto;
  background-color: #f5f5f5;
}

#email-fixed-bar-container a:hover {
  transform: translateY(-3px);
  color: #3dffef;
  text-decoration: none;
}

.social-icon :hover {
  transform: translateY(-10px);
}

/* Tablet Breakpoint */

@media screen and (max-width: 1300px) {
  #social-icons-fixed-bar-container {
    display: none;
  }

  #email-fixed-bar-container {
    display: none;
  }

  #social-icons-footer {
    display: initial;
  }

  #social-icons-footer ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  #social-icons-footer ul li {
    padding: 0 15px 10px 15px;
  }

  svg {
    width: 24px;
    height: 24px;
    pointer-events: all;
  }

  path {
    pointer-events: all;
  }

  #hero-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  #about-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
  }

  #experience-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
  }

  #projects-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
  }

  #contact-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 150px;
  }

  .featured-project {
    flex-direction: column-reverse;
  }

  .flex-column {
    flex-direction: column;
  }

  .featured-project-details {
    width: 100%;
  }

  .project-description {
    width: 100%;
    padding: 20px 0 20px 0px;
  }

  .project-description p {
    margin-right: 15px;
    margin-left: 10px;
  }

  .technology-list {
    display: inline-flex;
    margin: 0;
    justify-content: start;
  }

  .tech-item {
    padding: 0 20px 7px 0;
  }

  .project-screenshot {
    width: 250%;
  }

  button:hover {
    background: none;
    color: #05f5cd;
  }

  #jobList :hover {
    background: inherit;
  }
}

@media screen and (max-width: 1000px) {
  .featured-project-card {
    grid-template-rows: repeat(2);
  }

  .featured-project-card a {
    position: relative;
    grid-column: 1 / 13;
    grid-row: 1 / 2;
  }

  .featured-project-details {
    grid-column: 2 / 12;
    grid-row: 2 / 3;
    width: unset;
    text-align: left;
    border-radius: 0 0 2px 2px;
    padding-bottom: 15px;
  }

  .project-title {
    padding-bottom: 0px;
  }

  .project-description p {
    margin-right: 0px;
    margin-left: 0px;
  }

  .badge-container {
    justify-content: start;
    flex-direction: column;
  }

  .badge-container a img {
    border-radius: unset;
    box-shadow: unset;
  }

  #chrome-browser-badge {
    margin-bottom: 10px;
    width: 200px;
  }

  #firefox-browser-badge {
    width: 200px;
  }

  .technology-list {
    display: flex;
  }
}

/* Mobile Breakpoint */

@media screen and (max-width: 830px) {
  body {
    font-size: 18px;
  }

  nav {
    padding: 10px 0;
  }

  .section-headline {
    font-family: "Calibre Regular", Arial, Helvetica, sans-serif;
    font-size: 25px;
    padding-bottom: 40px;
    font-weight: bold;
  }

  .hamburger {
    display: inherit;
  }

  .navLink {
    display: none;
  }

  .hero-header-text {
    font-size: 45px;
  }

  #hero-tagline {
    font-size: 45px;
    line-height: 1;
    padding-bottom: 30px;
  }

  #subheader-text {
    width: 100%;
  }

  #about-content {
    display: block;
  }

  #bio-para {
    width: 80vw;
  }

  .tech-skills-list {
    font-size: 11px;
  }

  #headshot-container {
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
    position: relative;
  }

  .contact-headline {
    font-size: 46px;
  }

  .contact-section-name {
    font-size: 14px;
    font-family: "SF Mono Regular", Arial, Helvetica, sans-serif;
    padding-bottom: 30px;
    color: #05f4b4;
  }

  #experience-content {
    display: block;
    position: relative;
    padding-top: 0;
  }

  #jobList {
    display: flex;
    position: relative;
    align-items: end;
    overflow-x: scroll;
    scrollbar-width: none;
  }

  #jobList li {
    flex-shrink: 0;
    margin-right: 30px;
  }

  #joblist ul li {
    border-bottom: 1px solid #64ffda;
  }

  #job-button-container {
    width: 100%;
    margin-bottom: 10px;
  }

  .job-button {
    padding: 15px 0px;
  }

  .job-button-selected {
    color: #64ffda;
    border-left: none;
    border-bottom: 1px solid #3dfff2;
    border-radius: 0;
  }

  #jobDetails {
    width: 100%;
  }

  .jobTitle {
    font-size: 20px;
  }

  #job-bulletpoints {
    width: 100%;
  }

  .project-title {
    font-size: 30px;
  }

  .feature-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  .navContainer {
    width: 86vw;
    margin: 0 auto 0 auto;
  }

  #hero-section {
    padding-top: 80px;
  }
}
/***************************Blog*/
.recentBlogTitle {
  padding-left: 25%;
  display: flex;
  flex-direction: row;
}
#blogTitle {
  color: #ccd6f6;
  font-size: 20px;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
}
#blogParagraphOne {
  color: #19473f;
  font-size: 15px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  display: flex;
  padding-top: 10px;
}
.blogCategory {
  display: flex;
  gap: 4rem;
  justify-content: center;
  padding-top: 40px;
  font-size: 20px;
}
.blogContainerOne {
  max-width: 323px;
  background: #19473f;
  box-shadow: 0px 10px 30px rgba(2, 12, 27, 0.7);
  border-radius: 10px;
  height: 305px;
  padding: 20px 20px 20px 20px;
}
.blogContainerTwo {
  max-width: 323px;
  background: #19473f;
  box-shadow: 0px 10px 30px rgba(2, 12, 27, 0.7);
  border-radius: 10px;
  height: 305px;
  padding: 20px 20px 20px 20px;
}
.blogContainerThree {
  max-width: 323px;
  background: #19473f;
  box-shadow: 0px 10px 30px rgba(2, 12, 27, 0.7);
  border-radius: 10px;
  height: 305px;
  padding: 20px 20px 20px 20px;
}
.blogs {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  gap: 2rem;
  max-width: 80%;
}
.blogIcons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 10px 0px 10px;
  color: white;
}
.headingBlog {
  padding-top: 15px;
}
.recentBlog {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.viewMore {
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 4px;
  color: #64ffda;
  background-color: rgba(1, 177, 146, 0.19);
  border: 1px solid #01b192;
  align-self: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.getIntouchTitle {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}
.miniTitle {
  color: #64ffda;
  font-family: "Fira Code", monospace;
  font-size: 15px;
  padding-top: 3%;
}
#styleField {
  color: #64ffda;
  font-family: "Fira Code", monospace;
  background-color: #02251f;
  border: solid 1px #64ffda;
  border-radius: 5px;
}

/* end blog*/
.commentSection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.names {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.fotterContent {
  color: #a8b2d1;
  display: flex;
  align-self: center;
  font-family: "Fira Code", monospace;
  font-size: 10px;
  padding: 10% 0% 5% 40%;
}
#nameFooter {
  color: #64ffda;
}
#email_field {
  background-color: #03473b;
  border-style: none;
  border: 2px solid #01b192;
  border-radius: 4px;
  padding: 4px 1px 9px 0px;
  color: #64ffda;
}
#names_field {
  background-color: #03473b;
  border-style: none;
  border: 2px solid #01b192;
  border-radius: 4px;
  padding: 4px 1px 9px 0px;
  color: #64ffda;
}
#contact-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#description_field {
  max-width: 600px;
  height: 167px;
  background-color: #03473b;
  border-style: none;
  border: 2px solid #01b192;
  border-radius: 4px;
  padding: 4px 5px 9px 0px;
  color: #64ffda;
  display: flex;
}
::placeholder {
  color: #64ffda;
  padding: 1rem;
  font-family: "Fira Code", monospace;
  font-size: 11px;
}

.error {
  display: none;
}
.error.active {
  display: block;
}
.valid\:border-none:valid {
  border: none;
}
.invalid\:border-red:invalid {
  border-color: #900;
}
.auto-hide-error.hide_error {
  display: none;
}
.text-white-light {
  color: var(--white_light);
}
.bg-white_blue_light {
  background-color: #f7fafc;
}
.bg-white_blue_light\/50 {
  background-color: #f7fafc50;
}
.bg-red-light {
  background-color: #f64646;
}
.text-red-light {
  color: #f64646;
}
.let_connect {
  margin-top: 20px;
}
