/* =========================
   Основные переменные и сброс
   ========================= */
:root {
  --main-bg-color: #fff;
  --main-text-color: #555555;
  --accent-color: #ddb502;
  --primary: #ffc107;
}

* {
  font-family: "Poppins", "Courier New", Courier, monospace;
}

/* =========================
   Базовая разметка
   ========================= */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  z-index: 9999;
  width: 100%;
}

main section {
  gap: 40px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =========================
   Секция "Про меня"
   ========================= */
/* =========================
   Секция «Про меня»
   ========================= */
.its-me {
  max-width: 70%; /* Ограничиваем ширину для лучшего визуального восприятия */
  margin: 0 auto; /* Центрируем секцию */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 30px; /* Увеличиваем зазор между фото и контентом для «воздуха» */


}

.main-skills {
  margin: 30px 0 0 0; /* Увеличиваем отступ сверху */
  display: flex;
  flex-direction: row;
  gap: 20px; /* Увеличиваем зазор между навыками */
  flex-wrap: wrap; /* Позволяем элементам переноситься на новую строку при нехватке места */
}


.main-skill {
  flex: 1;
}

@media (max-width: 768px) {
  .main-skills {
    flex-direction: column;
    gap: 15px; /* Уменьшаем зазор на мобильных */
  }
  .its-me {
    flex-direction: column; /* Фото и контент друг под другом на мобильных */
    gap: 20px;
  }
}

.hero-photo {
  width: 250px;
  height: 250px;
  border-radius: 16px;
  box-shadow: 19px 23px 23px 0px rgba(34, 60, 80, 0.2);
  object-fit: cover; /* Обрезаем изображение, сохраняя пропорции */
  overflow: hidden; /* Скрываем лишние части изображения */
}

.its-me-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%; /* Занимаем всю доступную ширину */
}

.its-me-content p{
  margin: 10px 0;
}

.its-me-title {
  font-size: 2.5rem; /* Используем rem для адаптивности */
  font-weight: 700;
  position: relative;
  color: black; /* Яркий акцент на заголовке */
  margin-bottom: 15px;
}

.its-me-title::before {
  content: attr(data-text);
  position: absolute;
  margin: -5px 0 0 -15px;
  width: 2ch;
  height: 2ch;
  border-radius: 50%;
  border: 10px solid var(--accent-color);
  background-color: var(--accent-color);
  pointer-events: none;
  z-index: -1;
}

.its-me-text {
  width: 100%;
  font-size: 16px; /* Увеличиваем размер текста для лучшей читаемости */
  line-height: 2; /* Улучшаем межстрочный интервал */
  color: var(--main-text-color);
  margin: 10px 0;
  padding: 0 0 0 15px;
  max-width: 80%; /* Ограничиваем ширину текста для удобства чтения */
  border-left: 4px solid var(--accent-color);
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.its-me ul {
  list-style: none; /* Убираем стандартные маркеры */
  padding-left: 0; /* Убираем отступ слева */
  margin-top: 15px;
}

.its-me ul li {
  margin-left: 30px; /* Отступ для маркеров */
  position: relative; /* Для кастомных маркеров */
  margin-bottom: 10px; /* Разделяем пункты списка */
}

.its-me ul li::before {
  content: "•"; /* Простой и стильный маркер */
  position: absolute;
  left: -20px; /* Смещаем маркер влево */
  font-size: 18px;
  color: var(--accent-color);
  font-weight: bold;
}

.main-skill {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; /* Анимация при наведении */
}

.main-skill:hover {
  transform: translateY(-2px); /* Лёгкий подъём при наведении */
}

.main-skill-icon {
  margin-bottom: 15px;
}

.main-skill-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--accent-color);
}


/* =========================
   Секция "Почему я Новая"
   ========================= */

#experience {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(
      rgb(15, 32, 39),
      rgb(32, 58, 67),
      rgb(44, 83, 100)
    )
    0% 0% / cover no-repeat border-box;
  color: #fff;
}

#experience h2,
#experience h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.education-dual {
  display: flex; 
  flex-wrap: wrap; 
  gap: 40px; 
  justify-content: center; 
  margin-bottom: 80px;
}

.education-card {
  max-width: 40%;
  flex: 1 1 400px; 
  background: rgba(255,255,255,0.05); 
  padding: 30px; 
  border-radius: 12px; 
  backdrop-filter: blur(10px);
}




#experience .main-experience-subtitle {
   max-width: 70%;
   margin-bottom: 40px;
   text-align: center;
   font-size: 1.2rem;
}

.container {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  
}

.experience-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.experience-card {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.experience-card ul {
  list-style: none;
  padding: 0;
  line-height: 1.6;
}

/* стили секции проектов */
.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.github-button {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #24292e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.github-button:hover {
  background-color: #444c56;
}


.tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #00ffff33;
  border-radius: 6px;
  font-size: 0.9rem;
}
.projects-block {
  margin-top: 0px;
}

