﻿body {
  font-family: Trebuchet MS;
}

* {
  padding: 0;
  margin: 0;
}

.background_gradient {
  background: linear-gradient(to bottom right, #50a3a2 0%, #78cc6d 100%);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.bg_bubbles {
  position: relative;
  display: flex;
  height: 100%;
}

.bubbles {
  position: absolute;
  list-style: none;
  display: block;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.6);
  bottom: -270px;
  animation: square 50s infinite;
  transition-timing-function: linear;
  border-radius: 4px;
}

.bubbles1 {
  left: 10%;
}

.bubbles2 {
  left: 20%;
  width: 160px;
  height: 160px;
  animation-delay: 2s;
  animation-duration: 34s;
}

.bubbles3 {
  left: 5%;
  animation-delay: 4s;
}

.bubbles4 {
  left: 40%;
  width: 120px;
  height: 120px;
  animation-duration: 44s;
}

.bubbles5 {
  left: 70%;
}

.bubbles6 {
  left: 80%;
  width: 240px;
  height: 240px;
  animation-delay: 3s;
}

.bubbles7 {
  left: 40%;
  width: 320px;
  height: 320px;
  bottom: -350px;
  animation-delay: 7s;
}

.bubbles8 {
  left: 55%;
  width: 40px;
  height: 40px;
  animation-delay: 15s;
  animation-duration: 80s;
}

.bubbles9 {
  left: 25%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 80s;
}

.bubbles10 {
  left: 90%;
  width: 320px;
  height: 320px;
  animation-delay: 22s;
}

@keyframes square {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-1500px) rotate(600deg);
  }
}

.resume_Big_container {
  position: absolute;
  width: 85%;
  height: 83%;
  top: 7%;
  left: 7%;
  display: flex;
}

.indicator_resume {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}

.indicate_contain_a {
  border-bottom: solid 0.1px #b9b9b9;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-evenly;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  color: #656565;
  transition: all 0.2s ease-in-out;
  height: 70px;
}

.indicate_contain_a:hover {
  cursor: pointer;
  color: #78cc6d;
}

.indicate_contain_a i {
  font-size: 18px;
  padding-top: 3px;
}

.indicator_resume__container {
  width: 5%;
}

.profile_big_contain {
  width: 37%;
  height: 100%;
  padding-left: 16px;
  overflow: visible;
}

.profile_contain {
  width: 100%;
  background-color: #fff;
  height: 95%;
  border-radius: 6px;
  display: flex;
  flex-flow: column;
  position: relative;
  box-shadow: 2px 4px 6px grey;
  z-index: 6;
  overflow: hidden;
}

.cover_image {
  width: 100%;
  height: 53%;
  background-color: black;
  position: relative;
}

.cover_image img {
  width: 100%;
  height: 100%;
}

.cover_image:before {
  content: "";
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(15deg);
  top: 84%;
  left: -36%;
}

.cover_image:after {
  right: -36%;
  content: "";
  background-color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(-15deg);
  top: 83%;
}

.ava_info_contain {
  position: absolute;
  display: flex;
  flex-flow: column;
  width: 82%;
  height: 50%;
  align-items: center;
  left: 8%;
  top: 38%;
  justify-content: space-between;
}

.avatar {
  width: 123px;
  height: 123px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  position: absolute;
}

.myname {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}

.ml9 .letter {
  display: inline-block;
  line-height: 1em;
  color: #78cc6d;
}

.soft_info_contain {
  display: flex;
  flex-flow: column;
  height: 49%;
  width: 70%;
  justify-content: space-around;
}

.icon_social_contain {
  display: flex;
  justify-content: space-around;
  width: 60%;
  align-items: center;
  height: 42px;
  align-self: center;
  font-size: 21px;
  padding-top: 1px;
}

.icon_social_contain a:hover {
  cursor: pointer;
  transform: translateY(-5px);
}

.icon_social_contain a {
  transition: all 0.3s;
}

.ml9 {
  text-align: center;
  font-size: 17px;
  overflow: hidden;
}

.shadow_hover {
  display: inline-block;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  color: #3b3a3b;
}

.shadow_hover:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 71%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.69) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  /* W3C */
  transition-duration: 0.3s;
}

