.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;
  width: 100%;
  opacity: 0.9;
  visibility: hidden;
}
.menu.show {
  visibility: visible;
}
.menu-branding, .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}
.menu-nav {
  margin: 0;
  padding: 0;
  background: rgb(55.25, 55.25, 55.25);
  list-style: none;
  transform: translate3d(0, -100%, 0);
  transition: all 0.5s ease-out;
}
.menu-nav.show {
  transform: translate3d(0, 0, 0);
}
.menu-branding {
  margin: 0;
  padding: 0;
  background: #444;
  list-style: none;
  transform: translate3d(0, 100%, 0);
  transition: all 0.5s ease-out;
}
.menu-branding.show {
  transform: translate3d(0, 0, 0);
}
.menu-branding .potrait {
  width: 250px;
  height: 250px;
  background: url("../images/portrait.jpg");
  border-radius: 50%;
  border: solid 3px #eece1a;
}
.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: #eece1a;
}
.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: #eece1a;
}

.nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

* {
  box-sizing: border-box;
}

body {
  background: #444;
  color: #fff;
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}
body#bg-img {
  background: url(/images/background.jpg);
  background-attachment: fixed;
  background-size: cover;
}
body#bg-img:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(68, 68, 68, 0.9);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 400;
}
h1.lg-heading, h2.lg-heading, h3.lg-heading {
  font-size: 5rem;
}
h1.sm-heading, h2.sm-heading, h3.sm-heading {
  margin-bottom: 2rem;
  padding: 0.2rem 1rem;
  background: rgba(73.1, 73.1, 73.1, 0.5);
}

a {
  color: #fff;
  text-decoration: none;
}

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

.text-secondary {
  color: #eece1a;
}

main {
  padding: 4rem;
  min-height: calc(100vh - 60px);
}
main .icons {
  margin-top: 1rem;
  margin-bottom: 25px;
}
main .icons a {
  padding: 0.4rem;
}
main .icons a:hover {
  color: #eece1a;
  transition: all 0.5s ease-out;
}
main .downloadCV .btn.btn2, main .downloadCV .btn2.btn-light, main .downloadCV .btn2.btn-dark {
  display: inline-block;
  background: rgba(73.1, 73.1, 73.1, 0.5);
}
main .downloadCV .btn.btn2:hover, main .downloadCV .btn2.btn-light:hover, main .downloadCV .btn2.btn-dark:hover {
  background: #eece1a;
  z-index: 2;
  color: #000;
  transition: all 0.5s ease-out;
}
main#home {
  overflow: hidden;
}
main#home h1 {
  margin-top: 20vh;
}

main .icons a .leetcodeIcon {
  filter: invert(1) brightness(2);
  width: 30px;
  height: 30px;
}
main .icons a .leetcodeIcon:hover {
  filter: invert(79%) sepia(95%) saturate(536%) hue-rotate(0deg) brightness(103%);
  transition: all 0.5s ease-out;
}

.about-info {
  display: grid;
  grid-gap: 30px;
  grid-template-areas: "bioimage bio" "heading heading" "job1 job1";
  grid-template-columns: repeat(2, 1fr);
}
.about-info .bio-image {
  grid-area: bioimage;
  margin: auto;
  border-radius: 50%;
  border: #eece1a 3px solid;
}
.about-info .bio {
  grid-area: bio;
  font-size: 1rem;
}
.about-info .heading {
  grid-area: heading;
  color: #eece1a;
}
.about-info .job-1 {
  grid-area: job1;
}
.about-info .job {
  background: rgb(80.75, 80.75, 80.75);
  padding: 0.5rem;
  border-bottom: #eece1a 5px solid;
}

.about-info .tab-titles {
  display: flex;
  margin: 20px 0 40px;
}
.about-info .tab-titles .tab-links {
  margin-right: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.about-info .tab-titles .tab-links::after {
  content: "";
  width: 0;
  height: 3px;
  background: #eece1a;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}
.about-info .tab-titles .tab-links.active-link::after {
  width: 100%;
}
.about-info .tab-contents {
  display: none;
}
.about-info .tab-contents.active-tab {
  display: block;
}
.about-info .tab-contents ul li {
  list-style: none;
  margin: 10px 0;
}
.about-info .tab-contents ul li span {
  color: #d4b717;
  font-size: 14px;
}

.projects {
  display: grid;
  grid-gap: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
}
.projects img {
  width: 100%;
  border: 3px #fff solid;
}
.projects img:hover {
  opacity: 0.5;
  border-color: #eece1a;
  transition: all 0.5s ease-out;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 1rem;
}
.boxes div {
  font-size: 2rem;
  border: 3px #fff solid;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.5s ease-out;
}
.boxes div:hover {
  padding: 0.5rem 1.5rem;
  background: #eece1a;
  color: #000;
}
.boxes div:hover span {
  color: #000;
}

.btn, .btn-light, .btn-dark {
  display: block;
  padding: 0.5rem 1rem;
  border: 0;
  margin-bottom: 0.3rem;
}
.btn:hover, .btn-light:hover, .btn-dark:hover {
  background: #eece1a;
  color: #000;
}

.btn-dark {
  background: hsl(0, 0%, -23.3333333333%);
  color: #fff;
}

.btn-light {
  background: rgb(195.5, 195.5, 195.5);
  color: #333;
}

.contact-down form {
  width: 100%;
}
.contact-down form input,
.contact-down form textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: rgb(55.25, 55.25, 55.25);
  padding: 15px;
  margin: 15px;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
}
.contact-down .btn.btn2, .contact-down .btn2.btn-dark, .contact-down .btn2.btn-light {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  background: rgba(73.1, 73.1, 73.1, 0.5);
  margin-left: 20px;
}
.contact-down .btn.btn2:hover, .contact-down .btn2.btn-dark:hover, .contact-down .btn2.btn-light:hover {
  background: #eece1a;
  z-index: 2;
  color: #000;
  transition: all 0.5s ease-out;
}

#msg {
  margin-top: -5px;
  margin-left: 30px;
  display: block;
}

#main-footer {
  text-align: center;
  padding: 1rem;
  background: rgb(42.5, 42.5, 42.5);
  color: #fff;
  height: 60px;
}

@media screen and (min-width: 1171px) {
  .projects {
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1170px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  main {
    display: grid;
    align-items: center;
    text-align: center;
  }
  main .lg-heading {
    line-height: 1;
    margin-bottom: 1rem;
  }
  ul.menu-nav, div.menu-branding {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.menu-nav.show, div.menu-branding.show {
    transform: translate3d(0, 0, 0);
  }
  .menu-nav {
    height: 75vh;
    transform: translate3d(-100%, 0, 0);
    font-size: 24px;
  }
  .menu-branding {
    height: 25vh;
    transform: translate3d(100%, 0, 0);
  }
  .menu-branding .potrait {
    background: url("/images/portraitSmall.jpg");
    width: 150px;
    height: 150px;
  }
  .about-info {
    grid-template-areas: "bioimage" "bio" "heading" "job1";
    grid-template-columns: 1fr;
  }
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  main#home h1 {
    margin-top: 10vh;
  }
  .projects {
    grid-template-columns: 1fr;
  }
}

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