@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;300;400;700;900&display=swap');

* {
  scroll-behavior: smooth;
  font-family: "Montserrat Alternates", sans-serif;
  font-style: normal;
  margin: 0;
  transition: all 0.5s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: #64bef1;
}

section {
  margin: 30px 0;
}

.container {
  width: 1140px;
  margin: 0 auto;
  color: white;
}

.title {
  font-size: 28px;
  line-height: 30px;
}

.fz24 {
  font-size: 24px;
  line-height: 26px;
}

.fz20 {
  font-size: 20px;
  line-height: 22px;
}

.fz16 {
  font-size: 16px;
  line-height: 16px;
}

.fz18 {
  font-size: 18px;
  line-height: 18px;
}

header {
  min-height: 200px;
}

/*about*/
.about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.about_title {
  text-align: center;
  padding-top: 20px;
}

.about_nav {
  display: block;
  width: 100%;
}

.menu_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 30px;
  margin: 0;
  list-style-type: none;
  text-align: center;
}

.menu_links-item {
  border-right: 1px solid white;
}

.menu_links-item a {
  cursor: pointer;
  display: block;
  height: 100%;
  width: 100%;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: 0.5s;
}

.menu_links-item a:hover {
  color: #a3ffff;
}

.menu_links-item:last-child {
  border-right: none;
}

.about_me {
  text-indent: 30px;
  text-align: justify;
}

.hero_cta {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cta_button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.cta_button:hover {
  background: white;
  color: #2479a9;
}

.cta_secondary {
  background: rgba(255, 255, 255, 0.15);
}

.main-skills_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
}