.shadow_hover:hover {
  transform: translateY(-6px);
  animation-name: hover;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.shadow_hover:hover:before {
  opacity: 0.4;
  transform: translateY(6px);
  animation-name: hover-shadow;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes hover {
  50% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(-6px);
  }
}

@keyframes hover-shadow {
  0% {
    transform: translateY(6px);
    opacity: 0.4;
  }

  50% {
    transform: translateY(3px);
    opacity: 1;
  }

  100% {
    transform: translateY(6px);
    opacity: 0.4;
  }
}

.spotify:hover {
  color: #4ccc63;
}

.github:hover {
  color: #563d7c;
}

.face:hover {
  color: #4267b2;
}

.twitter:hover {
  color: #1da1f2;
}

.card_big_container {
  height: 100%;
  width: 55%;
  position: relative;
  top: 2%;
}

.card_Big_wrap {
  position: absolute;
  width: 100%;
  height: 91%;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  border-radius: 7px;
}

.card::-webkit-scrollbar,
.card::-webkit-scrollbar-thumb {
  width: 16px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 6px solid transparent;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
}

.card::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0 10px;
}

.hide_scroll::-webkit-scrollbar,
.hide_scroll::-webkit-scrollbar-thumb {
  color: rgba(0, 0, 0, 0);
  transition: all 0.4s;
}

.card {
  overflow-y: scroll;
  height: 100%;
}

.title_card:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 30px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(46, 202, 127, 0.15) 0%,
    rgba(46, 202, 127, 0.19) 100%
  );
}

.title_card:after {
  content: "";
  position: absolute;
  left: -30px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: radial-gradient(
    ellipse at left,
    #959595 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.title_card {
  position: relative;
  height: 84px;
  display: flex;
  align-items: center;
}

.title_card h2 {
  font-size: 22px;
  padding: 7px 0 0 21px;
  color: #2d2d2d;
}

.card_big_container p {
  font-size: 16px;
  line-height: 1.8em;
  padding: 0;
  color: #646464;
}

.card_big_container h3 {
  color: #4e4e4e;
  padding: 12px 0;
}

.About_intro {
  padding: 15px 35px;
}

.About_moreinfo {
  display: flex;
  flex-wrap: wrap;
  padding: 6px 35px;
  justify-content: space-between;
}

.moreinfo_child {
  display: flex;
  width: 48%;
}

.moreinfo_title {
  align-items: center;
  display: flex;
  width: 49%;
  color: #4e4e4e;
}

.moreinfo_child p {
  display: flex;
  align-items: center;
}

.services_itemContainer {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}

.services_itemContainer:before {
  margin: 0 0 0 -1px;
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: radial-gradient(
    ellipse at top,
    #adadad 0%,
    rgba(189, 189, 189, 0.25) 70%
  );
}

.services_item {
  width: 48%;
  padding: 24px 0 0 32px;
}

.services_icon {
  color: #78cc6d;
  font-size: 24px;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 5px;
}

.services_icon:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 38px;
  height: 38px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(46, 202, 127, 0.15) 0%,
    rgba(46, 202, 127, 0.19) 100%
  );
}

.Quote_container {
  display: flex;
  width: 100%;
  height: 28%;
  padding: 20px 7px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Quote_container p {
  font-size: 30px;
}

.double_quotes i {
  transform: rotateY(180deg);
}

.Quote_container i {
  color: #78cc6d;
  position: absolute;
  top: 39%;
}

.Quote_container:after,
.Quote_container:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 5px;
  background: #78cc6d;
  border-radius: 100px;
}

.Quote_container:before {
  top: 29%;
}

.Quote_container:after {
  bottom: 29%;
}

.indicator_card {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
  transition: all 0.6s !important;
}

