@import url("https://fonts.googleapis.com/css2?family=B612:ital,wght@0,400;0,700;1,400&family=Roboto:ital,wght@0,400;0,700;1,100&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

body {
  font-family: Roboto;
  font-size: 20px;
  line-height: 26px;
}

.preload * {
  animation: none !important;
}

.wrapper {
  background: linear-gradient(142.63deg, #DBB275 31.74%, rgba(219, 178, 117, 0) 109.69%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header {
  background: linear-gradient(142.63deg, #DBB275 100%, rgba(219, 178, 117, 0) 109.69%);
  max-height: 60px;
  position: fixed;
  width: 100%;
}
.header__left {
  flex: 0 1 33.333%;
}
.header__mid {
  flex: 0 1 33.333%;
}
.header__right {
  flex: 1 1 33.333%;
  justify-content: flex-end;
  gap: 10px;
}

.header > .container > .container__row {
  width: 100%;
  flex-wrap: nowrap;
}

header:hover {
  transition-duration: 300ms;
  box-shadow: 0 0 20px rgba(108, 32, 32, 0.15);
}

.container {
  display: flex;
  max-width: 1200px;
  flex: 1 1 auto;
  margin: 0px auto;
  justify-content: space-between;
}
.container__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.anchor {
  padding-top: 60px;
  margin-top: -60px;
}

.main {
  margin: 100px 0 0 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.annotation {
  display: flex;
}
.annotation__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.annotation__icon {
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.icon-animation {
  padding: 10px 10px;
}
.icon-animation_mouseover {
  animation: spinner-big 0.1s ease-out infinite 0s forwards, scale-big 3s linear 0s forwards;
}
.icon-animation_mouseout {
  animation: spinner-little 1s ease-out alternate 0s forwards;
}

/*
.icon-animation:hover{
  animation-name: spinner;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
*/
@keyframes spinner-big {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale-big {
  100% {
    transform: scale(7);
  }
}
@keyframes spinner-little {
  0% {
    transform: scale(7) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(-360deg);
  }
}
.title-text_prof {
  font-size: 32px;
  font-weight: 400;
}
.title-text_name {
  font-family: B612;
  font-size: 48px;
  font-weight: 700;
  color: #7D2121;
  line-height: 40px;
}

.small-text {
  font-size: 16px;
}

.navigation {
  display: flex;
  justify-content: space-between;
}
.navigation__column {
  max-width: 100px;
  display: flex;
  flex: 1 0 33.333%;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.navigation__column > a:hover {
  color: #7D2121;
  transition-duration: 100ms;
}

.contacts {
  display: flex;
  align-items: center;
}
.contacts__icon {
  max-width: 25px;
  max-height: 25px;
}
.contacts__icon_mini {
  max-width: 15px;
  max-height: 15px;
}
.contacts__icon:hover {
  animation: backlight 0.3s ease-out forwards;
}
.contacts__icon:active {
  animation: none;
}

@keyframes backlight {
  100% {
    transform: scale(1.15);
  }
}
.link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.link_git {
  order: 1;
}
.link_inst {
  order: 2;
}
.link_tg {
  order: 0;
}
.link_sc {
  order: 3;
}

.link:visited {
  color: purple;
}

.link:hover {
  color: blue;
  text-decoration: underline;
}

.about {
  display: flex;
  padding: 0 0 40px 0;
}
.about__photo {
  display: flex;
  flex: 0 0 45%;
  align-items: flex-end;
}
.about__content {
  display: flex;
  flex: 1 1 55%;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 7.5px;
}
.about__titleblack {
  padding: 20px 0 60px 0;
}
.about__titlered {
  padding: 0 0 60px 0;
}
.about__textbox {
  padding: 0 0 60px 0;
}
.about__button {
  display: flex;
  padding: 0 0 0 15%;
}

.about > .container > .container__row {
  margin: 0 -7.5px;
}

.photo {
  max-width: 335.65px;
  max-height: 448px;
  border: 1px solid #7D2121;
  box-shadow: -50px 40px 0px #7D2121;
  margin: 0 0 0 50px;
}

.press {
  color: white;
  background: #7D2121;
  min-width: 25%;
  min-height: 40px;
  border-radius: 2px;
  padding: 10px 40px;
  transition-duration: 300ms;
}

.press:hover {
  color: black;
  background: #9e1d1d;
  box-shadow: 3px 3px 3px #8d6f43;
}

.press:active {
  color: gray;
  background: #9e1d1d;
  box-shadow: none;
}

.skills {
  background: rgba(244, 230, 202, 0.8);
  flex: 1 1 auto;
  padding: 10px 0 70px 0;
}
.skills__column {
  flex: 1 1 25%;
  padding: 0 10px;
  min-width: 240px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition-duration: 500ms;
}
.skills__column_cicd {
  order: 0;
}
.skills__column_net {
  order: 3;
}
.skills__column_web {
  order: 2;
}
.skills__column_idea {
  order: 1;
}
.skills__column:hover {
  box-shadow: 0 0 20px rgba(108, 32, 32, 0.15);
}
.skills__icon {
  max-width: 75px;
  max-height: 75px;
  padding: 10px 0;
}
.skills__title {
  padding: 0 0 5px 0;
}
.skills > .container > .container__row {
  flex: 1 1 auto;
  margin: 0 -10px;
}

.contactme {
  background: rgba(244, 230, 202, 0.8);
  flex: 1 1 auto;
}
.contactme__title {
  display: flex;
  flex-direction: row;
  padding: 10px 0 50px 0;
}
.contactme__content {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
}
.contactme__column {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.contactme > .container {
  display: flex;
  flex-direction: column;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list__element {
  gap: 24px;
  display: flex;
  align-items: center;
  padding: 0 0 0 6%;
}

.img-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.img-container__img {
  max-width: 450px;
  max-height: 100%;
  margin: 80px 0 0 0;
}

.footer {
  max-height: 200px;
  background: #DCB376;
}
.footer__container {
  flex-direction: column;
}
.footer__left {
  flex: 0 1 50%;
}
.footer__left_mini {
  gap: 5px;
  padding: 0px 0px 10px 60px;
}
.footer__right {
  flex: 0 1 50%;
  gap: 15px;
  justify-content: flex-end;
  padding: 0 70px 0 0;
}
.footer__bot {
  display: flex;
  flex-direction: row;
}

@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }
  .container {
    max-width: 750px;
  }
  .header {
    margin: 0 0 20px 0;
  }
  .contacts__icon {
    max-width: 20px;
    max-height: 20px;
  }
  .about {
    padding: 0 0 20px 0;
  }
  .about__photo {
    flex: 0 0 55%;
  }
  .about__content {
    flex: 1 1 45%;
  }
  .about__titleblack {
    padding: 0px 0 20px 0;
    font-size: 26px;
  }
  .about__titlered {
    padding: 0 0 20px 0;
    font-size: 40px;
  }
  .about__textbox {
    padding: 0 0 20px 0;
  }
  .about__button {
    display: flex;
    padding: 0 0 0 15%;
  }
  .photo {
    box-shadow: -40px 20px 0px #7D2121;
    margin: 0 0 0 40px;
  }
  .footer__right {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: none;
  }
}