@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;800&family=Roboto:wght@100;300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* #515B3A, #6BA368, #9CFC97, #353D2F, #E6FAFC 
font-family: 'Manrope', sans-serif;
font-family: 'Roboto', sans-serif;
*/
html,
body {
  box-sizing: border-box;
  background-color: #edf1df;
  font-family: "Roboto", sans-serif;
}
.container {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 20% 2fr;
  gap: 30px;
  box-sizing: border-box;
}
.container .quickIntro {
  width: 100%;
  min-height: 100vh;
  background-color: #303753;
  color: #b5beaf;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}
.container .quickIntroChild {
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  /* border: 1px solid red; */
}
.container .quickIntro section.sec-1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  /* border: 1px solid red; */
}
.container .quickIntro h1 {
  font-weight: 500;
}
.container .quickIntro h2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  /* border: 1px solid red; */
}
.container .quickIntro .Profile {
  width: 150px;
  border-radius: 5px;
  position: relative;
}
/* .quickIntro .Profile:hover::after {
  transform: skew(-5deg);
  border-radius: 5px;
  border-color: #838680;
} */
/* .quickIntro .Profile:hover img {
  transform: scaleX(-1);
} */

.container .quickIntro .Profile::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 150px;
  height: 100%;
  border-radius: 5px;
  transform: translate(10px, 10px);
  border: 2px solid #b5beaf;
  transition: transform linear 0.5s;
}
.container .quickIntro .Profile img {
  border-radius: 5px;
  background-position: 0 0;
  background-size: cover;
}
.container .quickIntro dl {
  margin-top: 5px;
  line-height: 25px;
  /* border: 1px solid red; */
}
.container .quickIntro dt {
  font-weight: 500;
  font-size: 18px;
}
.container .quickIntro dl dd {
  font-size: 14px;
  text-indent: 10px;
  transition: transform ease 0.5s;
  /* border: #ff0000 1px solid; */
}
.container .quickIntro dl dd::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1px solid #e8f1c7;
  margin-right: 10px;
}
.container .quickIntro dl dd:hover {
  transform: translate(5px);
}
.container .quickIntro dl dd:hover::before {
  background-color: #e8f1c7;
}
.container .quickIntro .contact {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 14px;
  cursor: pointer;
  box-sizing: border-box;
}
.container .quickIntro .contact span.heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  margin-top: 5px;
}
.container .quickIntro .contact span.contactInfo {
  /* border: #ff0000 1px solid; */
  padding: 5px;
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  box-sizing: border-box;
}
.container .quickIntro .contact a {
  text-decoration: underline;
  color: #b5beaf;
}

.container .detailedDescription {
  width: 90%;
  margin: auto;
  height: 100%;
  /* border: #303753 1px solid; */
  padding: 60px 0px;
  box-sizing: border-box;
  position: relative;
}

