@import url("../css/fonts.css");
.btn__text {
  padding: 15px 40px;
  color: #000;
  border: 1px #FFEF29 solid;
  border-radius: 0px;
  text-transform: uppercase;
  font-family: Share, Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

@-webkit-keyframes scrolldown {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, -0.5rem);
    transform: translate(-50%, 0.5rem);
  }
}

@keyframes scrolldown {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, -0.5rem);
    transform: translate(-50%, 0.5rem);
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-height: 100vh;
  font-family: Share, Tahoma, sans-serif;
  font-size: 18px;
  background: #ffffff;
  color: #000;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: absolute;
  width: 100%;
  height: 60px;
  top: 20px;
  z-index: 2;
  overflow-x: hidden;
}
.header__wrapper {
  position: fixed;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 40px;
  background-color: rgba(255, 250, 173, 0.7647058824);
  backdrop-filter: blur(5px);
}
.header__wrapper_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__logo_title {
  text-align: left;
  padding-right: 50px;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  align-self: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.header__nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.header__nav_list-text {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
}
.header__nav_list-text:hover::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 25%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  width: 50%;
  background-color: #000;
}
.header__nav .header__nav_list ul {
  position: absolute;
  padding: 10px 0;
  margin: 10;
  background-color: rgba(255, 255, 255, 0.9294117647);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 25px rgba(44, 64, 88, 0.3058823529);
          box-shadow: 0px 0px 25px rgba(44, 64, 88, 0.3058823529);
  z-index: 20;
  min-width: 170px;
  top: 150%;
  left: -22px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 200ms cubic-bezier(0.43, 0.59, 0.16, 1.25);
  transition: all 200ms cubic-bezier(0.43, 0.59, 0.16, 1.25);
}
.header__nav .header__nav_list ul li {
  display: block;
  padding: 0 10px;
  line-height: 1.1;
}
.header__nav .header__nav_list ul li:last-child {
  margin-bottom: 0;
}
.header__nav .header__nav_list ul li a {
  display: block;
  color: #000;
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.header__nav .header__nav_list ul li a:hover {
  color: #313131;
  background: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}
.header__nav .header__nav_list ul ul {
  top: 0;
  left: 100%;
}
.header__nav_burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 30px;
  display: none;
  cursor: pointer;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.burger {
  display: none;
}
.burger__on {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0, 2s;
  transition: 0, 2s;
}
.burger__on::before {
  opacity: 0;
}
.burger__on::after {
  -webkit-transform: rotate(-90deg) translateX(-10px);
      -ms-transform: rotate(-90deg) translateX(-10px);
          transform: rotate(-90deg) translateX(-10px);
  top: 0px;
}
.burger__img {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  top: -3px;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: #000;
  vertical-align: middle;
}
.burger__img::after, .burger__img::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #000;
  top: 10px;
}
.burger__img::after {
  top: -10px;
}

.menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.3vw;
  padding: 10px 0;
  margin: 10;
  background-color: rgba(255, 255, 255, 0.9294117647);
  right: 0;
  top: 60px;
  min-width: 230px;
  -webkit-box-shadow: 0px 0px 25px rgba(44, 64, 88, 0.3058823529);
          box-shadow: 0px 0px 25px rgba(44, 64, 88, 0.3058823529);
  z-index: 2;
  gap: 0;
}
.menu__item {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #FFF9AD;
  list-style: none;
}
.menu__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 500;
}

.menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
}

.main {
  position: relative;
  margin: 0;
}

.intro {
  margin-top: 100px;
  margin-bottom: 50px;
}
.intro__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify-content;
      -ms-flex-pack: justify-content;
          justify-content: justify-content;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 70px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding-top: 50px;
}
.intro__photo {
  width: 45%;
  z-index: 1;
}
.intro__photo_img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify-content;
      -ms-flex-pack: justify-content;
          justify-content: justify-content;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  z-index: 0;
}
.intro__content_linie {
  width: 80px;
  height: 6px;
}