.projects-block h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
    text-align: center;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.card p {
  font-size: 0.85rem;
  line-height: 1.2;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: #00ffff22;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #00ffff;
}

/* стили тех карты */


canvas {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.tech-map-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
  background: linear-gradient(to right, #00ffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-map-container {
  gap: 40px;
  display: flex;
  flex-direction: row;
}

.tech-map-wrapper {
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.tech-map-left {
  position: relative;
  width: 600px;
  height: 600px;

}

.center-node {
  position: absolute;
  left: calc(50% + 0px);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #00ffff;
  text-align: center;
  line-height: 160px;
  font-weight: bold;
}

.tech-node-experience {
 position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.6;

}

.tech-node-experience i {
 font-size: 24px;
  margin-bottom: 6px;
  filter: none;
  transition: all 0.3s ease;

}

/* Активный пузырёк */
.tech-node-experience.active-node {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px currentColor;
  opacity: 1;
  transform: scale(1.1);
}

.tech-node-experience.active-node i {
  filter: drop-shadow(0 0 4px currentColor);
}


.tech-node-experience:hover {
  transform: scale(1.1);
  z-index: 2;
}

.tech-map-right {
  width: 50%;
  display: flex;
  align-items: center;
}

.tech-slider {
  width: 100%;
}

.tech-slide {
  display: none;
  max-width: 400px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: opacity 0.3s ease;
  color: #fff;
}


.tech-slide.active {
  display: block;
}

.tech-slide h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #00ffff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
  text-align: center;
}

.tech-slide p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

/* =========================
   Секция "Портфолио"
   ========================= */
.portfolio {
  width: 100%;
  background: #f7f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.portfolio h2 {
  position: relative;
  font-size: 24pt;
  font-weight: 700;
  color: #000;
  z-index: 2;
}

.portfolio-main-title::after {
  content: "";
  position: absolute;
  left: 3.5rem;
  top: 0.4rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 5px solid var(--accent-color);
  background-color: var(--accent-color);
  pointer-events: none;
  z-index: -1;
}

.portfolio h1 {
  font-size: 20pt;
  font-weight: 700;
  color: var(--main-text-color);
}

.portfolio-content-box {
  width: 100%;
}


.portfolio-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 650px;
  padding: 10px;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
}

.portfolio-item {
  width: calc(25% - 24px);
  max-width: 350px;
  min-width: 260px;
  min-height: 420px;
  padding: 32px 22px 26px 22px;
  margin: 14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 60%, rgba(221,181,2,0.08) 100%);
  box-shadow:
    0 8px 32px 0 rgba(34, 60, 80, 0.18),
    0 1.5px 8px 0 rgba(221,181,2,0.10) inset;
  border: 1.5px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: 
    box-shadow 0.35s cubic-bezier(.4,0,.2,1),
    transform 0.25s cubic-bezier(.4,0,.2,1),
    background 0.35s cubic-bezier(.4,0,.2,1),
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.portfolio-item:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.38) 60%, rgba(221,181,2,0.16) 100%);
  box-shadow:
    0 16px 48px 0 rgba(221,181,2,0.18),
    0 4px 24px 0 rgba(34, 60, 80, 0.13) inset,
    0 0 24px 0 rgba(221,181,2,0.10);
  border-color: rgba(221,181,2,0.25);
  transform: translateY(-10px) scale(1.035);
}

.portfolio-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.32);
  box-shadow: 0 2px 12px rgba(34,60,80,0.09);
}

.portfolio-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--main-text-color);
  margin: 10px 0 8px 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.portfolio-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 18px;
  text-align: center;
  min-height: 48px;
}

.portfolio-button {
  margin-top: auto;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent-color) 60%, #ffb300 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(221,181,2,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
}

.portfolio-button:hover,
.portfolio-button:focus {
  background: linear-gradient(90deg, #ffb300 60%, var(--accent-color) 100%);
  color: #222;
  box-shadow: 0 4px 16px rgba(221,181,2,0.18);
  transform: translateY(-2px) scale(1.05);
}

/* .portfolio-item:hover .portfolio-button {
  transform: translateY(-240px);
} */


/* =========================
   Пагинация портфолио
   ========================= */
.portfolio-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 0 0;
}
.portfolio-pagination button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.portfolio-pagination button.active,
.portfolio-pagination button:hover:not(:disabled) {
  background: #ffb300;
  color: #222;
}
.portfolio-pagination button:disabled {
  background: #eee;
  color: #aaa;
  cursor: default;
}




/* =========================
   Секция "Прайс-лист"
   ========================= */
.price {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #1e1e1e;
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
}

.price-main-title {
  position: relative;
  font-size: 24pt;
  font-weight: 700;
  color: var(--main-bg-color);
  z-index: 2;
}

