@charset "UTF-8";
.modal_close {
  overflow: hidden;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
.layout {
  display: block;
  margin: auto;
  max-width: 375px;
  margin: auto;
}
@media only screen and (min-width: 750px) {
  .layout {
    position: relative;
    max-width: 750px;
    display: flex;
  }
}
@media only screen and (min-width: 1400px) {
  .layout {
    max-width: 1440px;
  }
}

.menu__block {
  display: none;
}
@media only screen and (min-width: 750px) {
  .menu__block {
    display: block;
    width: 175px;
  }
}
@media only screen and (min-width: 1400px) {
  .menu__block {
    width: 300px;
  }
}

@media only screen and (min-width: 750px) {
  .layout_block--main {
    flex-grow: 1;
    max-width: 100%;
  }
}

.hover_link:hover {
  color: #F04C0C;
  stroke: #F04C0C;
  fill: #F04C0C;
}

@media only screen and (min-width: 750px) {
  .bg_body_left {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #181818;
    z-index: -1;
  }
}

body {
  background: #030303;
  color: #FFFFFF;
}

.header__burger-menu-icon {
  stroke: #E3E3E3;
}

.header__phone-icon {
  margin-right: 5px;
}

.header__contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  stroke: #E3E3E3;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .header__contact-link {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1400px) {
  .header__contact-link {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.21;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  justify-items: baseline;
  padding: 31px 28px 0 28px;
}
@media only screen and (min-width: 750px) {
  .header {
    justify-content: end;
    padding: 45px 36px 0 36px;
  }
  .header .header__burger-menu {
    display: none;
  }
}
@media only screen and (min-width: 750px) and (min-width: 1400px) {
  .header {
    padding: 80px 70px 0 70px;
  }
}

.hero__section {
  padding-top: 24px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__section .hero_container {
  position: relative;
}
@media only screen and (min-width: 750px) {
  .hero__section {
    padding: 0;
    position: relative;
  }
}

@media only screen and (min-width: 750px) {
  .hero_img {
    display: none;
  }
}

.hero_svg--dev {
  width: 76px;
  height: 54px;
  position: absolute;
  left: -13px;
  top: -10px;
}
@media only screen and (min-width: 750px) {
  .hero_svg--dev {
    position: absolute;
    left: 84px;
    top: -28px;
    width: 94px;
    height: 65px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero_svg--dev {
    position: absolute;
    left: 138px;
    top: -42px;
    width: 134px;
    height: 94px;
  }
}

.hero_svg-circle {
  position: absolute;
  right: 0;
  top: 0;
  filter: blur(25px);
}
@media only screen and (min-width: 750px) {
  .hero_svg-circle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.d-inline-grid {
  display: inline-grid;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: sticky;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.menu__block {
  background: #181818;
  padding-top: 28px;
  padding-left: 32px;
  padding-right: 16px;
  padding-bottom: 28px;
}
@media only screen and (min-width: 1400px) {
  .menu__block {
    padding-top: 44px;
    padding-left: 70px;
    padding-right: 30px;
  }
}

.test-bg {
  background: #181818;
}

.menu_container--img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #D9D9D9;
  background-image: url("/src/img/img/My-foto-small.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}
@media only screen and (min-width: 1400px) {
  .menu_container--img {
    width: 200px;
    height: 200px;
    margin-bottom: 48px;
  }
}

.menu_navigation--list {
  margin-bottom: 88px;
}
.menu_navigation--list li:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 750px) {
  .menu_navigation--list li:not(:last-child) {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 1400px) {
  .menu_navigation--list li:not(:last-child) {
    margin-bottom: 24px;
  }
}
.menu_navigation--list li {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 2.44;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .menu_navigation--list li {
    stroke: #FFFFFF;
    cursor: pointer;
  }
  .menu_navigation--list li:hover {
    color: #F04C0C;
    stroke: #F04C0C;
  }
}
@media only screen and (min-width: 1400px) {
  .menu_navigation--list li {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.22;
  }
}

.social_link_list {
  margin-bottom: 60px;
}
.social_link_list .social_item:not(:last-child) {
  margin-bottom: 16px;
}

.social_item--link {
  stroke: #FFFFFF;
}
@media only screen and (min-width: 750px) {
  .social_item--link {
    cursor: pointer;
  }
  .social_item--link:hover {
    stroke: #F04C0C;
  }
}
.social_item--link svg {
  width: 24px;
  height: 24px;
}

.menu_block--name {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.21;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media only screen and (min-width: 1400px) {
  .menu_block--name {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.21;
  }
}

.menu_block--profession {
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.13;
  text-transform: uppercase;
  color: #F04C0C;
}
@media only screen and (min-width: 1400px) {
  .menu_block--profession {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.21;
  }
}

@media only screen and (min-width: 750px) {
  .svg-line {
    margin-right: 8px;
    height: 26px;
  }
}
@media only screen and (min-width: 1400px) {
  .svg-line {
    margin-right: 14px;
    height: 39px;
  }
}

.menu_navigation--list .page_item {
  position: relative;
  padding-left: 14px;
}
.menu_navigation--list .page_item ::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 6px;
  background-color: #FFFFFF;
}

.footer__bg {
  background: #E3E3E3;
}

.footer__block {
  margin: auto;
  text-align: center;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 375px) {
  .footer__block {
    max-width: 375px;
    padding: 24px 32px 24px 32px;
  }
}
@media only screen and (min-width: 750px) {
  .footer__block {
    max-width: 750px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer__block {
    max-width: 1440px;
    padding: 24px 70px 24px 70px;
  }
}

.navigation_block_footer {
  margin-bottom: 56px;
}
@media only screen and (min-width: 750px) {
  .navigation_block_footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
  }
}

.navigation_footer--list {
  margin-bottom: 56px;
}
.navigation_footer--list li:not(:last-child) {
  margin-bottom: 8px;
}
@media only screen and (min-width: 750px) {
  .navigation_footer--list {
    text-align: left;
    margin: 0;
  }
}
.navigation_footer--list li {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .navigation_footer--list li {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.63;
  }
}
@media only screen and (min-width: 1400px) {
  .navigation_footer--list li {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.22;
  }
}
.navigation_footer--list li:hover {
  color: #F04C0C;
}

.footer_link--phone {
  display: flex;
  justify-content: center;
  align-items: center;
  stroke: #000000;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.21;
  margin-bottom: 16px;
}
.footer_link--phone .footer_link--svg {
  margin-right: 12px;
}
@media only screen and (min-width: 750px) {
  .footer_link--phone {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
  }
}
@media only screen and (min-width: 750px) {
  .footer_link--phone {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
  }
}

.social_link_list--footer {
  stroke: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .social_link_list--footer {
    margin: 0;
    justify-content: right;
  }
}
.social_link_list--footer .social_item_link--footer svg {
  width: 24px;
  height: 24px;
}
.social_link_list--footer .social_item_link--footer:not(:last-child) {
  margin-right: 16px;
}

.footer_small--text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
}
@media only screen and (min-width: 750px) {
  .footer_small--text {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 1400px) {
  .footer_small--text {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.92;
  }
}

.about__section {
  position: relative;
  padding: 0 28px 0 28px;
  max-width: 375px;
  height: 320px;
  margin-bottom: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 375px) {
  .about__section {
    margin-bottom: 36px;
  }
}
@media only screen and (min-width: 750px) {
  .about__section {
    max-width: 750px;
    padding-top: 105px;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .about__section {
    max-width: 1440px;
    padding-top: 132px;
    margin-bottom: 0;
  }
}

.about_container {
  position: absolute;
  top: -30px;
}
@media only screen and (min-width: 750px) {
  .about_container {
    position: relative;
  }
}

@media only screen and (min-width: 750px) {
  .about_circle_top {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(65px);
    background: #E5E5E5;
    z-index: -1;
    position: absolute;
    right: -53px;
    top: -35px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_circle_top {
    width: 246px;
    height: 246px;
  }
}

@media only screen and (min-width: 750px) {
  .about_circle_botom {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(65px);
    background: #E5E5E5;
    z-index: -2;
    position: absolute;
    bottom: -44px;
    left: -14px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_circle_botom {
    width: 246px;
    height: 246px;
    position: absolute;
    bottom: -44px;
    left: -22px;
  }
}

.about_title--wrap {
  justify-content: center;
  border-radius: 18px;
  padding: 10px;
  background-color: #F04C0C;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 750px) {
  .about_title--wrap {
    border-radius: 26px;
    padding: 10px 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_title--wrap {
    border-radius: 36px;
    padding: 13px 20px;
  }
}

.about__title {
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 1.19;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .about__title {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.27;
  }
}
@media only screen and (min-width: 1400px) {
  .about__title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.22;
  }
}

.about_description--wrap {
  padding: 24px 16px 24px 16px;
  background-color: #181818;
  border-radius: 20px;
  border: 0.49px solid rgba(255, 255, 255, 0.5019607843);
  max-width: 320px;
}
@media only screen and (min-width: 750px) {
  .about_description--wrap {
    max-width: 430px;
    padding: 44px 36px 64px 36px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_description--wrap {
    max-width: 862px;
    padding: 65px 55px 104px 55px;
  }
}

.description--text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
}
@media only screen and (min-width: 750px) {
  .description--text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.29;
  }
}
@media only screen and (min-width: 1400px) {
  .description--text {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.21;
  }
}

.about_shadow {
  width: 275px;
  height: 250px;
  background: #181818;
  border-radius: 20px;
  border: 0.49px solid rgba(255, 255, 255, 0.5019607843);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: -1;
}
@media only screen and (min-width: 750px) {
  .about_shadow {
    width: 385px;
    border-radius: 30px;
    position: absolute;
    bottom: -15px;
    left: 50%;
  }
}
@media only screen and (min-width: 1400px) {
  .about_shadow {
    width: 742px;
    border-radius: 40px;
    position: absolute;
    bottom: -20px;
    left: 50%;
  }
}

.about_skill_shadow {
  width: 200px;
  height: 90px;
  border-radius: 10px;
  margin: auto;
  background: linear-gradient(90deg, #E7E5E5 0.04%, #878787 99.94%);
}
@media only screen and (min-width: 750px) {
  .about_skill_shadow {
    width: 300px;
    height: 122px;
    border-radius: 15px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_skill_shadow {
    width: 408px;
    height: 145px;
    border-radius: 20px;
  }
}

.about_soft_skill--wrap {
  position: absolute;
  left: 50%;
  top: -13px;
  transform: translate(-50%);
  display: block;
  width: 220px;
  padding: 8px 28px;
  border-radius: 10px;
  text-align: center;
  color: #000000;
  background: linear-gradient(89.43deg, rgb(252, 252, 252) 0.087%, rgb(167, 167, 167) 99.888%);
}
@media only screen and (min-width: 750px) {
  .about_soft_skill--wrap {
    width: 330px;
    padding: 12px 28px;
    position: absolute;
    left: 50%;
    top: -36px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_soft_skill--wrap {
    width: 450px;
    padding: 16px 60px;
    position: absolute;
    left: 50%;
    top: -50px;
  }
}
.about_soft_skill--wrap .about_soft_skill--title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.21;
  color: #F04C0C;
  text-transform: uppercase;
  margin-bottom: 4px;
}
@media only screen and (min-width: 750px) {
  .about_soft_skill--wrap .about_soft_skill--title {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.09;
    margin-bottom: 6px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_soft_skill--wrap .about_soft_skill--title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.93;
    margin-bottom: 8px;
  }
}
.about_soft_skill--wrap .soft_skill_item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: nowrap;
  text-transform: uppercase;
}
.about_soft_skill--wrap .soft_skill_item:not(:last-child) {
  margin-bottom: 2px;
}
@media only screen and (min-width: 750px) {
  .about_soft_skill--wrap .soft_skill_item {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.33;
  }
  .about_soft_skill--wrap .soft_skill_item:not(:last-child) {
    margin-bottom: 3px;
  }
}
@media only screen and (min-width: 1400px) {
  .about_soft_skill--wrap .soft_skill_item {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.19;
  }
  .about_soft_skill--wrap .soft_skill_item:not(:last-child) {
    margin-bottom: 4px;
  }
}
.about_soft_skill--wrap .skill_item--svg {
  width: 6px;
  height: 6px;
  margin-right: 4px;
}

.skill__section {
  padding: 0px 28px;
  margin-bottom: 36px;
}
@media only screen and (min-width: 750px) {
  .skill__section {
    padding-top: 86px;
  }
}
@media only screen and (min-width: 1400px) {
  .skill__section {
    padding-top: 192px;
  }
}

.skill__section--title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
  margin-bottom: 44px;
}
@media only screen and (min-width: 750px) {
  .skill__section--title {
    display: none;
  }
}

.skill_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  row-gap: 36px;
  column-gap: 9px;
}
@media only screen and (min-width: 750px) {
  .skill_list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 45px;
    column-gap: 10px;
  }
}
@media only screen and (min-width: 1400px) {
  .skill_list {
    row-gap: 68px;
    column-gap: 12px;
  }
}
.skill_list .skill_item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 12px;
  padding-top: 35px;
  padding-bottom: 12px;
}
@media only screen and (min-width: 375px) {
  .skill_list .skill_item {
    width: 155px;
  }
}
@media only screen and (min-width: 750px) {
  .skill_list .skill_item {
    width: 120px;
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1400px) {
  .skill_list .skill_item {
    width: 250px;
    padding-top: 52px;
    padding-bottom: 20px;
  }
}
.skill_list .skill_svg--wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -27px;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background: #E1E1E1;
}
@media only screen and (min-width: 750px) {
  .skill_list .skill_svg--wrap {
    width: 46px;
    height: 46px;
    position: absolute;
    top: -23px;
  }
}
@media only screen and (min-width: 1400px) {
  .skill_list .skill_svg--wrap {
    width: 86px;
    height: 86px;
    position: absolute;
    top: -43px;
  }
}
.skill_list .skill_svg {
  width: 30px;
  height: 30px;
  fill: #030303;
}
.skill_list .skill_svg.stroke {
  stroke: #030303;
}
@media only screen and (min-width: 750px) {
  .skill_list .skill_svg {
    width: 28px;
    height: 28px;
  }
}
@media only screen and (min-width: 1400px) {
  .skill_list .skill_svg {
    width: 45px;
    height: 50px;
  }
}
.skill_list .skill_name {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.21;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .skill_list .skill_name {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1400px) {
  .skill_list .skill_name {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
  }
}
.skill_list .skill_name--fs-s {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .skill_list .skill_name--fs-s {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.21;
  }
}
@media only screen and (min-width: 1400px) {
  .skill_list .skill_name--fs-s {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.22;
  }
}

.portfolio__section {
  position: relative;
  padding: 0 28px;
  margin-bottom: 36px;
}
@media only screen and (min-width: 750px) {
  .portfolio__section {
    padding-top: 46px;
    padding-bottom: 60px;
    margin-bottom: 28px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio__section {
    padding-top: 150px;
    padding-bottom: 80px;
    margin-bottom: 50px;
  }
}

.portfolio_svg-circle {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  filter: blur(65px);
  background: #E5E5E5;
  z-index: -1;
  position: absolute;
  left: -67px;
  top: -33px;
}
@media only screen and (min-width: 750px) {
  .portfolio_svg-circle {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translate(-50%);
    width: 550px;
    height: 64px;
    filter: blur(44px);
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_svg-circle {
    position: absolute;
    left: 50%;
    top: 180px;
    transform: translate(-50%);
    width: 1100px;
    height: 136px;
    filter: blur(98px);
  }
}

.portfolio_section--title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media only screen and (min-width: 750px) {
  .portfolio_section--title {
    display: none;
  }
}

.portfolio_svg--dev {
  width: 78px;
  height: 56px;
  transform: rotate(19deg);
}
@media only screen and (min-width: 375px) {
  .portfolio_svg--dev {
    position: absolute;
    right: 28px;
    top: -12px;
    transform: rotate(19deg);
  }
}
@media only screen and (min-width: 750px) {
  .portfolio_svg--dev {
    width: 98px;
    height: 76px;
    position: absolute;
    bottom: 0;
    right: 6px;
    top: auto;
    transform: rotate(34deg);
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_svg--dev {
    width: 134px;
    height: 94px;
  }
}

@media only screen and (min-width: 750px) {
  .portfolio_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 4px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_list {
    margin-bottom: 60px;
    gap: 9px;
  }
}

.portfolio_list--item {
  text-align: center;
  margin-bottom: 16px;
}
@media only screen and (min-width: 750px) {
  .portfolio_list--item {
    margin-bottom: 0;
  }
}
.portfolio_list--item .portfolio_item--img {
  width: 340px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 750px) {
  .portfolio_list--item .portfolio_item--img {
    width: 170px;
    height: 110px;
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_list--item .portfolio_item--img {
    width: 340px;
    height: 200px;
    margin-bottom: 16px;
  }
}
.portfolio_list--item .portfolio_item--title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.21;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .portfolio_list--item .portfolio_item--title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.22;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_list--item .portfolio_item--title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.22;
  }
}

.portfolio_btn--link {
  max-width: 146px;
  margin: auto;
  padding: 7px 33px;
  background: #F04C0C;
  border-radius: 20px;
  border: 3px solid #F04C0C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.19;
  text-transform: uppercase;
  cursor: pointer;
}
@media only screen and (min-width: 750px) {
  .portfolio_btn--link {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.32;
    max-width: 228px;
    padding: 10px 58px;
    border-radius: 32px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_btn--link {
    max-width: 308px;
    padding: 14px 75px;
    border-radius: 42px;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.22;
  }
}
.portfolio_btn--link:hover {
  background-color: #000000;
}

.contacts__section {
  position: relative;
  margin-bottom: 36px;
}
@media only screen and (min-width: 750px) {
  .contacts__section {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 86px;
  }
}
@media only screen and (min-width: 1400px) {
  .contacts__section {
    padding-left: 38px;
    padding-right: 38px;
    margin-bottom: 60px;
  }
}

.contacts_title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
@media only screen and (min-width: 750px) {
  .contacts_title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.31;
    text-align: start;
  }
}
@media only screen and (min-width: 1400px) {
  .contacts_title {
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.22;
    margin-bottom: 24px;
  }
}

.contacts_title--propos {
  max-width: 290px;
  margin: auto;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.22;
  margin-bottom: 24px;
}
@media only screen and (min-width: 750px) {
  .contacts_title--propos {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
    max-width: 100%;
    margin: 0;
    text-align: start;
    margin-bottom: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  .contacts_title--propos {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.21;
    margin-bottom: 80px;
  }
}

.contacts_list-item:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1400px) {
  .contacts_list-item:not(:last-child) {
    margin-bottom: 24px;
  }
}

.contacts_item_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 750px) {
  .contacts_item_link {
    justify-content: flex-start;
  }
}
.contacts_item_link .contacts_svg {
  width: 27px;
  height: 25px;
  stroke: #E5E5E5;
  margin-right: 8px;
}
@media only screen and (min-width: 750px) {
  .contacts_item_link .contacts_svg {
    width: 36px;
    height: 34px;
    margin-right: 12px;
  }
}
@media only screen and (min-width: 1400px) {
  .contacts_item_link .contacts_svg {
    width: 62px;
    height: 50px;
    margin-right: 24px;
  }
}
.contacts_item_link .contacts_title--item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.21;
  text-transform: uppercase;
}
@media only screen and (min-width: 750px) {
  .contacts_item_link .contacts_title--item {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.39;
  }
}
@media only screen and (min-width: 1400px) {
  .contacts_item_link .contacts_title--item {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
  }
}

@media only screen and (min-width: 750px) {
  .circle_show_contact {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    filter: blur(46px);
    background: #E5E5E5;
    z-index: -1;
    position: absolute;
    bottom: -28px;
    right: 42px;
  }
}
@media only screen and (min-width: 1400px) {
  .circle_show_contact {
    width: 146px;
    height: 146px;
    filter: blur(80px);
    position: absolute;
    bottom: 32px;
    right: 86px;
  }
}

.modal_window_backdrop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 162px 28px 28px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background: #030303;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s linear;
}

.mobile-hidden {
  visibility: hidden;
  opacity: 0;
}

.backdrop__close--btn {
  margin-bottom: 36px;
}

.modal_window_backdrop .menu_navigation--list {
  margin-bottom: 36px;
}
.modal_window_backdrop .menu_navigation--list li {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}
.modal_window_backdrop .menu_block--name {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.21;
}
.modal_window_backdrop .menu_block--profession {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.21;
}

.main-content {
  padding: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.post-content {
  padding: 1.5rem;
}

.post-title {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  line-height: 1.3;
}
.post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-title a:hover {
  color: #007cba;
}

.post-meta {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.post-excerpt {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #007cba;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.read-more:hover {
  background: #005a87;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.post-header {
  padding: 2rem;
  border-bottom: 1px solid #eee;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
  line-height: 1.8;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin: 2rem 0 1rem 0;
  color: #333;
}
.post-content p {
  margin-bottom: 1.5rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.post-content blockquote {
  border-left: 4px solid #007cba;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #666;
}

.post-footer {
  padding: 1rem 2rem;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}

.post-tags a {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem;
  background: #e9ecef;
  color: #495057;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.8rem;
}
.post-tags a:hover {
  background: #007cba;
  color: white;
}

.archive-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.archive-title {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #333;
}

.archive-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.post-navigation a {
  padding: 0.75rem 1.5rem;
  background: #007cba;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.post-navigation a:hover {
  background: #005a87;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
}
.pagination a, .pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination a:hover {
  background: #007cba;
  color: white;
  border-color: #007cba;
}
.pagination .current {
  background: #007cba;
  color: white;
  border-color: #007cba;
}

.no-posts {
  text-align: center;
  padding: 3rem;
}
.no-posts h2 {
  color: #333;
  margin-bottom: 1rem;
}
.no-posts p {
  color: #666;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .post-content {
    padding: 1rem;
  }
  .single-post .post-content {
    padding: 1.5rem;
  }
  .archive-title {
    font-size: 2rem;
  }
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  .post-navigation a {
    text-align: center;
  }
}
.portfolio_header {
  margin-bottom: 35px;
}

.page__portfolio--section {
  position: relative;
  padding: 24px 28px 0 28px;
  margin-bottom: 36px;
}
@media only screen and (min-width: 750px) {
  .page__portfolio--section {
    padding-bottom: 60px;
    margin-bottom: 28px;
  }
}
@media only screen and (min-width: 1400px) {
  .page__portfolio--section {
    padding-bottom: 80px;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 750px) {
  .portfolio_page-circle {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    filter: blur(64px);
    background: #E5E5E5;
    z-index: -1;
    position: absolute;
    right: 0;
    top: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_page-circle {
    position: absolute;
    right: 0;
    top: 160px;
    filter: blur(74px);
  }
}

.portfolio_page--title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media only screen and (min-width: 750px) {
  .portfolio_page--title {
    margin-bottom: 22px;
  }
}

.portfolio_card_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 10px;
  row-gap: 15px;
}
@media only screen and (min-width: 750px) {
  .portfolio_card_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio_card_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio_img_container {
  position: relative;
  overflow: hidden;
}
.portfolio_img_container:hover .backdrop_img {
  top: 0;
}

.backdrop_img {
  position: absolute;
  top: -100%; /* Початкове положення поза контейнером */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Напівпрозорий чорний колір */
  transition: top 0.3s ease; /* Плавна анімація */
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio_img--page {
  background: #030303;
}
@media only screen and (min-width: 375px) {
  .portfolio_img--page {
    width: 320px;
  }
}

.link_projects {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
  padding: 15px;
}

.card_wrap {
  padding: 15px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: 15px;
}
@media only screen and (min-width: 375px) {
  .card_wrap {
    width: 320px;
  }
}
@media only screen and (min-width: 750px) {
  .card_wrap {
    width: 255px;
  }
}
@media only screen and (min-width: 1400px) {
  .card_wrap {
    width: 350px;
  }
}

.wrap_description_card {
  padding-top: 15px;
}
.wrap_description_card .title_card {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1400px) {
  .wrap_description_card .title_card {
    margin-bottom: 18px;
  }
}

.text_description_card {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.38;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1400px) {
  .text_description_card {
    margin-bottom: 18px;
  }
}

.steak_technology_card {
  margin-top: auto;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.57;
  text-transform: uppercase;
  color: #F04C0C;
}

.section_page_err {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 28px 120px 28px;
}

.page_err--title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 1.14;
  padding-bottom: 8px;
  color: #F04C0C;
}

.page_err--subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 1.22;
}

.page_err_description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.13;
}
@media only screen and (min-width: 750px) {
  .page_err_description {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.1;
  }
}

.page_err_container {
  display: inline-block;
  text-align: center;
}

.err_wrap_description {
  padding: 15px;
  display: block;
  border-radius: 20px;
  border: 0.49px solid rgba(255, 255, 255, 0.5019607843);
  background: #181818;
  margin-top: 30px;
}
@media only screen and (min-width: 750px) {
  .err_wrap_description {
    padding: 100px;
  }
}