.about {
  margin-top: 100px;
  margin-bottom: 50px;
  width: 100%;
}
.about__background {
  position: relative;
  width: 100%;
  z-index: -1;
}
.about__background_photo {
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  padding-top: 40px;
  width: 100%;
}
.about__title {
  position: relative;
  text-align: center;
}
.about__title h2 {
  position: relative;
  left: 50%;
  top: -30%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 15px 30px;
  background-color: #FFEF29;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 150px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 120px 250px;
  z-index: 1;
}
.about__text {
  width: 80%;
}
.about__statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20%;
  text-align: center;
  scale: 0.9;
}
.about__statistic_item {
  position: relative;
  width: 170px;
  height: 170px;
  z-index: 0;
}
.about__statistic_item::before {
  position: absolute;
  content: url(../assets/images/basic/circle-skills.png);
  left: 50%;
  top: -12%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.static {
  margin-top: 100px;
  margin-bottom: 50px;
  width: 100%;
}
.static__title {
  position: relative;
  text-align: center;
}
.static__title h2 {
  position: relative;
  left: 50%;
  top: -70%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 15px 30px;
  background-color: #FFEF29;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.static__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 120px 250px;
  z-index: 1;
}
.static__text {
  width: 90%;
}
.static__text ul {
  list-style: inside;
}
.static__text p {
  color: #000;
}
.static__text p strong {
  color: #000;
}
.static__statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20%;
  text-align: center;
  scale: 0.9;
}
.static__statistic_item {
  position: relative;
  width: 170px;
  height: 170px;
  z-index: 0;
}
.static__statistic_item::before {
  position: absolute;
  content: url(../assets/images/basic/circle-skills.png);
  left: 50%;
  top: -12%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.statistic {
  width: 120px;
  padding-top: 20px;
}
.statistic__number {
  font-size: 53px;
  font-family: Share, Tahoma, sans-serif;
  font-weight: 500;
  line-height: 0.5;
}
.statistic__description {
  font-size: 20px;
  line-height: 1;
}

.skills {
  margin-bottom: 50px;
  width: 100%;
}
.skills__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #D9D9D9;
  padding: 100px 65px;
  -webkit-box-shadow: 20px 20px #FFEF29;
          box-shadow: 20px 20px #FFEF29;
  margin: 0 5%;
}
.skills__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 30%;
  z-index: 1;
}
.skills__item_list {
  line-height: 2;
}
.skills__item h4 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: left;
      align-self: left;
  z-index: 1;
}
.skills__item h4::before {
  position: absolute;
  content: "";
  bottom: 6%;
  left: -69%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  width: 120%;
  height: 15px;
  background-color: #FFEF29;
  z-index: -1;
}
.skills__text {
  list-style: inside;
  font-size: 20px;
}

.portfolio {
  width: 100%;
  padding-top: 100px;
}
.portfolio__title {
  position: relative;
  text-align: center;
}
.portfolio__title h2 {
  position: relative;
  left: 50%;
  top: -30%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 20px 40px;
  background-color: #FFEF29;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.portfolio__subtitle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 80px;
}
.portfolio__subtitle h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1;
  z-index: 1;
}
.portfolio__subtitle h3::before {
  position: absolute;
  content: "";
  bottom: -2%;
  left: -69%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  width: 120%;
  height: 15px;
  background-color: #FFEF29;
  z-index: -1;
}
.portfolio__container {
  width: 100%;
  border-top: 2px solid #FFEF29;
  background-color: #D9D9D9;
}
.portfolio__logo_item, .portfolio__web_item {
  position: relative;
}
.portfolio__logo_wrapper, .portfolio__web_wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: 100px 10%;
}
.portfolio__photo_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 130px;
}
.portfolio__photo_wrapper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 130px;
  text-align: right;
}
.portfolio__photo_title {
  font-size: 110px;
  color: #C0C0C0;
}
.portfolio__photo_gallery {
  padding-left: 15%;
}
.portfolio__photo_gallery-right {
  padding-right: 15%;
}
.portfolio__hobbys_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 130px;
}
.portfolio__hobbys_wrapper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 130px;
  text-align: right;
}
.portfolio__hobbys_title {
  font-size: 110px;
  color: #C0C0C0;
}
.portfolio__hobbys_gallery {
  padding-left: 15%;
}
.portfolio__hobbys_gallery-right {
  padding-right: 15%;
}

