@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
}

.right-side {
  background-color: #fff;
}

.container_right {
  width: 100%;
  padding: 10px 2rem 2rem 2rem;
  color: #4a4d4e;
}

.profile:hover .profile__header {
  letter-spacing: 0.01em;
}
.profile:hover .profile__title {
  transform: translateX(10px);
  font-weight: 700;
}
.profile:hover .profile__title::after {
  width: 100px;
  background-color: red;
}
.profile__title {
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 15px 0;
  margin-bottom: 20px;
  transition: transform 0.4s ease, font-weight 0.4s ease;
}
.profile__title::after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  top: 60px;
  border-radius: 2px;
  left: 0;
  background-color: #4a4d4e;
  transition: width 0.4s ease, background-color 0.4s ease;
}
.profile__header h4 {
  margin: 5px;
  transition: letter-spacing 0.4s ease;
}

.work:hover .work__title {
  transform: translateX(10px);
  font-weight: 700;
}
.work:hover .work__title::after {
  transform: translateX(3px);
  width: 160px;
  background-color: red;
}
.work__title {
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 30px;
  position: relative;
  transition: transform 0.4s ease, font-weight 0.4s ease;
}
.work__title::after {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #4a4d4e;
  transition: width 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
.work__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: 0.4fr 0.6fr;
  grid-template-areas: "line job-1" "line job-2" "line job-3";
  gap: 15px;
}
.work__grid-line {
  position: relative;
  margin: 0 auto;
  grid-area: line;
  width: 2px;
  height: 95%;
  margin: auto;
  border-radius: 3px;
  background-color: grey;
}
.work__grid-line::before, .work__grid-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid grey;
}
.work__grid-line::before {
  top: 0;
  width: 10px;
  height: 10px;
}
.work__grid-line::after {
  width: 7px;
  height: 7px;
  top: 60%;
}
.work__grid .job-1 {
  grid-area: job-1;
}
.work__grid .job-2 {
  grid-area: job-2;
}
.work__grid .job-3 {
  grid-area: job-3;
}
.work__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-transform: none;
}
.work__wrapper ul {
  font-size: 14px;
}

.job:hover .job__title {
  letter-spacing: 0.01rem;
}
.job__title {
  transition: letter-spacing 0.4s ease;
}

.icon {
  width: 32px;
  height: 32px;
  color: #67b4f2;
}

.skills:hover .skills__title {
  transform: translateX(10px);
  font-weight: 700;
}
.skills:hover .skills__title::after {
  transform: translateX(3px);
  width: 110px;
  background-color: red;
}
.skills__title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 15px;
  position: relative;
  transition: transform 0.4s ease, font-weight 0.4s ease;
}
.skills__title::after {
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  top: 42px;
  left: 0;
  background-color: #4a4d4e;
  transition: width 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
.skills__list {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
}
.skills__list:hover .skills__list-subtitle {
  letter-spacing: 0.01rem;
  transform: translateX(10px);
}
.skills__list-subtitle {
  margin-bottom: 15px;
  transition: letter-spacing 0.4s ease, transform 0.4s ease;
}
.skills__list-item {
  list-style: none;
  display: grid;
  grid-template-columns: 90px 7fr;
  justify-content: start;
  align-items: flex-start;
  margin-top: 3px;
}
.skills__list-item:hover .skills__list-item-logo-svg {
  transform: scale(1.2);
}
.skills__list-item-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.skills__list-item-logo-svg {
  width: 32px;
  height: 32px;
  color: #4a4d4e;
  transition: transform 0.4s ease, color 0.4s ease;
}
.skills__list-item span {
  font-size: 9px;
  font-style: italic;
}
.skills__desc li {
  padding: 3px;
}
.skills-other__title {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 15px;
  position: relative;
}
.skills-other__title::after {
  content: "";
  width: 100px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  top: 42px;
  left: 0;
  background-color: #4a4d4e;
}
.skills-other__list {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
}
.skills-other__list:hover .skills-other__list-subtitle {
  letter-spacing: 0.01rem;
  transform: translateX(10px);
}
.skills-other__list-subtitle {
  margin-bottom: 15px;
  transition: letter-spacing 0.4s ease, transform 0.4s ease;
}
.skills-other__list-item {
  list-style: none;
  display: grid;
  grid-template-columns: 90px 7fr;
  justify-content: start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3px;
}
.skills-other__list-item:hover .skills-other__list-item-logo-icons-svg {
  transform: scale(1.1);
}
.skills-other__list-item-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.skills-other__list-item-logo-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.skills-other__list-item-logo-icons-svg {
  width: 24px;
  height: 24px;
  color: #4a4d4e;
  transition: transform 0.4s ease, color 0.4s ease;
}

#js {
  width: 40px;
  height: 40px;
}

.btn {
  border-radius: 0.6em;
  margin: 0.125rem 0.1875rem 0.125rem 0;
  padding: 0.5em 1em;
  border: none;
  background-color: #e0ddda;
  color: #232323;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.btn:hover {
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
  transform: translateY(-2px);
  background-color: rgb(200.75, 195.5, 190.25);
}
.btn:active {
  transform: translateY(0);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
}
.btn__link {
  text-decoration: none;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  color: inherit;
  display: block;
}

.left-side {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: #232323;
  color: #fff;
}

.ImgBx img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.ImgBx img img {
  height: 200px;
}