.container .detailedDescription .About ul {
  font-weight: 600;
  line-height: 25px;
  font-size: 16px;
  color: #303753;
}
.container .detailedDescription .About ul span.heading {
  font-size: 18px;
}
.container .detailedDescription .About ul li {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
hr {
  margin: 20px 0px;
  border-color: #3037535d;
}
.container .Academics {
  /* border: red 1px solid; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container .Academics table {
  width: 100%;
  color: #303753;
  border-spacing: 0;
}
.container .Academics table tr {
  line-height: 25px;
}
.container .Academics table th {
  font-size: 16px;
  margin-bottom: 5px;
}
.container .Academics table td {
  font-size: 14px;
  padding: 5px;
  margin-bottom: 5px;
}
table caption {
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  text-align: left;
  margin-bottom: 10px;
}
.container .Academics table tr:nth-child(odd) td {
  background: #303753;
  color: #b5beaf;
}
.container .Experience table {
  border-spacing: 0;
  color: #303753;
}
.container .Experience table th {
  font-size: 16px;
  margin-bottom: 5px;
}
.container .Experience table tr {
  line-height: 25px;
}
.container .Experience table td {
  font-size: 14px;
  padding: 5px;
  margin-bottom: 5px;
}

.container .Experience table caption {
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  text-align: left;
  margin-bottom: 10px;
}
.container .Experience table tr:nth-child(odd) td {
  background-color: #303753;
  color: #b5beaf;
}
.container .Experience table tr:nth-child(odd) td a {
  text-decoration: underline;
  color: #b5beaf;
}
.container .Experience table tr:nth-child(even) td a {
  text-decoration: underline;
  color: #303753;
}
.container .Projects {
  width: 100%;
  height: fit-content;
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
}
.container .Projects .internshipProjects {
  width: 100%;
  height: fit-content;
  /* border: 1px solid red; */
  display: flex;
  gap: 20px;
  align-items: center;
  box-sizing: border-box;
}

.container .Projects .internshipProjects span {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  text-align: left;
  /* margin-bottom: 10px; */
  color: #303753;
  /* border: 1px solid blue; */
}

.container .Projects .internshipProjects span:hover {
  color: rgba(220, 20, 60, 0.764);
}

/* .container .Projects .internshipProjects span a {
  text-decoration: underline;
  color: #303753;
  margin-bottom: 10px;
}
.container .Projects .internshipProjects .cards {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 30px;
}
.container .Projects .internshipProjects .cards .card {
  width: calc(100% / 3);
  aspect-ratio: 1/1;
  background: #303753;
  transition: filter 300ms;
  transition: transform 300ms;
  padding: 0px;
  margin: 0;
}
.container .Projects .internshipProjects .cards .card iframe {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container
  .Projects
  .internshipProjects
  .cards:has(.card:hover)
  .card:not(:hover) {
  filter: grayscale(100%) brightness(50%);
  transform: perspective(500px) translateZ(-3rem);
} */

.container .detailedDescription .download {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 150px;
  height: 35px;
  background-color: #303753;
  color: #b5beaf;
  outline: none;
  border: none;
}

.container .detailedDescription .download a {
  text-decoration: none;
  color: inherit;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .container {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    height: 100%;
    box-sizing: border-box;
  }
  .container .quickIntro {
    height: fit-content;
    background-color: #303753;
    color: #b5beaf;
    padding: 20px 30px;
    margin: 0;
    box-sizing: border-box;
    /* border: red solid 1px; */
  }
  .container .quickIntroChild {
    width: 100%;
    /* border: 1px solid red; */
    position: static;
  }

  .quickIntro section.sec-1 {
    display: inline-block;
    gap: 5px;
    /* border: 1px solid red; */
  }
  .container .quickIntro h1 {
    font-weight: 500;
  }
  .container .quickIntro h2 {
    font-size: 18px;
    font-weight: 500;
    /* border: 1px solid red; */
  }

  .container .quickIntro dl {
    line-height: 25px;
    /* border: 1px solid red; */
  }
  .container .quickIntro dt {
    font-weight: 500;
    font-size: 18px;
  }
  .container .quickIntro dl dd {
    font-size: 14px;
    text-indent: 10px;
    transition: transform ease 0.5s;
    /* border: #ff0000 1px solid; */
  }
  .container .quickIntro dl dd::before {
    /* border: #ff0000 1px solid; */
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border: 1px solid #e8f1c7;
    margin-right: 10px;
  }
  .container .quickIntro dl dd:hover {
    transform: translate(5px);
  }
  .container .quickIntro dl dd:hover::before {
    background-color: #e8f1c7;
  }
  .container .quickIntro .contact {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    /* border: 1px solid navy; */
  }
  .container .quickIntro .contact span.heading {
    font-weight: 500;
    font-size: 18px;
    line-height: 2;
    margin-top: 5px;
  }
  .container .quickIntro .contact span.contactInfo {
    /* border: #ff0000 1px solid; */
    padding: 5px;
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
    box-sizing: border-box;
  }
  .container .quickIntro .contact a {
    text-decoration: underline;
    color: #b5beaf;
  }

  .container .detailedDescription {
    /* height: 100%; */
    /* border: #303753 1px solid; */
    padding: 20px;
    box-sizing: border-box;
    position: relative;
  }

  .container .detailedDescription .About ul {
    font-weight: 600;
    line-height: 18px;
    font-size: 16px;
    color: #303753;
  }
  .container .detailedDescription .About ul span.heading {
    font-size: 18px;
  }
  .container .detailedDescription .About ul li {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
  }
  hr {
    margin: 20px 0px;
    border-color: #3037535d;
  }
  .container .Academics {
    /* border: red 1px solid; */
    width: 98%;
    margin: auto;
    overflow-x: scroll;
  }
  .container .Academics table {
    display: flex;
    flex-direction: column;
    color: #303753;
    border-spacing: 0;
  }
  .container .Academics table tr {
    line-height: 18px;
    text-align: justify;
  }
  .container .Academics table th {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .container .Academics table td {
    font-size: 13px;
    padding: 5px;
    box-sizing: border-box;
    margin-bottom: 5px;
  }
  table caption {
    /* font-weight: 600; */
    font-size: 18px;
    line-height: 2;
    text-align: left;
    /* margin-bottom: 10px; */
  }
  .container .Academics table tr:nth-child(odd) td {
    background: #303753;
    color: #b5beaf;
  }
  .container .Experience {
    width: 95%;
    margin: auto;
    overflow-x: scroll;
  }
  .container .Experience table {
    border-spacing: 0;
    color: #303753;
  }
  .container .Experience table th {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .container .Experience table tr {
    line-height: 18px;
    box-sizing: border-box;
  }
  .container .Experience table td {
    font-size: 13px;
    padding: 5px;
    margin-bottom: 5px;
  }

  .container .Experience table caption {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    margin-bottom: 10px;
  }
  .container .Experience table tr:nth-child(odd) td {
    background-color: #303753;
    color: #b5beaf;
  }
  .container .Experience table tr:nth-child(odd) td a {
    text-decoration: underline;
    color: #b5beaf;
  }
  .container .Experience table tr:nth-child(even) td a {
    text-decoration: underline;
    color: #303753;
  }
  .container .Projects {
    width: 100%;
    height: fit-content;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
  }
  .container .Projects .internshipProjects {
    width: 100%;
    height: fit-content;
    /* border: 1px solid red; */
    display: flex;
    gap: 20px;
    align-items: center;
    box-sizing: border-box;
  }

  .container .Projects .internshipProjects span {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    line-height: 2;
    text-align: left;
    /* margin-bottom: 10px; */
    color: #303753;
    /* border: 1px solid blue; */
  }

  .container .Projects .internshipProjects span:hover {
    color: rgba(220, 20, 60, 0.764);
  }
  .container .detailedDescription .download {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 150px;
    height: 35px;
    background-color: #303753;
    color: #b5beaf;
    outline: none;
    border: none;
  }

  .container .detailedDescription .download a {
    text-decoration: none;
    color: inherit;
  }
}