.price-main-title::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0.4rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 5px solid var(--accent-color);
  background-color: var(--accent-color);
  pointer-events: none;
  z-index: -1;
}

.price-main-subtitle{
  font-size: 14pt;
  font-weight: 700;
  color: var(--main-bg-color);
}

.price-content {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  padding: 10px;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  gap: 40px;
   
}

.price-left,
.price-right {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.price-left .price-item {
  background-color: #f9f9f9;
  border-right: 4px solid var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
}

.price-right .price-item {
  background-color: #f1f1f1;
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
}

.price-item {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin: 0 0 40px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  opacity: 0;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.price-title {
  font-size: 18pt;
  margin-bottom: 10px;
  color: #333;
}

.cost {
  font-size: 14pt;
  color: #ffa501;
}

.price-subtitle {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.price-item ul {
  margin: 0 0 0 10%;
}

.price-item ul li{
  line-height: 1;
}

.price-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-info p {
  font-weight: 700;
}

.price li::marker {
  color: var(--accent-color);
  font-size: 35pt;
}

/* =========================
   Анимации для прайс-листа
   ========================= */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Секция "Footer"
   ========================= */

.contact {
  display: flex;
  flex-direction: row;
}

.fa-brands,
.fab {
  font-size: 30pt;
  
  font-weight: 400;
}



.fa-vk { color: #0088cc; }
.fa-telegram { color: #4c75a3; }
.fa-github { color: #000; }

/* Уведомляшки */
.notification {
    position: fixed;
    bottom: 60px;
    right: 90px;
    background: #10a100;
    color: rgb(255 255 255);
    font-weight: 800;
    font-size: 21px;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    z-index: 99999;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
  z-index: 99999;
}



/* =========================
   Адаптивность (мобильные устройства)
   ========================= */
@media (max-width: 768px) {
  .skills-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .skills-left, .skills-right {
    flex: 1;
    padding: 0;
  }
  .its-me {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0px;
    max-width: 90%;
  }

  .its-me-text {
    width: 100%;
  }


  .contact-left iframe,
  .contact-title-content img {
    display: none;
  }
  .contact-right {
    margin: 0 0 0 5%;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .contact,
  .contact-title-content,
  .contact-title-info {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .experience-content {
    flex-direction: column;
  }
  .experience-item {
    margin: 3rem 0 0 0;
  }
  .footer-social-box,
  .footer-social-media {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .phone-card {
    text-align: center;
    width: 90%;
  }
  .main-skill {
    width: 100%;
  }
  .portfolio-item {
     width: 95vw;
    min-width: unset;
    max-width: 420px;
  }
  .price-content {
    flex-direction: column;
    gap: 20px;
  }

 .price-content {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 0 4vw; /* небольшой внутренний отступ по бокам */
  }

  .price-left,
  .price-right {
    width: 100%;
  }

  .price-left .price-item,
  .price-right .price-item {
    animation: fadeInUp 0.6s ease forwards;
  }
}



/* =========================
   Адаптивность: планшеты и мобильные
   ========================= */
@media (max-width: 1024px) {
  .tech-map-container {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }

  .tech-map-left,
  .tech-map-right {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .center-node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .tech-slide {
    max-width: 90%;
  }

  .education-card {
    max-width: 100%;
  }

  .project-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  #experience h2,
  #experience h3,
  .tech-map-title {
    font-size: 1.6rem;
  }

  #experience .main-experience-subtitle {
    font-size: 1rem;
    max-width: 90%;
  }

  .its-me-text {
    width: 100%;
  }

  .education-dual {
    flex-direction: column;
    gap: 20px;
  }

  .education-card {
    padding: 20px;
  }

  .card h4 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  .tech-node-experience {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
  }

  .tech-node-experience i {
    font-size: 24px;
  }

  .center-node {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 10px;
  }

    .its-me-content {
    width: 100%;
}

  .its-me-text {
    min-width: 100%;
        padding: 10px;
  }


  .tech-map-wrapper {
    padding: 10px;
  }

  .tech-slide {
    padding: 16px;
  }

  .card {
    padding: 16px;
  }

  .card h4 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.75rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
}


@media (max-width: 1024px) {
  .tech-map-left {
    width: 100%;
    height: auto;
    min-height:200px;
  }

  .center-node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .tech-map-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: auto;
    position: static;
    padding: 20px 0;
  }

  .tech-node-experience {
    position: static !important;
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
  }

  .tech-node-experience i {
    font-size: 24px;
  }

  .center-node {
    display: none;
  }
}


@media (max-width: 480px) {
  .tech-map-left {
    height: 360px;
  }

  .tech-node-experience {
    width: 70px;
    height: 70px;
    font-size: 0.65rem;
  }

  .tech-node-experience i {
    font-size: 20px;
  }

  .center-node {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 0.9rem;
  }
}
