* {
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}
:root,
body,
html {
  font-family: "Open Sans", sans-serif;
  background: rgba(6, 9, 18, 1);
  color: hsla(0, 0%, 100%, 0.88);
  width: 100%;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
mark {
  background: #ffdf6e;
  color: hsla(0, 0%, 100%, 0.88);
  padding: 1px;
}
::selection {
  background: #dc143c;
  color: hsla(0, 0%, 100%, 0.88);
}
/* Navbar */
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 400;
}
nav {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2vh 0 1vh 0;
  transition: 0.1s opacity linear;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav__name {
  display: flex;
  margin: 0 calc(2vh - 10px);
}
.nav__name::before {
  display: none;
}
.logo {
  width: 20px;
  border-radius: 50%;
  vertical-align: text-top;
  margin-right: 10px;
}

nav span {
  padding: 0 10px;
}
nav ul {
  display: flex;
  overflow-x: auto;
  padding: 10px 2vh;
}
li {
  list-style-type: none;
}
nav ul li:first-child a {
  margin-left: 0;
}
nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 10px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
}
nav a:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  height: 20%;
  width: 100%;
  background: rgb(32, 178, 170, 0.3);
  transition: all 0.1s linear;
}
nav a.nav__link--active:before {
  border-bottom: 3px solid lightseagreen;
}
nav a:focus:before,
nav a:hover:before {
  height: 100%;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.noselect {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* Main Body */
main {
  overflow: hidden;
  -webkit-box-flex: 1;
  flex: 1;
  width: 100%;
  margin: 5vh auto;
  padding: 2vh;
  overflow-x: hidden;
  max-width: 1000px;
}
@media screen and (max-width: 480px) {
  main {
    margin: 0vh auto;
  }
}
.heading {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left_sec {
  margin: auto;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}
.my_img {
  width: 230px;
  vertical-align: middle;
  object-fit: cover;
  border-radius: 50%;
}
.profile_badge {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #fffbdd;
  color: rgb(253, 135, 204);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -70px;
  left: 85%;
}
.right_sec {
  position: relative;
  max-width: 600px;
  margin: auto;
  margin-left: 0px;
  min-height: 1px;
  padding: 0px 15px;
}
h2.title {
  font-family: "Open Sans", sans-serif;
  font-size: 45px;
  font-weight: 500;
  padding: 10px 0;
  color: #0cf2b2;
}
#blue_text {
  padding: 0;
  color: #D6E5FA;
  font-weight: 400;
  font-size: 30px;
}
.description {
  font-weight: 400;
  font-size: 18px;
  color: hsla(0, 0%, 100%, 0.88);
  margin-top: 10px;
  line-height: 1.3;
}
.break {
  border: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgb(80, 250, 123), rgb(21, 101, 192));
  margin: 5vh auto;
  max-width: 1000px;
}
.h4 {
  font-size: 18px;
}

/* Home Exp */
.semi {
  display: flex;
  justify-content: center;
  padding: 40px 0px;
}
.semi_title {
  flex-shrink: 0;
  width: 190px;
  margin-right: 60px;
  color: tomato;
  text-transform: uppercase;
  text-align: right;
  font-weight: 700;
  letter-spacing: 2px;
}
.semi_desc {
  font-weight: 300;
  font-size: 1rem;
  width: 100%;
  max-width: 670px;
}
.semi_desc p {
  margin-top: 0;
  margin-bottom: 25px;
}
.iiitv {
  color: #edc988;
  text-decoration: none;
}
.iiitv:hover {
  border-bottom: 2px solid hsla(0, 0%, 100%, 0.88);
}
.underline-link {
  position: relative;
  display: inline-block;
  color: hsla(0, 0%, 100%, 0.88);
}
.underline-link:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #36363c;
  content: "";
  opacity: 0;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.underline-link:focus:after,
.underline-link:hover:after {
  background: hsla(0, 0%, 100%, 0.88);
  height: 2px;
  border-radius: 3px;
  opacity: 1;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.status {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-top: 70px;
}
.status__light {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.status__light__ring {
  position: absolute;
  width: 25px;
  height: 25px;
  -webkit-animation: pulsate 1.5s ease-out;
  animation: pulsate 1.5s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
  border: 3px solid #bae67e;
  border-radius: 30px;
}
.status__light__led {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #bae67e;
  border-radius: 100%;
}
.status__message {
  margin-left: 15px;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@media screen and (max-width: 750px) {
  .semi {
    display: block;
    padding: 30px 15px;
  }
  .semi_title {
    margin-right: 50px;
    text-align: left;
    width: auto;
  }
  .semi_desc {
    padding-top: 30px;
  }
  #blue_text {
    font-size: 23px;
  }
  .description {
    font-size: 20px;
  }
}
.achi {
  max-width: 650px;
  margin-bottom: 50px;
}

.expi__name {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: hotpink;
}
.achi_name__sub {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffdf6e;
}
.achi_name {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: hotpink;
}
@media screen and (max-width: 480px) {
  .expi__name {
    font-size: 1.3rem;
  }
  .achi_name__sub {
    font-size: 1rem;
  }
}
.achi p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.small {
  /* font-family: "PT Mono"; */
  font-size: 10px;
  display: inline-block;
  margin-top: 15px;
}
.achi_list {
  margin-bottom: 30px;
}
.achi_name__li {
  height: unset;
  margin: 2px 0 0 10px;
  list-style-type: "→  ";
  display: list-item;
  line-height: 1.5;
}
.achi_used {
}

.achi_used .achi_used__item:first-of-type {
  margin-left: 0;
}
.achi_used .achi_used__item {
  display: inline-block;
  margin: 3px 5px 3px 0;
  /* font-family: Inconsolata, monospace; */
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  color: #6F69AC;
  border: 1px solid #6F69AC;
  background: 0 0;
}

/* Arrow link */
.arrow-link {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
  display: inline-block;
  background-color: transparent;
  white-space: nowrap;
}
.arrow-link:after {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  bottom: 2px;
  margin-left: 15px;
  content: "";
  background: url(img/arrow.png) no-repeat center;
  background-size: 100%;
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
}
.arrow-link:hover:after {
  -webkit-transform: translateX(15px);
  transform: translateX(15px) scale(1.5);
}
.experience .arrow-link {
  font-size: 1.25rem;
}
.experience .arrow-link:after {
  width: 20px;
  height: 20px;
}
/* Common */
section h1 {
  font-size: 40px;
  color: tomato;
  margin-bottom: 1rem;
}
section h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #007bff;
  padding-bottom: 5px;
  color: hsla(0, 0%, 100%, 0.88);
}
section li {
  font-size: 17px;
  margin: 5px 0;
  list-style-type: circle;
  list-style-position: inside;
}
::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
}
section li a,
section p a {
  text-decoration: underline;
  color: #c6cfff;
}
section#intro em {
  font-style: normal;
  font-size: 20px;
  margin: 10px 0px;
  padding-left: 10px;
  border-left: 3px solid teal;
  display: inline-block;
}
section p {
  color: hsla(0, 0%, 100%, 0.88);
  font-size: 18px;
  margin: 30px 0;
  line-height: 1.5;
}
.hover_eff {
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  color: hsla(0, 0%, 100%, 0.88);
  text-decoration: none;
  padding: 1px;
}
.hover_eff:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  height: 20%;
  width: 100%;
  background: rgb(80, 250, 123, 0.5);
  transition: all 0.15s linear;
}
.hover_eff:focus:before,
.hover_eff:hover:before {
  height: 100%;
  color: #fff;
}
strong {
  color: #edc988;
  font-weight: 700;
}