.invi {
  opacity: 0;
  transform: translateX(-180px);
  z-index: -1;
}
.Resume_item_container {
  display: flex;
  width: 100%;
  position: relative;
}
.Experience_container {
  display: flex;
  flex-flow: column;
  width: 47%;
  padding: 20px 33px;
}
.Resume_title_container {
  font-size: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.Resume_icon_container {
  color: #78cc6d;
  font-size: 32px;
  padding-right: 13px;
}
.Resume_title_container p {
  line-height: 14px;
  color: #323232;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
.Experience_item {
  position: relative;
}
.Experience_item:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background: radial-gradient(
    ellipse at center,
    #d2d2d2 0%,
    rgba(255, 255, 255, 0) 70%
  );
}
.Experience_time {
  display: flex;
  height: 50px;
  align-items: center;
  margin-top: 12px;
}
.Experience_time p {
  border: solid 1.7px #78cc6d;
  outline: none;
  padding: 0 6px;
  color: #78cc6d;
  font-size: 14px;
}
.Experience_description{
  margin-bottom: 15px;
}
.Experience_item_title {
  margin-bottom: 10px;
  margin-top: 7px;
}
.Experience_item_title p {
  font-size: 14px;
  color: #ababab;
}
.Resume_item_container:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: radial-gradient(
    ellipse at top,
    #888 0%,
    rgba(255, 255, 255, 0) 70%
  );
}
.Skills_container {
  display: flex;
  width: 100%;
  position: relative;
}
.skill_item {
  display: flex;
  color: #fff;
  flex-flow: column;
  width: 40%;
  background: linear-gradient(-45deg, #24ff72, #48a1eb);
  border-radius: 15px;
  height: 200px;
  position: relative;
}
.skill_item:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 55%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: skewY(-7deg);
  transform: skewY(-7deg);
  z-index: 1;
}
.icon_container {
  width: 40%;
}
.icon_container svg {
  width: 100%;
}
.framework_container {
  height: 181px;
  padding-top: 26px;
  padding-left: 35px;
}
.list_skill_item_container {
  margin-top: 30px;
  overflow: visible;
}
.list_skill_item_container ul {
  font-size: 16px;
  line-height: 1.8em;
  padding: 0;
  color: #646464;
  position: relative;
  overflow: visible;
  list-style-type: none;
}
.list_skill_item_container li:before {
  content: "";
  position: absolute;
  left: 0%;
  top: 43%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #646464;
}
.list_skill_item_container li {
  position: relative;
  padding-left: 9px;
}
.list_skill_item_container ul:before {
  content: "";
  position: absolute;
  top: -24px;
  width: 100%;
  height: 3px;
  background: radial-gradient(
    ellipse at center,
    #d2d2d2 0%,
    rgba(255, 255, 255, 0) 70%
  );
}
.Skills_container:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: radial-gradient(
    ellipse at top,
    #888 0%,
    rgba(255, 255, 255, 0) 70%
  );
}
.Projects_container {
  display: flex;
  padding: 39px 41px;
  flex-flow: column;
}
.Projects_item {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 5px 6px 10px rgba(0, 0, 0, 0.39);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 45%;
}
.Projects_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.Projects_item_container {
  display: flex;
  width: 95%;
  padding-bottom: 36px;
  justify-content: space-between;
  height: 170px;
  overflow: visible;
}
.P_item_description {
  width: 48%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  overflow: visible;
}
.P_item_description h2 {
  color: rgba(60, 59, 59, 0.8196078431372549);
  font-size: 23px;
  padding-bottom: 13px;
}
.P_demo {
  margin-right: 8px;
  text-decoration: none;
  overflow: visible;
}
.P_demo i {
  transform: translateY(0);
  color: #3a3a3a;
  transition: all 0.3s;
}
.P_demo:hover i {
  transform: translateY(-5px);
  color: rgba(131, 14, 224, 0.76);
}
.P_demo_container {
  font-size: 30px;
  overflow: visible;
}
.P_technologies_container {
  display: flex;
  width: 130%;
  padding-top: 12px;
  overflow: visible;
}
.P_technologies_container_item {
  background: linear-gradient(to bottom right, #50a3a2 0%, #78cc6d 100%);
  color: #fff;
  border-radius: 6px;
  padding: 5px 11px;
  margin-right: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Projects_item_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #50a3a2 0%, #78cc6d 100%);
  opacity: 0;
  transition: all 0.4s;
}

.Projects_item:hover .Projects_item_bg {
  opacity: 0.8;
}
.Project_link {
  position: absolute;
  color: #fff;
  font-size: 25px;
  top: 90%;
  opacity: 0;
  transition: all 0.4s;
}
.Project_link_demo {
  left: 27%;
}
.Project_link_github {
  left: 40%;
}
.Project_linkl:hover {
  cursor: pointer;
}
.Projects_item:hover .Project_link {
  top: 39%;
  opacity: 1;
}
.Project_link:hover {
  cursor: pointer;
}
.Project_link {
  font-size: 46px;
}
.unexpected {
}
