* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

.container {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.selected-list {
  border-bottom: 3px solid black;
}

body {
  overflow: hidden;
  background-color: #240046;
}

.loading-screen {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #240046;
  animation: loadingScreen 4s ease forwards;
  z-index: 100;
}
.loading-screen .container-animate {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.loading-screen .container-animate .box-animate {
  width: 50rem;
  height: 17rem;
  margin: 0 auto;
  display: flex;
}
.loading-screen .container-animate .box-animate .img-box {
  width: 10rem;
  height: 10rem;
}
.loading-screen .container-animate .box-animate .dot-box {
  position: relative;
  width: 30rem;
  height: 6rem;
  display: flex;
  justify-content: space-around;
  top: 50%;
  transform: translateY(-50%);
}
.loading-screen .container-animate .box-animate .dot-box .dot:nth-child(1) {
  width: 6rem;
  height: 6rem;
  background-color: white;
  border-radius: 100%;
  opacity: 0;
  animation: dot1 0.5s ease 1s infinite;
}
.loading-screen .container-animate .box-animate .dot-box .dot:nth-child(2) {
  width: 6rem;
  height: 6rem;
  background-color: white;
  border-radius: 100%;
  opacity: 0;
  animation: dot2 0.5s ease 1s infinite;
}
.loading-screen .container-animate .box-animate .dot-box .dot:nth-child(3) {
  width: 6rem;
  height: 6rem;
  background-color: white;
  border-radius: 100%;
  opacity: 0;
  animation: dot3 0.5s ease 1s infinite;
}
.loading-screen .container-animate .box-animate .left {
  width: 100px;
  animation: left 4s ease forwards;
}
.loading-screen .container-animate .box-animate .right {
  width: 100px;
  transform: rotate(180deg);
  animation: right 4s ease forwards;
}

.back-box {
  width: 12rem;
  height: 5rem;
  position: fixed;
  left: 100%;
  top: 10rem;
  transform: translateX(-12rem);
  transition: 0.3s;
  display: flex;
  cursor: pointer;
  background-color: #ffc300;
  z-index: 5;
  animation: 1s pulse ease-in-out infinite;
}
.back-box .img-btn {
  width: 5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 0.5s Arrow ease-in-out infinite;
}
.back-box .img-btn img {
  width: 4rem;
}
.back-box .word-btn {
  width: 7rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-box .word-btn p {
  font-family: "Lilita One";
  font-size: 2.2rem;
}
.back-box:hover {
  transform: translateX(-12rem) scale(1.1);
}

@keyframes Arrow {
  0% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(8px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1) translateX(-12rem);
  }
  50% {
    transform: scale(1.05) translateX(-12rem);
  }
  100% {
    transform: scale(1) translateX(-12rem);
  }
}
.resume-box {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.resume-box .left-box {
  width: 50%;
  height: 100%;
  display: flex;
}
.resume-box .left-box .side-bar {
  width: 9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffc300;
}
.resume-box .left-box .side-bar .small-logo-box {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resume-box .left-box .side-bar .small-logo-box img {
  width: 7rem;
}
.resume-box .left-box .side-bar .side-list-box {
  width: 100%;
  height: 60rem;
  display: flex;
  align-items: center;
}
.resume-box .left-box .side-bar .side-list-box .side-list {
  width: 100%;
  height: 28rem;
  transform: translateY(5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.resume-box .left-box .side-bar .side-list-box .side-list .icon-box {
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}
.resume-box .left-box .side-bar .side-list-box .side-list .icon-box img {
  width: 5rem;
}
.resume-box .left-box .side-bar .side-list-box .side-list .icon-box:nth-child(1)::after {
  content: "Expriences";
  position: absolute;
  left: 9rem;
  width: var(--after-width, 0rem);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1rem 1rem 1rem;
  background-color: #ffc300;
  color: #240046;
  font-size: 2.2rem;
  transition: 0.5s;
  opacity: var(--after-opacity, 0);
}
.resume-box .left-box .side-bar .side-list-box .side-list .icon-box:nth-child(2)::after {
  content: "Educations";
  position: absolute;
  left: 9rem;
  width: var(--after-width, 0rem);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1rem 1rem 1rem;
  background-color: #ffc300;
  color: #240046;
  font-size: 2.2rem;
  transition: 0.5s;
  opacity: var(--after-opacity, 0);
}
.resume-box .left-box .side-bar .side-list-box .side-list .icon-box:nth-child(3)::after {
  content: "Skills";
  position: absolute;
  left: 9rem;
  width: var(--after-width, 0rem);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1rem 1rem 1rem;
  background-color: #ffc300;
  color: #240046;
  font-size: 2.2rem;
  transition: 0.5s;
  opacity: var(--after-opacity, 0);
}
.resume-box .left-box .side-bar .side-list-box .side-list .icon-box:nth-child(4)::after {
  content: "Achevments";
  position: absolute;
  left: 9rem;
  width: var(--after-width, 0rem);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1rem 1rem 1rem;
  background-color: #ffc300;
  color: #240046;
  font-size: 2.2rem;
  transition: 0.5s;
  opacity: var(--after-opacity, 0);
}
.resume-box .left-box .bg-box {
  width: calc(100% - 8rem);
  height: 100%;
  display: flex;
  align-items: end;
}
.resume-box .left-box .bg-box .bottom-box {
  width: 100%;
  height: 30rem;
  text-align: center;
}
.resume-box .left-box .bg-box .bottom-box h1 {
  font-size: 4.2rem;
  font-family: "Lilita One";
  font-weight: lighter;
  color: #ffc300;
}
.resume-box .left-box .bg-box .bottom-box h3 {
  font-size: 2.8rem;
  font-family: "Lilita One";
  font-weight: lighter;
  color: #ffc300;
}
.resume-box .left-box .bg-box .bottom-box .social-box {
  width: 20rem;
  height: 6rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.resume-box .left-box .bg-box .bottom-box .social-box .social {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}
.resume-box .left-box .bg-box .bottom-box .social-box .social img {
  width: 3rem;
}
.resume-box .left-box .bg-box .bottom-box .social-box .social:hover {
  transform: scale(1.2);
}
.resume-box .right-box {
  width: 50%;
  height: 100%;
  padding: 6rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resume-box .right-box .exprience-page {
  position: absolute;
  min-width: 70rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  color: #9C9C9C;
  border-radius: 2rem;
  transition: 0.3s;
}
.resume-box .right-box .exprience-page hr {
  border: 1px solid #ffc300;
}
.resume-box .right-box .exprience-page h1 {
  font-size: 4.2rem;
  margin-bottom: 4rem;
  font-family: "Lilita One";
  font-weight: lighter;
}
.resume-box .right-box .exprience-page h3 {
  font-size: 2.2rem;
  font-family: "Inter";
}
.resume-box .right-box .exprience-page ul {
  padding-left: 2rem;
}
.resume-box .right-box .exprience-page ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Inter";
}
.resume-box .right-box .education-page {
  position: absolute;
  min-width: 70rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  color: #9C9C9C;
  border-radius: 2rem;
  transition: 0.3s;
  opacity: 0;
}
.resume-box .right-box .education-page h1 {
  font-size: 4.2rem;
  margin-bottom: 4rem;
  font-family: "Lilita One";
  font-weight: lighter;
}
.resume-box .right-box .education-page .education-box {
  width: 90%;
  height: 9rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.resume-box .right-box .education-page .education-box .degree-name-box {
  width: 100%;
  height: 5rem;
  display: flex;
}
.resume-box .right-box .education-page .education-box .degree-name-box .img-box {
  width: 5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resume-box .right-box .education-page .education-box .degree-name-box .img-box img {
  width: 5rem;
}
.resume-box .right-box .education-page .education-box .degree-name-box .degree-name {
  width: calc(100% - 5rem);
  height: 100%;
  font-size: 1.8rem;
  padding-left: 1rem;
}
.resume-box .right-box .education-page .education-box .degree-name-box .degree-name h3 {
  font-weight: bold;
  color: #ffc300;
  font-family: "Inter";
}
.resume-box .right-box .education-page .education-box .degree-name-box .degree-name h4 {
  font-weight: 300;
  color: #ffc300;
  font-family: "Inter";
}
.resume-box .right-box .education-page .education-box .marks-box {
  width: 100%;
  height: 5rem;
  padding-left: 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
.resume-box .right-box .education-page .education-box .marks-box .gpa-bar-box {
  width: 90%;
  height: 3rem;
  border: 2px solid #ffc300;
  padding: 0 0.3rem;
  border-radius: 4px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.resume-box .right-box .education-page .education-box .marks-box .gpa-bar-box .bar {
  width: 90%;
  height: 2rem;
  background-color: #ffc300;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.resume-box .right-box .education-page .education-box .marks-box .gpa-bar-box .bar h4 {
  color: #240046;
  font-size: 1.6rem;
  font-family: "Inter";
}
.resume-box .right-box .skills-page {
  position: absolute;
  min-width: 70rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  color: #9C9C9C;
  border-radius: 2rem;
  transition: 0.3s;
  opacity: 0;
}
.resume-box .right-box .skills-page h1 {
  font-size: 4.2rem;
  margin-bottom: 4rem;
  font-family: "Lilita One";
  font-weight: lighter;
}
.resume-box .right-box .skills-page hr {
  border: 1px solid #ffc300;
}
.resume-box .right-box .skills-page h3 {
  font-size: 2.2rem;
  font-family: "Inter";
}
.resume-box .right-box .skills-page ul {
  padding-left: 2rem;
}
.resume-box .right-box .skills-page ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Inter";
}
.resume-box .right-box .achevment-page {
  position: absolute;
  min-width: 70rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 3rem;
  color: #9C9C9C;
  border-radius: 2rem;
  transition: 0.3s;
  opacity: 0;
}
.resume-box .right-box .achevment-page h1 {
  font-size: 4.2rem;
  margin-bottom: 4rem;
  font-family: "Lilita One";
  font-weight: lighter;
}
.resume-box .right-box .achevment-page .achevment-box {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
}
.resume-box .right-box .achevment-page .achevment-box .img-box {
  width: 5rem;
  height: 5rem;
}
.resume-box .right-box .achevment-page .achevment-box .img-box img {
  width: 5rem;
}
.resume-box .right-box .achevment-page .achevment-box .achevment-title {
  width: calc(100% - 5rem);
  height: 5rem;
  display: flex;
  align-items: end;
  padding-left: 1rem;
}
.resume-box .right-box .achevment-page .achevment-box .achevment-title h3 {
  font-family: "Inter";
  font-size: 2.8rem;
}
.resume-box .right-box .achevment-page .achevment-p {
  width: 100%;
  height: 8rem;
  padding: 1rem;
}
.resume-box .right-box .achevment-page .achevment-p p {
  font-family: "Inter";
  font-size: 1.8rem;
}

.resume-box-small {
  width: 100%;
  height: auto;
  padding-top: 5rem;
  display: none;
}
.resume-box-small h1 {
  font-size: 3.6rem;
  font-family: "Lilita One";
  color: white;
  text-align: center;
  margin-bottom: 5rem;
}
.resume-box-small .content-box {
  width: 95%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  padding: 5rem 3rem;
}
.resume-box-small .content-box h1 {
  font-size: 2.6rem;
  font-family: "Lilita One";
  color: white;
  text-align: left;
  margin-bottom: 1rem;
}
.resume-box-small .content-box h3 {
  font-size: 2.2rem;
  font-family: "Inter";
  margin-bottom: 0.1rem;
  font-weight: 200;
  color: white;
  text-align: left;
}
.resume-box-small .content-box ul {
  padding-left: 2.2rem;
}
.resume-box-small .content-box li {
  font-size: 1.6rem;
  font-family: "Inter";
  font-weight: 200;
  color: white;
  text-align: left;
}
.resume-box-small .content-box hr {
  border: 1px solid #ffc300;
}
.resume-box-small .content-box .education-box {
  width: 90%;
  height: 9rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.resume-box-small .content-box .education-box .degree-name-box {
  width: 100%;
  height: 5rem;
  display: flex;
}
.resume-box-small .content-box .education-box .degree-name-box .img-box {
  width: 5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.resume-box-small .content-box .education-box .degree-name-box .img-box img {
  width: 5rem;
}
.resume-box-small .content-box .education-box .degree-name-box .degree-name {
  width: calc(100% - 5rem);
  height: 100%;
  font-size: 1.8rem;
  padding-left: 1rem;
}
.resume-box-small .content-box .education-box .degree-name-box .degree-name h3 {
  font-weight: bold;
  color: #ffc300;
  font-family: "Inter";
}
.resume-box-small .content-box .education-box .degree-name-box .degree-name h4 {
  font-weight: 300;
  color: #ffc300;
  font-family: "Inter";
}
.resume-box-small .content-box .education-box .marks-box {
  width: 100%;
  height: 5rem;
  padding-left: 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
.resume-box-small .content-box .education-box .marks-box .gpa-bar-box {
  width: 90%;
  height: 3rem;
  border: 2px solid #ffc300;
  padding: 0 0.3rem;
  border-radius: 4px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.resume-box-small .content-box .education-box .marks-box .gpa-bar-box .bar {
  width: 90%;
  height: 2rem;
  background-color: #ffc300;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
.resume-box-small .content-box .education-box .marks-box .gpa-bar-box .bar h4 {
  color: #240046;
  font-size: 1.6rem;
  font-family: "Inter";
}
.resume-box-small .content-box .achevment-box {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.resume-box-small .content-box .achevment-box .img-box {
  width: 5rem;
  height: 5rem;
}
.resume-box-small .content-box .achevment-box .img-box img {
  width: 5rem;
}
.resume-box-small .content-box .achevment-box .achevment-title {
  width: calc(100% - 5rem);
  height: 5rem;
  display: flex;
  align-items: end;
  padding-left: 1rem;
}
.resume-box-small .content-box .achevment-box .achevment-title h3 {
  font-family: "Inter";
  font-size: 2.8rem;
}
.resume-box-small .content-box .achevment-p {
  position: relative;
  width: 100%;
  height: 12rem;
  padding: 1rem;
}
.resume-box-small .content-box .achevment-p p {
  font-size: 1.6rem;
  font-family: "Inter";
  font-weight: 200;
  color: white;
}
.resume-box-small .content-box .bottom-box {
  width: 100%;
  height: 30rem;
  text-align: center;
}
.resume-box-small .content-box .bottom-box h1 {
  font-size: 2.6rem;
  font-family: "Lilita One";
  font-weight: lighter;
  color: #ffc300;
  text-align: center;
}
.resume-box-small .content-box .bottom-box h3 {
  font-size: 2.2rem;
  font-family: "Lilita One";
  font-weight: lighter;
  color: #ffc300;
  text-align: center;
}
.resume-box-small .content-box .bottom-box .social-box {
  width: 20rem;
  height: 6rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.resume-box-small .content-box .bottom-box .social-box .social {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}
.resume-box-small .content-box .bottom-box .social-box .social img {
  width: 3rem;
}
.resume-box-small .content-box .bottom-box .social-box .social:hover {
  transform: scale(1.2);
}/*# sourceMappingURL=style.css.map */