:last-child .portfolio__photo {
  margin-bottom: -500px;
  padding-bottom: 500px;
}

.logotype {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  background-color: #FAFAFA;
  width: 20%;
}
.logotype__photo {
  max-width: 170px;
  max-height: 170px;
}
.logotype__photo_img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.logotype__description {
  width: 100%;
  text-align: center;
}
.logotype__description_text {
  line-height: 1.2;
}

.stylelogo {
  max-width: 80%;
}
.stylelogo__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.parallax-container {
  position: relative;
  height: 750px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.websites-bg-height {
  height: 1000px;
}

.bg_pmt {
  background-image: url("../assets/images/img/bg-pmt.jpg");
}

.bg_clean {
  background-image: url("../assets/images/img/bg-cleaning.jpg");
}

.bg_maestra {
  background-image: url("../assets/images/img/bg-maestra.jpg");
}

.bg_dv {
  background-image: url("../assets/images/img/bg-dolce.jpg");
}

.bg_btk {
  background-image: url("../assets/images/img/bg-bkt.jpg");
}

.bg_petro {
  background-image: url("../assets/images/img/bg-petroins.jpg");
}

.bg_outpark {
  background-image: url("../assets/images/img/bg-outpark.jpg");
}

.bg_makovski {
  background-image: url("../assets/images/img/bg-makovsky.jpg");
}

.bg_masiv {
  background-image: url("../assets/images/img/bg-masiv.jpg");
}

.bg_anturaz {
  background-image: url("../assets/images/img/bg-anturaz.jpg");
}

.bg_vitamin {
  background-image: url("../assets/images/img/bg-vitamin.jpg");
}

.bg_wood {
  background-image: url("../assets/images/img/bg-wood.jpg");
}

.bg_ego {
  background-image: url("../assets/images/img/bg-ego.jpg");
}

.bg_adven {
  background-image: url("../assets/images/img/bg-trevel.jpg");
}

.websites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify-content;
      -ms-flex-pack: justify-content;
          justify-content: justify-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  background-color: #FAFAFA;
  width: 40%;
}
.websites__photo {
  max-width: 486px;
  max-height: 486px;
}
.websites__photo_img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.websites__description {
  width: 100%;
  text-align: center;
}
.websites__description_text {
  line-height: 1.2;
}
.websites__description_link {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #BBAD00;
  text-decoration: underline;
  line-height: 2.6;
}
.websites__description_link:hover {
  position: relative;
  content: "";
  text-decoration: none;
}
.websites__description_link::before {
  position: absolute;
  content: url("../assets/images/basic/link-icon.svg");
  width: 13px;
  height: 13px;
  left: -10%;
  top: -52%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.styleweb {
  max-width: 60%;
}
.styleweb__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery-photo__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-columns: 1fr 1fr;
  grid-auto-rows: 1fr 1fr;
  gap: 15px;
  width: 100%;
}
.gallery-photo__grid_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.content__photo {
  width: 220px;
}
.content__photo_img {
  height: 220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.content__photo_img:hover {
  position: relative;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.gallery-hobbys__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-columns: 1fr 1fr;
  grid-auto-rows: 1fr 1fr;
  gap: 15px;
  width: 100%;
}
.gallery-hobbys__grid_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.hobbys {
  position: relative;
  width: 100%;
  padding-top: 250px;
}
.hobbys__title {
  position: absolute;
  top: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.hobbys__title h2 {
  left: 50%;
  top: -30%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 15px 30px;
  background-color: #FFEF29;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hobbys__container {
  width: 100%;
  background-color: #6E6D6D;
  padding: 0 50px;
  margin-bottom: -350px;
  padding-bottom: 350px;
}
.hobbys__photo_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 130px;
}
.hobbys__photo_wrapper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 130px;
}
.hobbys__photo_title {
  font-size: 110px;
  color: #C0C0C0;
}
.hobbys__photo_gallery {
  padding-left: 15%;
}
.hobbys__photo_gallery-right {
  padding-right: 15%;
}