/* Project Page */
.projects_intro {
  max-width: 900px;
  margin: auto;
}
.projects_list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  transition: 0.4s ease-in-out;
}
.project_one {
  background: rgb(23, 42, 69);
  border-radius: 0.375rem;
  padding: 1.25rem 1.25rem 60px;
  position: relative;
  animation: bottom_up 0.4s ease-in-out;
}
.project_top {
  display: flex;
  justify-content: space-between;
}
.project_icon_file {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  line-height: 1em;
  flex-shrink: 0;
  color: rgb(100, 255, 218);
}
.project_icon_open {
  display: inline-flex;
  cursor: pointer;
  background: transparent;
  justify-content: center;
  transition: all 250ms ease 0s;
  user-select: none;
  vertical-align: middle;
  outline: none;
  border: 0;
  min-width: 2.5rem;
  font-size: 1rem;
  color: rgb(113, 128, 150);
}
.project_icon_open:active {
  color: rgb(45, 55, 72);
}
.project_icon_open:hover {
  color: rgb(100, 255, 218);
}
.project_title {
  color: rgb(204, 214, 246);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  margin-top: 1rem;
}
.project_desc {
  font-weight: 500;
  font-size: 1rem;
  color: rgb(136, 146, 176);
  margin: 0;
  margin-top: 0.75rem;
}
.project_last {
  display: flex;
  color: rgb(136, 146, 176);
  align-items: center;
  position: absolute;
  margin-top: 0.75rem;
  bottom: 1.25rem;
}
.project_last_icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  line-height: 1em;
  flex-shrink: 0;
  color: currentcolor;
  margin-left: 1rem;
}
.project_last_text {
  margin: 0;
  color: rgb(204, 214, 246);
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .projects_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@keyframes bottom_up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page */
.follow {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-flow: wrap;
  /* margin: 0 15px; */
  color: #ee6f57;
}
.gap {
  margin: 0 20px 20px 0;
}
section .follow a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 10px 15px;
  padding: 5px 10px;
  font-weight: 400;
  margin-left: 0px;
}
section .follow a img {
  height: 25px;
  margin-right: 5px;
}
.about_body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_img {
  margin: 20px auto;
  max-width: 300px;
  height: auto;
  width: auto;
}

/* Uses page */
.uses__sec {
  color: #d1d5db;
  margin: auto;
}
.uses__sec__img {
  max-width: 500px;
  margin: auto;
  /* height: 400px;  */
}
.uses__sec__img-one {
  width: 100%;
  height: 450px;
  object-fit: contain;
}
.uses__title {
  color: #f3f4f6;
  scroll-margin-top: 8rem;
  font-size: 1.5rem;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.uses__list li {
  height: unset;
  margin: 2px 0 0 10px;
  list-style-type: disc;
  display: list-item;
  line-height: 1.5;
}

/* Footer */
.footer {
  color: hsla(0, 0%, 100%, 0.88);
  padding: 50px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__links a {
  position: relative;
  display: inline-block;
  color: #007bff !important;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 15px;
  outline: 0;
}
.footer__links a .text {
  font-size: 0.9rem;
  display: inline;
  letter-spacing: 1px;
}
.footer__links img {
  display: none;
  width: 22px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 50px 30px;
  }
  .arrow-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 630px) {
  .footer {
    display: block;
  }
  .footer__links {
    display: flex;
    justify-content: center;
  }
  .footer__links a .text {
    display: none;
  }
  .footer__links img {
    display: inline-block;
  }
  .footer__copyright {
    width: auto;
    text-align: center;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 50px;
  }
  .footer__links a {
    margin: 0 10px;
  }
}
