html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: none;
  transition: all 0.4s ease;
}

* {
  color: white;
}

body {
  background-color: #202021;
  height: 100%;
  overflow-y: hidden;
}

h3 {
  font-size: 2rem;
}

header {
  position: absolute;
  top: 0;
  background-color: #202021;
  width: 100vw;
  z-index: 100;
  font-size: 2rem;
}
header .menu {
  display: none;
}
header .menu i {
  font-size: 3rem;
  color: #46bddf;
}
header ul {
  list-style: none;
  display: flex;
  margin-right: auto;
}
header ul li:first-of-type {
  margin-left: auto;
}
header ul li {
  margin: 0.6rem 1rem;
  height: -moz-fit-content;
  height: fit-content;
}
header ul li a {
  padding: 1rem 1rem;
  text-decoration: none;
  color: #46bddf;
}
header ul li a:hover {
  border-bottom: white solid 1px;
}
header ul .active {
  border-bottom: white solid 1px;
}
@media screen and (max-width: 1200px) {
  header .menu {
    display: block;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .menu i {
    padding: 1rem;
    padding-top: 2rem;
    padding-right: 2rem;
    cursor: pointer;
  }
  header .menu #menu-btn-close {
    display: none;
  }
  header ul {
    display: none;
    flex-direction: column;
  }
  header ul li {
    margin-bottom: 2rem;
  }
  header ul li:first-of-type > a {
    margin-left: 0.6rem;
  }
}

#container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-snap-type: y proximity;
  overflow-y: scroll;
}

section {
  padding: 1rem;
  margin: 10rem 5rem;
 /* scroll-snap-align: start;*/
}
@media screen and (min-width: 1200px) {
  section {
    scroll-margin-top: 40px;
  }
}
section .heading {
  font-size: 4rem;
  font-weight: 300;
  padding: 1rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2666666667);
  color: #fff;
}
section .heading span {
  font-weight: 600;
  color: #46bddf;
}
section .content {
  font-size: 2rem;
}
section .content h3 {
  font-size: 2.8rem;
  margin-bottom: 1px;
}
section .content h5 {
  font-size: 2.4rem;
}
section .content .subtitle {
  color: rgba(240, 241, 244, 0.5490196078);
  margin-top: 0;
}

.card-holder {
  display: flex;
}
.card-holder .card {
  max-width: 300px;
  padding: 1.5rem;
  margin: 0.5rem;
  background-color: #29292B;
}
.card-holder .card .card-img {
  width: 100%;
  height: auto;
}
.card-holder .card .heading {
  margin: 0;
  font-size: 2.8rem;
}
.card-holder .card .content {
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .card-holder {
    flex-direction: column;
  }
}
#intro {
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0 15rem;
}
#intro .content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}
#intro .content img {
  border-radius: 50%;
  height: 20rem;
  width: auto;
  border: solid 0.5rem #46bddf;
}
#intro h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 300;
}
#intro h1 span {
  font-size: 4.2rem;
  font-weight: 400;
  color: #46bddf;
}
#intro p {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  color: #eee;
  padding: 1rem 0;
}
#intro h3 {
  font-size: 2rem;
  color: #fff;
}

#education .edu-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4rem 0;
}
#education .edu-items .edu-item {
  width: 27rem;
  height: 35rem;
  padding-bottom: 4rem;
  border-bottom: 0.2rem solid #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
#education .edu-items .edu-item i {
  position: absolute;
  bottom: -2.1rem;
  left: -2.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background: #46bddf;
}
#education .edu-items .edu-item span {
  font-size: 1.3rem;
  background: #222;
  color: #fff;
  border-radius: 5rem;
  padding: 0.5rem 2.5rem;
}
#education .edu-items .edu-item h3 {
  font-size: 2.3rem;
  font-weight: 600;
  color: #fff;
  padding-top: 1.5rem;
  min-height: 10rem;
}
#education .edu-items .edu-item p {
  font-size: 1.8rem;
  color: #eee;
}

#exp .content {
  margin-top: 4rem;
}
#exp .content article h5 {
  margin-bottom: 1rem;
}

#projects .project-items {
  display: grid;
  padding: 2rem 0;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  grid-gap: 5rem;
  justify-content: center;
}
#projects .project-items .project-item {
  position: relative;
  height: 20rem;
  border-radius: 1rem;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#projects .project-items .project-item .bg-img {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  position: absolute;
  z-index: -1;
  background-image: url("https://homepages.iitb.ac.in/~23m0835/images/project-placeholder.png");
  background-size: cover;
}
#projects .project-items .project-item .title {
  align-items: center;
  text-align: center;
}
#projects .project-items .project-item .link-row {
  display: flex;
  justify-content: space-around;
}
#projects .project-items .project-item .link-row a {
  color: #46bddf;
  font-size: 1.4rem;
  padding-left: 3rem;
}

#contact h3 {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #eee;
  padding: 1rem 0;
  font-weight: normal;
}
#contact i {
  padding-right: 1rem;
  color: #46bddf;
}

.profile-items {
  margin: 2rem 0;
  list-style: none;
}
.profile-items .profile-item {
  font-size: 2rem;
  color: #46bddf;
  padding: 0.3rem;
}
.profile-items .profile-item i,
.profile-items .profile-item svg,
.profile-items .profile-item img {
  color: inherit;
  margin-right: 2rem;
}
.profile-items .profile-item a {
  text-decoration: none;
}

@media only screen and (max-width: 940px) {
  #intro {
    padding: 0 2rem;
  }
  .edu-items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .edu-items .edu-item {
    padding-left: 4rem;
    border-left: 0.2rem solid #fff;
    border-bottom: none !important;
  }
  .edu-items i {
    top: -1.5rem;
    left: -2.5rem;
    bottom: 0;
  }
}
#github .content {
  text-align: center;
}

@media only screen and (max-width: 600px) {
  #intro .content {
    display: block;
  }
  html {
    font-size: 50%;
  }
  #projects .over-lay {
    opacity: 0.9 !important;
  }
} 
.submit-btn {
  background-color: #46bddf;
  color: white;
  padding: 1rem 2rem;
  margin: 0.1rem 0.2rem;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  font-size: 1.5rem;
}

#hobbies #hobbies-selection-form {
  display: flex;
  align-items: center;
}
#hobbies .hobbies-options {
  display: flex;
  align-items: center;
}
#hobbies .hobbies-options .option {
  padding: 0.2rem 0.8rem;
}
#hobbies .hobbies-options .option label {
  font-size: 1.5rem;
}
#hobbies .hobbies-options .option-checkbox:checked + .option-label {
  font-weight: bold;
}
#hobbies .hobbies-options .option:focus {
  background-color: white;
}

@media screen and (max-width: 800px) {
  .hobbies-options {
    flex-direction: column;
    align-items: start !important;
  }
}
#feedback .input-grp {
  margin-top: 2rem;
}
#feedback label {
  font-size: 1.8rem;
}
#feedback input {
  background-color: none;
  color: black;
  padding: 1rem 2rem;
  border: none;
  border-radius: 15rem;
}
#feedback textarea {
  color: black;
}/*# sourceMappingURL=style.css.map */
