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

body {
  font-family: "Poppins", sans-serif;
  margin: 15px 20px;
}

p,
li {
  overflow-wrap: break-word;
}

li {
  word-break: break-word;
}

p:hover:not(:focus),
ul:hover:not(:focus) {
  transition: transform 0.2s ease;
  transform: scale(0.95);
  cursor: pointer;
}

img {
  -webkit-user-drag: none;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container {
  max-width: 555px;
  width: 100%;
  margin: 0 auto;
}

.first-block {
  display: flex;
  gap: 20px;
}

.block {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 12px;
}

.first-items-block {
  width: 124px;
  height: 124px;
}

.first-items-block:first-child {
  padding: 0;
}

.first-items-block:last-child {
  width: 267px;
}

.avatar {
  height: 124px;
  width: 124px;
  object-fit: contain;
  border-radius: 12px;
  user-select: none;
}

.first-items-block-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.name-hello {
  line-height: 150%;
  font-weight: 500;
  font-size: 10px;
}

.name-block {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.name {
  font-weight: 600;
  font-size: 14px;
  line-height: 104%;
}

.job-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #5c5c5c;
}

.first-items-block-languages {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

h1 {
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
}

.languages-block {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.language-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-name {
  font-size: 10px;
  line-height: 104%;
  font-weight: 500;
}

.skill {
  color: transparent;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  appearance: none;
  width: 100%;
  max-width: 168px;
  height: 11px;
  border-radius: 3px;
  outline: none;
  background: linear-gradient(
    to right,
    #28d979 0%,
    #28d979 var(--value, 50%),
    #f0f0f0 var(--value, 50%),
    #f0f0f0 100%
  );
}

.skill::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 11px;
  background: #28d979;
  cursor: pointer;
  border-radius: 30%;
}

.skill::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 11px;
  background: #28d979;
  cursor: pointer;
  border-radius: 30%;
}

.skill::-ms-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 11px;
  background: #28d979;
  cursor: pointer;
  border-radius: 30%;
}

.second-block {
  display: flex;
  gap: 20px;
}

.experience-title {
  margin-bottom: 16px;
}

.experience-block {
  width: 100%;
}

.experience-items {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.experience-item {
  border-radius: 10px;
  background-color: #fff;
  padding: 8px;
  transition: all 0.25s;
}

.experience-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 150%;
  font-size: 8px;
}

.experience-most-recent {
  user-select: none;
  opacity: 0;
  padding: 2px 6px;
  border: 1px;
  line-height: 155%;
  /* width: 61px; */
  border-radius: 59px;
  /* height: 16px; */
  cursor: pointer;
}

.experience-item:hover:not(.green) .experience-most-recent {
  transition: opacity 0.3s ease;
  opacity: 1;
  box-shadow: 0 0 2px #000;
  color: #5c5c5c;
}

.experience-item:hover:not(.green) .experience-most-recent:hover {
  box-shadow: 0 0 3px #000;
}

.green .experience-most-recent {
  opacity: 1;
  color: #ddf163;
  background-color: rgba(126, 115, 18, 0.4);
}

.green .experience-most-recent:hover {
  background-color: rgba(126, 115, 18, 0.5);
}

.experience-item-content {
  display: flex;
  column-gap: 8px;
}

.experience-info {
  width: 124px;
}

.experience-role {
  font-weight: 500;
  font-size: 10px;
  line-height: 150%;
}

.experience-type,
.experience-text {
  font-weight: 400;
  font-size: 8px;
  line-height: 150%;
}

.experience-type {
  color: #3f3d3d;
  /* word-spacing: 6px; */
}

.green .experience-type {
  color: #fff;
}

.experience-text-block {
  width: 239px;
}

.experience-text {
  list-style: none;
}

.experience-text > li {
  display: flex;
  align-items: flex-start;
}

.experience-text > li::before {
  content: "•";
  display: inline-block;
  margin-right: 8px;
}

.tools-block {
  width: 124px;
  flex-shrink: 0;
}

.tools-title {
  margin-bottom: 15px;
}

.tools-cards {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 0 12px;
}

.tools-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
}

.tools-mini-title {
  display: inline-block;
  position: relative;
  width: fit-content;
  white-space: nowrap;
  background-color: #000000;
  padding: 2px 6px;
  border-radius: 59px;
  font-weight: 500;
  font-size: 5px;
  line-height: 142%;
  color: #fff;
  text-align: center;
  top: -5px;
}

.tools-icons {
  display: grid;
  grid-template-columns: repeat(2, 16px);
  justify-items: center;
  align-items: center;
  gap: 16px;
  padding-top: 5px;
  padding-bottom: 16px;
}

.third-block {
  display: flex;
  column-gap: 20px;
}

.education-title {
  margin-bottom: 16px;
}

.education-cards {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
}

.education-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  width: 116px;
  border-radius: 10px;
  height: fit-content;
}

.education-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.education-card-date,
.education-card-info-title {
  font-weight: 500;
  font-size: 10px;
  line-height: 150%;
}

.green .education-heart {
  opacity: 1;
  fill: #f6ed1e;
  transition: fill 0.25s;
}

.education-heart {
  opacity: 0;
  fill: #fff;
  transition: opacity 0.25s;
  user-select: none;
  cursor: pointer;
}

.education-card:hover:not(.green) .education-heart {
  opacity: 1;
  filter: drop-shadow(0 0 2px #000);
  transition: filter 0.2s;
}

.education-card:hover:not(.green) .education-heart:hover {
  opacity: 1;
  filter: drop-shadow(0 0 3px #000);
  transition: filter 0.2s;
}

.education-tags {
  color: #149063;
}

.green .education-tags {
  color: #fff;
}

.education-tags,
.education-card-place {
  font-weight: 400;
  font-size: 8px;
  line-height: 150%;
}

.green {
  background-color: #28d979;
  color: #fff;
  transition: all 0.25s;
}

.green * {
  color: #fff;
}

.interests-contact-block {
  display: flex;
  flex-direction: column;
  width: 267px;
  background-color: #fff;
  gap: 20px;
}

.interests-title {
  margin-bottom: 16px;
}

.interests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest {
  display: inline-block;
  white-space: nowrap;
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  background-color: #fff;
  padding: 4px 10px;
  text-align: center;
  width: fit-content;
  border-radius: 40px;
}

.contact-block {
  padding: 12px;
  background-color: #000;
  width: 267px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 92px;
}

.contact-message {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}

.contact-mail {
  font-size: 10px;
  line-height: 150%;
  color: #dddddd;
}

.download-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.download-button {
  padding: 12px 6px;
  background-color: #28d979;
  color: #fff;
  transition: background-color 0.2s;
  outline: none;
  border: none;
  border-radius: 12px;
  width: fit-content;
}

.download-button:hover {
  background-color: #149063;
  transition: background-color 0.2s;
  width: fit-content;
  cursor: pointer;
}

.download-button:active {
  color: #000;
  transform: scale(0.98);
  transition: all 0.2s;
}

/* 
:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
}



a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}



h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
} */