.content__hobbys {
  height: 260px;
}
.content__hobbys_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.content__hobbys_img:hover {
  position: relative;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.contact-item {
  font-size: 22px;
}
.contact-item .icon__city,
.contact-item .icon__mail,
.contact-item .icon__tel,
.contact-item .icon__socials {
  top: 24px;
}

.item-contact a {
  color: #000;
}
.item-contact a:hover {
  color: #000;
}

.social-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify-content;
      -ms-flex-pack: justify-content;
          justify-content: justify-content;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px 0;
}

.title-contact {
  font-size: 20px;
  font-family: Share, Tahoma, sans-serif;
  font-weight: 700;
  padding-bottom: 10px;
  text-transform: capitalize;
}

.text-link {
  text-decoration: underline;
  color: #313131;
}

.text-link-yelow {
  text-decoration: underline;
  color: #FFF9AD;
}

.footer {
  position: relative;
  width: 100%;
  padding-top: 230px;
}
.footer__title {
  position: absolute;
  top: -12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.footer__title h2 {
  left: 50%;
  top: -30%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 20px 40px;
  background-color: #FFEF29;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__wrapper {
  position: relative;
  width: 700px;
  background-color: #D9D9D9;
  -webkit-box-shadow: 20px 20px #FFEF29;
          box-shadow: 20px 20px #FFEF29;
  padding: 100px 100px 40px 100px;
  margin-bottom: 200px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 40%;
}
.footer__background {
  position: absolute;
  width: 40%;
  z-index: -1;
  right: 0%;
  bottom: 0%;
}
.footer__content_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contact__item_nav, .contact__item_text {
  line-height: 35px;
  font-family: Share, Tahoma, sans-serif;
  font-weight: 500;
}
.contact__item_nav:hover {
  color: #000;
}
.contact__item_text {
  padding-bottom: 50px;
}
.contact__item_text:hover a {
  color: #000;
}

.title_italic {
  font-family: Share, Tahoma, sans-serif;
  font-style: italic;
  color: #000;
}

.title-h1,
.h1 {
  font-size: 60px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.h2,
.title-h2 {
  position: relative;
  font-size: 30px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.h3,
.title-h3 {
  font-size: 28px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

h4,
.title-h4 {
  font-size: 26px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

h5,
.title-h5 {
  font-size: 26px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

h6,
.title-h6 {
  font-size: 20px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.title-white {
  color: #FAFAFA;
}

.subtitle,
.subtitle-contact {
  font-size: 22px;
  font-family: Share, Tahoma, sans-serif;
  color: #000;
  font-weight: 500;
  line-height: 1.4;
}

.subtitle-contact {
  font-weight: 700;
}

.small {
  font-size: 80%;
}

.text, .text-ul,
p {
  font-size: 18px;
  color: #000;
  margin: 0;
  line-height: 1.6;
  padding: 7px 0;
}

.bold {
  font-weight: 700;
  color: #FAFAFA;
}

.text {
  color: #FAFAFA;
  padding-bottom: 20px;
  text-align: justify;
  list-style: disc;
}

.text-bold {
  font-weight: 700;
}

.social,
.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.social__item,
.social-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 22px;
  height: 22px;
}
.social__item_icon,
.social-footer__item_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  fill: #000;
}
.social__item_icon:hover,
.social-footer__item_icon:hover {
  content: "";
  fill: #313131;
}

.social-footer {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-top: 20px;
}

.icon__city {
  position: relative;
}
.icon__city::before {
  position: absolute;
  content: url(../assets/images/basic/locate-icon.svg);
  top: -3px;
  left: -30px;
  height: 23px;
  width: 23px;
}
.icon__mail {
  position: relative;
}
.icon__mail::before {
  position: absolute;
  content: url(../assets/images/basic/mail-icon.svg);
  top: -3px;
  left: -30px;
  height: 23px;
  width: 23px;
}
.icon__tel {
  position: relative;
}
.icon__tel::before {
  position: absolute;
  content: url(../assets/images/basic/tel-icon.svg);
  top: -3px;
  left: -30px;
  height: 23px;
  width: 23px;
}
.icon__socials {
  position: relative;
}
.icon__socials::before {
  position: absolute;
  content: url(../assets/images/basic/social-icon.svg);
  top: -3px;
  left: -30px;
  height: 23px;
  width: 23px;
}
.icon__time, .icon__plan, .icon__retusch, .icon__photos, .icon__time_final, .icon__files, .icon__photograf_plus {
  position: relative;
}
.icon__time::before, .icon__plan::before, .icon__retusch::before, .icon__photos::before, .icon__time_final::before, .icon__files::before, .icon__photograf_plus::before {
  top: 50%;
  left: -40px;
  height: 30px;
  width: 30px;
}
.icon__time {
  position: relative;
}
.icon__time::before {
  position: absolute;
  content: url(../assets/images/basic/icons/time.svg);
}
.icon__plan {
  position: relative;
}
.icon__plan::before {
  position: absolute;
  content: url(../assets/images/basic/icons/plan.svg);
}
.icon__retusch {
  position: relative;
}
.icon__retusch::before {
  position: absolute;
  content: url(../assets/images/basic/icons/retusch.svg);
}
.icon__photos {
  position: relative;
}
.icon__photos::before {
  position: absolute;
  content: url(../assets/images/basic/icons/photos.svg);
}
.icon__time_final {
  position: relative;
}
.icon__time_final::before {
  position: absolute;
  content: url(../assets/images/basic/icons/time_final.svg);
}
.icon__files {
  position: relative;
}
.icon__files::before {
  position: absolute;
  content: url(../assets/images/basic/icons/files.svg);
}
.icon__photograf_plus {
  position: relative;
}
.icon__photograf_plus::before {
  position: absolute;
  content: url(../assets/images/basic/icons/photograf_plus.svg);
}

.icon-header {
  width: 22px;
  height: 22px;
}

.icon-footer {
  width: 31px;
  height: 31px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-revers {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.btn__text {
  position: relative;
  background-color: #ffffff;
}
.btn__text:hover {
  color: #313131;
  border-color: #FFF9AD;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px #000;
          box-shadow: 0px 0px 15px #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.imp_dat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.imp_dat_text {
  font-size: 90%;
}
.imp_dat_text:hover {
  color: #6E6D6D;
}

@media screen and (max-width: 1400px) {
  .about__wrapper {
    gap: 100px;
    padding: 100px 100px;
  }
}
@media screen and (max-width: 1200px) {
  .header__wrapper {
    gap: 5px;
    padding: 10px 20px;
  }
  .header__nav_list {
    gap: 20px;
  }
  .portfolio__logo_wrapper {
    padding: 50px 5%;
    gap: 30px;
  }
  .portfolio__web_wrapper {
    padding: 50px 5%;
    gap: 30px;
  }
  .parallax-container {
    height: 600px;
  }
  .logotype {
    width: 30%;
  }
  .stylelogo {
    max-width: 70%;
  }
  .websites {
    width: 30%;
  }
  .styleweb {
    max-width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .intro__content {
    width: 40%;
  }
  .intro__photo {
    width: 60%;
  }
  .title-h1 {
    font-size: 50px;
  }
  .subtitle {
    font-size: 22px;
  }
  .header__nav {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .header__nav_list {
    display: none;
  }
  .header__nav_burger {
    display: block;
  }
  .container,
  .container-slider,
  .container-wide {
    max-width: 95%;
  }
  .about__background_photo {
    width: 100%;
  }
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0px 30px;
    gap: 30px;
  }
  .about__statistic {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 80%;
    padding-top: 80px;
  }
  .about__photo {
    padding: 0;
  }
  .about__text {
    width: 90%;
  }
  .skills__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .skills__item {
    width: 45%;
  }
  .portfolio__logo_wrapper,
  .portfolio__web_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .logotype {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  .logotype__photo {
    max-width: 200px;
    max-height: 200px;
  }
  .stylelogo {
    max-width: 100%;
  }
  .parallax-container {
    height: 750px;
  }
  .websites-bg-height {
    height: 1000px;
  }
  .websites {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .styleweb {
    min-width: 100%;
    height: 500px;
    overflow: hidden;
  }
  .websites__photo {
    max-width: 300px;
    max-height: 300px;
  }
  .portfolio__photo_wrapper,
  .portfolio__photo_wrapper-right {
    padding-top: 80px;
  }
  .footer__background {
    width: 90%;
  }
  .footer__wrapper {
    width: 660px;
    padding: 100px 100px 60px 100px;
  }
  .content__photo {
    width: 120px;
  }
  .content__photo_img {
    height: 120px;
  }
  .hobbys {
    padding-top: 180px;
  }
  .hobbys__title {
    top: 7%;
  }
  .content__hobbys {
    height: 120px;
  }
  .portfolio__photo_title,
  .portfolio__hobbys_title {
    font-size: 80px;
  }
  .static__wrapper {
    padding: 40px 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .header__nav_burger {
    padding-right: 15px;
  }
  .intro__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
    gap: 40px;
  }
  .intro__content {
    width: 100%;
    gap: 20px;
  }
  .intro__photo {
    width: 90%;
  }
  .about__statistic {
    scale: 0.9;
    width: 95%;
  }
  .skills__wrapper {
    gap: 60px;
  }
  .portfolio {
    padding-top: 100px;
  }
  .parallax-container {
    height: 700px;
  }
  .websites-bg-height {
    height: 900px;
  }
  .portfolio__hobbys_wrapper,
  .portfolio__hobbys_wrapper-right {
    padding-top: 80px;
  }
  .hobbys__title {
    top: 8%;
  }
  .hobbys__title h2 {
    padding: 10px 20px;
  }
  .portfolio__photo_title,
  .portfolio__hobbys_title {
    font-size: 70px;
  }
  .gallery-photo__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .content__photo {
    width: 100px;
  }
  .content__photo_img {
    height: 100px;
  }
  .content__hobbys {
    height: 100px;
  }
  .title-h1,
  .h1 {
    font-size: 36px;
  }
  .h2,
  .title-h2,
  .title-left-h2 {
    position: relative;
    font-size: 28px;
  }
  .h3,
  .title-h3 {
    font-size: 26px;
  }
  h4,
  .title-h4 {
    font-size: 24px;
  }
  h5,
  .title-h5 {
    font-size: 22px;
  }
  .footer {
    padding-top: 160px;
  }
  .footer__content_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__wrapper {
    width: 400px;
    left: 45%;
  }
  .footer__title {
    top: -5%;
  }
  .static__wrapper {
    padding: 30px 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .static__title {
    scale: 90%;
  }
}
@media screen and (max-width: 576px) {
  .header__wrapper {
    padding: 10px 10px;
  }
  .header__logo a img {
    height: 100px;
    width: 200px;
  }
  .social {
    display: none;
  }
  .intro__photo {
    width: 100%;
  }
  .about__wrapper {
    padding: 0px 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__statistic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 50px;
  }
  .about__background_photo {
    height: 2260px;
  }
  .social-footer {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .skills__wrapper {
    padding: 30px 30px;
  }
  .skills__item {
    width: 100%;
  }
  .logotype,
  .websites {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .websites-bg-height {
    height: 1000px;
  }
  .portfolio__photo_wrapper,
  .portfolio__photo_wrapper-right,
  .portfolio__hobbys_wrapper,
  .portfolio__hobbys_wrapper-right {
    gap: 20px;
  }
  .portfolio__photo_title,
  .portfolio__hobbys_title {
    font-size: 50px;
    line-height: 1;
  }
  .portfolio__subtitle {
    padding-top: 50px;
  }
  .gallery-photo__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .content__photo {
    width: 100%;
  }
  .content__photo_img {
    height: 90px;
  }
  .gallery-hobbys__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content__hobbys {
    height: 90px;
  }
  .hobbys__container {
    margin-bottom: -500px;
    padding-bottom: 500px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .hobbys__title {
    top: 7%;
  }
  .portfolio__hobbys_gallery {
    padding-left: 10%;
  }
  .portfolio__hobbys_gallery-right {
    padding-right: 10%;
  }
  .footer {
    padding-top: 150px;
  }
  .footer__wrapper {
    width: 300px;
    padding: 80px 30px 30px 50px;
    margin-bottom: 100px;
  }
  .footer__content_item {
    gap: 0;
  }
  .footer__title {
    top: -7%;
  }
  .static__wrapper {
    padding: 20px 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .static__title {
    scale: 70%;
  }
  .contact__item_text {
    padding-bottom: 20px;
  }
}