.main-skills_wrapper li {
  background: white;
  color: black;
  border-radius: 14px;
  padding: 14px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.main-skills_wrapper li span {
  font-size: 14px;
  line-height: 1.3;
}

/*contacts*/
.contacts a {
  color: white;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

.contacts a:hover {
  color: #a3ffff;
  text-decoration: underline;
  cursor: pointer;
}

.contacts_wrapper {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 0;
}

.contacts_item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/*goals*/
.goals_list {
  padding-left: 15px;
}

.goals_item {
  padding-top: 10px;
  padding-left: 10px;
  list-style-type: ">";
}

.goals_item::marker {
  padding-left: 5px;
}

/*skills*/
.skills_title {
  text-align: center;
}

.skills_wrapper {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  padding-top: 30px;
  justify-content: space-between;
}

.skills_wrapper > div {
  padding: 10px;
  border: 3px solid white;
  border-radius: 20px;
}

.hard_skills > ol, .soft_skills > ol {
  margin-top: 10px;
}

.hard_skills > h3, .soft_skills > h3 {
  text-align: center;
}

.subskills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  padding-left: 10px;
}

.subskill {
  padding-left: 5px;
}

/*experience*/
.experience_block {
  padding: 20px 40px 40px 40px;
  background-color: white;
  border-radius: 20px;
  color: black;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.experience_title {
  text-align: center;
}

.experience_wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 30px;
}

.experience_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.experience_year {
  margin: 0 auto;
  width: min-content;
  padding: 2px;
  text-align: center;
  border: solid;
  border-image: linear-gradient(21deg, #cb14d1, #5a15f1) 1 / 2px;
}

.experience_text {
  text-indent: 25px;
  line-height: 1.5;
}

.experience_role {
  display: block;
  margin-bottom: 6px;
  line-height: 1.3;
}

.experience_list {
  list-style: none;
  padding: 0;
}

.experience_list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-family: 'Courier New', monospace;
  line-height: 1.2;
  text-shadow: 0 0 5px #ffffff;
}

.experience_list li::before {
  content: "►";
  position: absolute;
  left: 0;
  top: 0;
  color: #64bef1;
  text-shadow: 0 0 1px #567a8f, 0 0 2px #5085a4;
  font-size: 1em;
}

.experience_text p {
  padding-left: 20px;
}

.experience_text p span {
  font-family: 'Courier New', monospace;
}

.case_studies_wrapper {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.case_study_item {
  padding: 16px;
  border: 2px solid #64bef1;
  border-radius: 16px;
  background: #f8fcff;
}

.case_study_item h3 {
  margin-bottom: 10px;
}

/*programming*/
.programming_block {
  z-index: -10;
}

.programming_title {
  position: relative;
  z-index: 10;
  text-align: center;
  line-height: 40px;
}

.programming_title:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  flex-shrink: 0;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(21deg, #cb14d1, #5a15f1);
  z-index: -1;
}

.programming_wrapper {
  padding: 30px 30px 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.programming_item {
  padding: 20px;
  width: 40%;
  border-radius: 20px;
  background: linear-gradient(21deg, #cb14d1, #5a15f1);
}

.programming_item > h3 {
  text-align: center;
}


.projects {
  margin: 30px 30px 0 30px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(21deg, #cb14d1, #5a15f1);
}

.projects_title {
  position: relative;
  text-align: center;
  line-height: 40px;
}

.projects_wrapper {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
}

.project_item {
  background-color: white;
  height: 100px;
  padding: 20px;
  cursor: pointer;
  transition: 0.5s;
}

.project_item:hover {
  scale: 1.05;
}

.git_links {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
}

.git_link {
  background-image: url("https://cdn-icons-png.flaticon.com/512/25/25231.png");
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  height: 20px;
  padding: 20px;
  cursor: pointer;
  transition: 0.5s;
}

.git_link:hover {
  scale: 1.05;
}

.uber_git {
  border-radius: 0 0 0 20px;
}

.portfolio_git {
  border-radius: 0 0 20px 0;
}

.project_span {
  display: none;
}

/*project experience*/
.programming_block {
  border-radius: 40px;
}

.programming_wrapper {
  margin: 30px 30px 0 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.programming_item {
  width: 100%;
}


.projects_experience {
  margin: 30px 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(21deg, #cb14d1, #5a15f1);
}

.projects_experience_title {
  text-align: center;
}

.projects_experience_wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.projects_experience_wrapper-error {
  color: #ffc5c5;
}

.projects_experience_wrapper-item {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.projects_experience_year {
  display: block;
  padding-right: 4px;
  writing-mode: sideways-lr;
}

.projects_experience_year::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateX(-50%);
  height: 100%;
  border: 2px solid #64bef1;
  border-radius: 2px;
}

.projects_experience_wrapper-item:first-child .projects_experience_year::after {
  top: calc(157px / 2 + 15px / 2);
  height: calc(100% - (157px / 2 + 15px / 2));
}

.projects_experience_wrapper-item:last-child .projects_experience_year::after {
  top: 0;
  height: calc(100% - (157px / 2));
}

.projects_experience_wrapper-item:only-child .projects_experience_year::after {
  height: calc(100% - 2 * (157px / 2 + 15px / 2));
}

.projects_experience_items_wrapper {
  width: 100%;
}

.projects_experience_block {
  position: relative;
  margin: 5px 0 5px 0;
  padding: 5px 5px 5px 10px;
  border: 2px solid #64bef1;
  border-bottom: none;
  border-right: none;
  border-radius: 30px;
  display: grid;
  align-items: center;
  grid-template-columns: 3fr 1fr;
  gap: 15px;
}

.projects_experience_block_text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.projects_experience_block_title {
  padding-bottom: 5px;
  position: relative;
}

.projects_experience_block_title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #64bef1;

}

.projects_experience_block_description {
  text-align: justify;
}

.projects_experience_block_tools {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
}

.projects_experience_block_links-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5px;
}

.projects_experience_project_image {
  background-color: white;
  height: 145px;
  cursor: pointer;
  transition: 0.5s;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  border-radius: 25px;
}
.border-top {
  height: 110px;
  border-radius: 25px 25px 0 0;
}

.projects_experience_actions-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.projects_experience_actions-wrapper a:first-child div {
  border-radius: 0 0 0 20px;
}

.projects_experience_actions-wrapper a:last-child div {
  border-radius: 0 0 20px 0;
}

.projects_experience_actions-wrapper a:only-child div {
  border-radius: 0 0 20px 20px;
}

.projects_experience_actions {
  flex: 1;
  max-width: 50%
}

.projects_experience_git_link {
  background-image: url("https://cdn-icons-png.flaticon.com/512/25/25231.png");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  height: 30px;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 0 0 20px 20px;
}
.projects_experience_figma_link {
  background-image: url("https://cdn-icons-png.flaticon.com/128/5968/5968704.png");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  height: 30px;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 0 0 20px 20px;
}

.projects_experience_project_image:hover, .projects_experience_git_link:hover {
  scale: 1.03;
}

/*Education*/
.education {
  padding: 30px;
  margin-top: 60px;
  background-color: white;
  color: black;
}

.education_title {
  color: black;
  text-align: center;
}

.education_wrapper {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-top: 20px;
  justify-content: space-between;
}

.education_wrapper > div {
  padding: 10px 20px;
  border: 3px solid #64bef1;
  border-radius: 20px;
}

.education_wrapper > div > h3 {
  text-align: center;
  color: black;
  margin-top: 10px;
}

.education_wrapper > div > p {
  color: black;
  text-indent: 30px;
  margin-top: 10px;
}

.courses {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 10px;
}

.course > a {
  color: black;
  background: rgba(0, 0, 0, 0.0);
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

.course > a:hover {
  color: #a3ffff;
}

.education_certificates {
  text-align: center;
}


/*footer*/
.footer {
  margin-top: 60px;
  padding: 30px 50px 20px 50px;
  background-color: #ffffff;
  min-height: 50px;
  border-radius: 80px 80px 0 0;
}

.footer_wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_rs_logo {
  height: 50px;
  transition: 0.5s;
}

.footer_rs_logo:hover {
  scale: 1.1;
  cursor: pointer;
}

.footer_span {
  display: none
}

.footer_rs_logo img {
  height: 100%;
}

.footer_copyright {
  position: absolute;
  text-align: center;
  font-weight: 300;
  color: black;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer_socials {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.footer_socials i {
  color: #000000;
  transition: 0.5s;
}

.footer_socials i:hover {
  cursor: pointer;
}

.footer_telegram i:hover, .footer_github i:hover {
  font-size: 55px;
}

.footer_github i, .footer_telegram i {
  font-size: 50px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .title {
    font-size: 26px;
    line-height: 28px;
  }

  .about_picture {
    height: 400px;
  }

  .menu_links-item {
    padding-right: 20px;
  }

  .icon {
    font-size: 22px;
  }

  .projects_experience_block {
    margin: 10px 0 5px 25px;
  }

  .projects_experience_year {
    padding: 5px;
    background: #64bef1;
    border-radius: 10px 0 0 10px;
  }

  .projects_experience_year:after {
    border: 2px solid #64bef1;
    left: 26px;
  }

  .projects_experience_project_image {
    height: 100px;
  }


  .projects_experience_wrapper-item:first-child .projects_experience_year::after {
    top: calc(147px / 2 + 15px / 2);
    height: calc(100% - (147px / 2 + 15px / 2));
  }

  .projects_experience_wrapper-item:last-child .projects_experience_year::after {
    top: 0;
    height: calc(100% - (147px / 2));
  }

  .projects_experience_wrapper-item:only-child .projects_experience_year::after {
    height: calc(100% - 2 * (147px / 2 + 15px / 2));
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .about_wrapper-left {
    justify-content: space-between;
  }

  .about_picture {
    height: 300px;
  }

  .about_title {
    padding-top: 10px;
  }

  .menu_links {
    padding: 5px;
  }

  .menu_links-item {
    padding-right: 10px;
  }

  .contacts {
    padding-top: 10px;
    padding-left: 15px;
  }

  .icon {
    font-size: 18px;
    width: 20px;
  }

  .goals {
    padding-left: 15px;
  }

  .goals_item {
    padding-left: 5px;
  }

  .hard_skills > ol, .soft_skills > ol {
    padding-left: 20px;
  }

  .projects_experience_block {
    grid-template-columns: 2fr 1fr;
  }

  .projects_experience_block_text {
    gap: 5px;
  }

  .case_studies_wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .about {
    flex-direction: column;
  }

  .about_picture {
    height: 400px;
  }

  .menu_links {
    align-items: center;
  }

  .menu_links-item {
    font-size: 20px;
    padding-right: 25px;
  }

  .contacts {
    padding-top: unset;
    padding-left: unset;
  }

  .contacts_wrapper {
    padding-left: unset;
  }

  .goals_list {
    padding-left: 35px;
  }

  .skills_wrapper {
    grid-template-columns: none;
    column-gap: 0;
    grid-template-rows: 1fr 1fr;
    row-gap: 30px;
  }

  .subskills {
    grid-template-columns: 1fr 1fr;
  }

  .experience_block {
    padding: 20px;
  }

  .experience_text {
    text-indent: 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .projects_experience {
    padding: 5px;
    margin: 30px 0;
  }

  .education_wrapper {
    grid-template-columns: none;
    grid-template-rows: 1fr;
    column-gap: 0;
    row-gap: 30px;
  }

  .education_wrapper > div > h3 {
    text-align: center;
  }

  .footer {
    padding: 30px 30px 20px 30px;
    border-radius: 70px 70px 0 0;
  }

  .footer_copyright > span {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
  }

  .about_picture {
    height: 250px;
  }

  .about_text h1 {
    font-size: 32px;
    line-height: 36px;
  }

  .title {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
  }

  .menu_links {
    padding: 5px 0;
    gap: 5px;
  }

  .menu_links-item {
    font-size: 16px;
    padding-right: 10px;
  }

  .main-skills_wrapper li {
    min-height: 70px;
  }

  .contacts {
    padding-top: 10px;
    padding-left: 0;
  }

  .contacts_wrapper {
    padding-left: 10px;
  }

  .text {
    font-size: 16px;
    padding-left: 10px;
  }

  .goals {
    padding-left: 0;
  }

  .skills {
    padding-top: 30px;
  }

  .skills_wrapper {
    grid-template-rows: none;
  }

  .experience_block {
    padding: 10px;
  }

  .experience_wrapper > div {
    column-gap: 10px;
  }

  .experience_year {
    font-size: 16px;
  }

  .experience_text {
    font-size: 16px;
    line-height: 16px;
  }

  .programming {
    margin-top: 30px;
  }

  .programming_title {
    margin-bottom: 30px;
  }

  .programming_block {
    background-size: 35px;
  }

  .projects_experience_block {
    grid-template-columns: 1fr;
  }

  .main-skills_wrapper {
    grid-template-columns: 1fr;
  }

  .projects_experience_wrapper {
    gap: 10px;
  }
  .programming_wrapper {
    margin: 0;
  }

  .education {
    margin-top: 30px;
  }

  .courses {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 0;
    row-gap: 20px;
  }

  .courses > a {
    text-align: center;
  }

  .footer {
    padding: 20px 20px 10px 20px;
    border-radius: 50px 50px 0 0;
    min-height: 40px;
  }

  .footer_copyright {
    font-size: 12px;
    line-height: 14px;
  }

  .footer_socials {
    height: 40px;
  }

  .footer_telegram i, .footer_github i {
    font-size: 40px;

    &:hover {
      font-size: 45px;
    }
  }

}

@media (max-width: 420px) {
  .experience_year {
    width: max-content;
  }

  .projects_experience {
    margin: 0 auto;
  }

  .projects_experience_block {
    margin: 0 auto;
  }

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

  .projects_experience_wrapper-item {
    flex-direction: column;
  }

  .projects_experience_year {
    width: unset;
    padding: 10px;
    border-radius: 20px;
  }

  .projects_experience_year:after {
    content: unset;
  }

  .projects_experience_block:before {
    content: unset;
  }

  .projects_experience_block:after {
    content: unset;
  }

  .experience_wrapper > div {
    flex-direction: column;
    row-gap: 15px;
    border-bottom: #64bef1 solid 1px;
    border-radius: 20px;
    padding-bottom: 15px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  html,
  body {
    background: #64bef1 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    margin: 0 !important;
    font-size: 12px;
    line-height: 1.25;
  }

  header {
    min-height: auto !important;
  }

  .container {
    width: auto !important;
    max-width: none !important;
    padding: 0 3mm !important;
  }

  .hero_cta {
    display: none !important;
  }

  .about_nav {
    display: none !important;
  }

  section {
    margin: 6px 0 !important;
  }

  .title {
    font-size: 20px !important;
    line-height: 1.15 !important;
  }

  .fz22 {
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  .fz20 {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .fz18 {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .fz16 {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .about {
    justify-content: flex-start !important;
    gap: 6px !important;
  }

  .about_title {
    padding-top: 0 !important;
  }

  .about_title h1 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .main-skills {
    margin: 6px 0 !important;
    padding: 6px 0 !important;
  }
  .main-skills_wrapper {
    margin: 6px 0 !important;
    gap: 6px !important;
  }

  .main-skills_wrapper li {
    min-height: 0 !important;
    padding: 6px 8px !important;
  }

  .main-skills_wrapper li span {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .programming_title:before,
  .projects_experience_year::after,
  .projects_experience_block::before,
  .projects_experience_block::after {
    content: none !important;
  }

  .experience_block,
  .projects_experience {
    box-shadow: none !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
  }

  a {
    color: inherit !important;
    text-decoration: none !important;
  }

  .experience_item,
  .case_study_item,
  .projects_experience_block {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  .experience_wrapper {
    margin-top: 8px !important;
    row-gap: 10px !important;
  }

  .experience_item {
    column-gap: 8px !important;
    align-items: flex-start !important;
  }

  .experience_text {
    text-indent: 0 !important;
  }

  .experience_role {
    margin-bottom: 3px !important;
    line-height: 1.25 !important;
  }

  .experience_text p {
    padding-left: 0 !important;
    margin-top: 3px !important;
  }

  .experience_list li {
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }

  .case_studies_wrapper {
    margin-top: 10px !important;
    gap: 10px !important;
  }

  .case_study_item {
    padding: 8px !important;
  }

  #case-studies {
    margin-top: 10px !important;
  }

  .projects_experience {
    margin: 6px 0 !important;
    padding: 8px !important;
  }

  .projects_experience_wrapper {
    display: block !important;
    margin-top: 8px !important;
  }

  .projects_experience_wrapper-item {
    display: block !important;
    position: static !important;
    margin-bottom: 8px !important;
  }

  .projects_experience_year {
    writing-mode: horizontal-tb !important;
    padding: 0 !important;
    margin: 0 0 4px 0 !important;
    font-weight: 700 !important;
    background: transparent !important;
  }

  .projects_experience_block {
    display: grid !important;
    grid-template-columns: 2.6fr 1fr !important;
    align-items: center !important;
    margin: 0 0 6px 0 !important;
    padding: 6px 8px !important;
    border: 1px solid #64bef1 !important;
    border-radius: 8px !important;
    gap: 6px !important;
  }

  .projects_experience_block_text {
    gap: 6px !important;
  }

  .projects_experience_block_title {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .projects_experience_block_description {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .projects_experience_block_tools {
    gap: 4px 10px !important;
    margin: 0 !important;
    padding-left: 16px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    list-style: none !important;
  }

  .projects_experience_block_links {
    display: block !important;
  }

  .projects_experience_block_links-wrapper {
    gap: 2px !important;
  }


  .projects_experience_project_image {
    height: 56px !important;
    border-radius: 8px !important;
  }

  .border-top {
    height: 56px !important;
    border-radius: 8px !important;
  }

  .education {
    padding: 10px 12px !important;
    margin-top: 10px !important;
    background: transparent !important;
  }

  .education_block {
    display: flow-root !important;
    height: fit-content !important;
    min-height: 0 !important;
    padding: 6px 8px !important;
    overflow: visible !important;
    background: #fff !important;
    border-radius: 8px !important;
    break-inside: avoid-page !important;
    page-break-inside: avoid !important;
  }

  .education_wrapper {
    display: block !important;
    height: auto !important;
    gap: 8px !important;
    padding-top: 6px !important;
  }

  .education_wrapper > div {
    padding: 5px 7px !important;
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  .education_wrapper > div > h3,
  .education_wrapper > div > p {
    margin-top: 4px !important;
  }

  .courses {
    margin-top: 8px !important;
    gap: 8px !important;
  }

  #education .container,
  #education .education_block,
  #education .education_university,
  #education .courses,
  #education .course,
  #education .course a {
    color: #000 !important;
  }

  #education .container {
    height: fit-content !important;
    min-height: 0 !important;
  }

  #education {
    break-before: page !important;
    page-break-before: always !important;
    min-height: unset !important;
    max-height: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  #programming {
    margin: 10px 0 0 0 !important;
    padding-top: 0 !important;
  }

  #programming .programming_block,
  #programming .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  #programming .projects_experience {
    margin-top: 0 !important;
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  #programming .programming_title {
    margin: 0 0 4px 0 !important;
    break-after: auto !important;
    page-break-after: auto !important;
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  #programming .projects_experience_title {
    margin: 0 0 4px 0 !important;
    break-after: auto !important;
    page-break-after: auto !important;
  }

  #programming .projects_experience_wrapper-item {
    break-inside: auto;
    page-break-inside: auto;
  }

  #programming .projects_experience_block {
    break-inside: auto !important;
    page-break-inside: auto !important;
  }
}