.about__title {
  position: relative;
  width: 250px;
  max-width: 280px;
  margin: 15px 20px 0 25px;
  padding-bottom: 10px;
  font-size: 45px;
  line-height: 45px;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgb(72, 70, 70);
}
.about span {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact {
  position: relative;
  width: 250px;
  max-width: 280px;
  margin: 0 20px 0 25px;
  padding: 25px 5px 5px 5px;
  /* padding-left: 8px; */
  border-bottom: 1px solid rgb(72, 70, 70);
}
.contact__title {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  /* padding-left: 15px; */
  transition: padding-left 0.3s ease;
}

.contact__list-wrap {
  padding: 0;
  margin-top: 0;
}
.contact__list-wrap .contact__list-item {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
  margin: 10px 0 10px 0;
  list-style: none;
  cursor: pointer;
  transition: letter-spacing 0.3s ease;
}
.contact__list-wrap .contact__list-item p {
  padding-top: 3px;
}

.item-text {
  font-weight: 500;
}
.item-icon {
  align-self: center;
  justify-self: left;
}
.item-icon__logo {
  width: 31px;
  height: 31px;
  color: #67b4f2;
  transition: transform 0.3s ease, color 0.3s ease;
}
.item-icon__contact {
  text-decoration: none;
  color: #fff;
}

.education {
  position: relative;
  width: 250px;
  margin: 0 20px 0 25px;
  max-width: 300px;
  padding: 25px 0;
  border-bottom: 1px solid rgb(72, 70, 70);
  /* padding-left: 8px; */
}
.education .education__title {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: padding-left 0.3s ease;
}
.education .education__wrap {
  padding: 0;
  margin-top: 0;
}
.education .education__list-item {
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin: 10px 0 10px 0;
  padding: 5px;
  list-style: none;
  cursor: pointer;
  border-radius: 10px;
  border-left: 3px solid transparent;
}
.education .education__list-item .list-item__icon {
  align-self: self-start; /* Вертикальное выравнивание */
  justify-self: left; /* Горизонтальное выравнивание */
}
.education .education__list-item .list-item__icon .icon__logo {
  width: 32px;
  height: 32px;
  color: #67b4f2;
  transition: transform 0.3s ease, color 0.3s ease;
}
.education .education__list-item .education__text span {
  font-size: 13px;
  font-weight: 100;
  transition: font-size 0.3s ease;
}

.hobby {
  position: relative;
  width: 250px;
  margin: 0 20px 0 25px;
  max-width: 280px;
  padding: 25px 0;
}
.hobby__title {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: padding-left 0.3s ease;
}
.hobby__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hobby__list-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 6px 0 2px 0;
  cursor: pointer;
  transition: letter-spacing 0.3s ease;
}
.hobby__list-item-icon {
  align-self: flex-start;
  justify-self: left;
  transition: transform 0.3s ease, color 0.3s ease;
}
.hobby__list-item p {
  margin: 0;
}
.hobby__icon-logo {
  width: 30px;
  height: 30px;
  color: #67b4f2;
  transition: transform 0.3s ease, fill 0.3s ease, color 0.3s ease;
}

.contact:hover .contact__title,
.education:hover .education__title,
.hobby:hover .hobby__title {
  padding-left: 8px;
}

.contact__list-item:hover,
.hobby__list-item:hover {
  letter-spacing: 0.02em;
}

.contact__list-item:hover .item-icon__logo,
.education__list-item:hover .list-item__icon .icon__logo,
.hobby__list-item:hover .hobby__icon-logo {
  transform: scale(1.1) rotate(6deg);
  color: #fff;
  fill: #fff;
}

@media (max-width: 650px) {
  .left-side {
    width: 100%;
    padding-bottom: 30px;
  }
  .about {
    width: 100%;
  }
  .about__title {
    width: 100%;
    font-size: 60px;
    font-weight: 300;
    line-height: 60px;
  }
  .about__title span {
    font-size: 22px;
  }
  .ImgBx {
    margin: 30px auto;
    width: 90%;
  }
  .ImgBx img {
    max-width: 100%;
  }
  .contact {
    max-width: 280px;
  }
  .contact__title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  .item p {
    font-size: 20px;
    max-width: 100%;
  }
  .item-icon__logo {
    width: 40px;
    height: 40px;
  }
  .item-icon__contact {
    font-size: 20px;
  }
  .education {
    width: 100%;
    max-width: 280px;
  }
  .education__title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  .education .education__list-item p {
    font-size: 16px;
  }
  .education .education__list-item .education__text span {
    font-size: 18px;
  }
  .education .education__list-item .education__text p {
    font-size: 20px;
  }
  .hobby {
    width: 100%;
    max-width: 300px;
  }
  .hobby__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .hobby__list-item {
    gap: 42px;
  }
  .hobby__list-item-icon {
    align-self: flex-start;
    justify-self: left;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .hobby__list-item p {
    font-size: 20px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: url("../img/7205.webp") center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 900px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  margin: 40px auto 40px;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 650px) {
  .container {
    grid-template-columns: 1fr; /* Одна колонка */
    grid-template-rows: auto auto; /* Две строки */
    height: auto; /* Автовысота */
    margin: 20px; /* Уменьшаем отступы */
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p {
  font-size: 14px;
  font-weight: 500;
}

/*# sourceMappingURL=index.css.map */
