@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat-Italic-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Gilroy";
  src: url(/fonts/gilroy-medium.ttf);
}
@font-face {
  font-family: "Moul";
  src: url(/fonts/Moul-Regular.ttf);
}
.main-menu.element-animation {
  opacity: 0;
  transform: translateX(20px);
}

.main-menu.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.main-page__slogan.element-animation {
  opacity: 0;
  transform: translateX(20px);
}

.main-page__slogan.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.main-page__contact.element-animation {
  opacity: 0;
  transform: translateX(20px);
}

.main-page__contact.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.work__photo.element-animation {
  opacity: 0;
  transform: translateX(20px);
}

.work__photo.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.work__text.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.work__text.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.Price-list-block h1.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.Price-list-block h1.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.price-name.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-name.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.price-value.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-value.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.price-tutorial__block.one.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-tutorial__block.one.element-animation.element-show {
  opacity: 1;
  transition: all 1.25s;
  transform: translateX(0%);
}

.price-tutorial__block.two.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-tutorial__block.two.element-animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateX(0%);
}

.price-tutorial__block.three.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-tutorial__block.three.element-animation.element-show {
  opacity: 1;
  transition: all 2.25s;
  transform: translateX(0%);
}

.price-tutorial__block.four.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-tutorial__block.four.element-animation.element-show {
  opacity: 1;
  transition: all 2.5s;
  transform: translateX(0%);
}

.price-tutorial__block.five.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-tutorial__block.five.element-animation.element-show {
  opacity: 1;
  transition: all 2.75s;
  transform: translateX(0%);
}

.price-tutorial__block.six.element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.price-tutorial__block.six.element-animation.element-show {
  opacity: 1;
  transition: all 3s;
  transform: translateX(0%);
}

.about-section__content-block:nth-child(1).element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.about-section__content-block:nth-child(1).element-animation.element-show {
  opacity: 1;
  transition: all 1s;
  transform: translateX(0%);
}

.about-section__content-block:nth-child(2).element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.about-section__content-block:nth-child(2).element-animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateX(0%);
}

.about-section__content-block:nth-child(3).element-animation {
  opacity: 0;
  transform: translateX(70px);
}

.about-section__content-block:nth-child(3).element-animation.element-show {
  opacity: 1;
  transition: all 2s;
  transform: translateX(0%);
}

::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(221, 48, 48, 0.3);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(221, 48, 48);
}

.ripple {
  width: 10px;
  height: 10px;
  background-color: transparent;
  position: fixed;
  border-radius: 50%;
  border: 1px solid #DD3030;
}

@keyframes ripple-effect {
  to {
    transform: scale(15);
    opacity: 0.01;
  }
}
* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

*::-moz-selection {
  background: #DD3030; /* Safari */
}

*::selection {
  background: #DD3030; /* Safari */
}

*::-moz-selection {
  background: #DD3030; /* Firefox */
}

body {
  background-color: #080808;
}

.container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

header {
  display: none;
  justify-content: flex-end;
}

.menu-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 80%);
  background-color: #DD3030;
  transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
  top: calc(50% - 5px);
}

.menu-btn span:nth-of-type(3) {
  top: calc(50% + 5px);
}

.menu-burger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #080808;
  transform: translateX(-100%);
  transition: transform 0.5s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-burger.active {
  transform: translateX(0);
}

.menu-burger ul {
  padding: 0;
  list-style: none;
  text-align: center;
}

.menu-burger li {
  list-style-type: none;
  margin-bottom: 35px;
}

.menu-burger .main-menu__link {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 1;
}

.menu-burger__brand {
  position: absolute;
  top: 50px;
  text-align: center;
  line-height: 1;
}

.menu-burger__kuzma {
  display: block;
  color: #DD3030;
  font-family: "Moul";
  font-size: 30px;
  letter-spacing: 2px;
  text-shadow: 0px 4px 12px rgba(255, 0, 0, 0.25);
}

.menu-burger__tattoo {
  display: block;
  color: #ffffff;
  font-family: "Moul";
  font-size: 30px;
  letter-spacing: -0.5px;
  text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.menu-burger__divider {
  width: 60px;
  height: 2px;
  background-color: #DD3030;
  box-shadow: 0px 0px 10px 0px #DD3030;
  margin: 12px auto 0;
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}

.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.main-menu {
  height: 80px;
  background-color: #080808;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-menu__link {
  position: relative;
  color: #FFFFFF;
  opacity: 80%;
  font-family: "Gilroy";
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.main-menu__link::after {
  position: absolute;
  background-color: #DD3030;
  box-shadow: 0px 0px 15px 0px #DD3030;
  display: flex;
  align-items: center;
  content: "";
  height: 3px; /* Высота линии */
  width: 0%;
  margin-top: 30px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.main-menu__link:hover:after, .main-menu__link:focus::after {
  width: 100%;
}
.main-menu__item {
  list-style: none;
  margin-right: 80px;
}

.white {
  color: #FFF;
  text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.25);
  font-family: "Moul";
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.2px;
  height: 160px;
}

.red {
  color: #DD3030;
  text-shadow: 0px 4px 12px rgba(255, 0, 0, 0.25);
  font-family: "Moul";
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.2px;
  height: 110px;
}

.cybe {
  font-size: 30px;
  color: #DD3030;
  text-shadow: 0px 4px 12px rgb(255, 0, 0);
  margin-right: 25px;
}

.main {
  width: 100%;
  height: 875px;
  background-image: url(../img/kuzma.png);
  background-size: cover;
  box-shadow: 0px 0px 100px 100px #080808;
}

.main-page {
  width: 100%;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-page__slogan {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}
.main-page__slogan h1 {
  color: #BFBFBF;
  font-family: "Gilroy";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.56px;
  margin-top: 10px;
}
.main-page__contact {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.main-page__contact span {
  margin: 20px 0 20px 0;
}
.main-page__contact a {
  margin: 5px 0 5px 0;
}
.main-page__contact img {
  width: 45px;
  height: 45px;
}
.main-page__contact img:hover {
  background-color: #DD3030;
  border-radius: 20px;
}

.AboutMe {
  width: 100%;
  height: 800px;
  position: relative;
}

.about-me {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-me img {
  width: 700px;
  height: 700px;
}

.about-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.about-section__container {
  max-width: 1500px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-section__content-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.about-section__content-block {
  position: absolute;
  top: 0px;
  left: 0px;
}
.about-section__content-block:nth-child(1) {
  top: 232px;
  left: -55px;
}
.about-section__content-block:nth-child(2) {
  top: 358px;
  left: 1019px;
}
.about-section__content-block:nth-child(3) {
  top: 590px;
  left: 277px;
}

.about-text__phone {
  display: none;
}

.about-text {
  position: absolute;
}
.about-text__first {
  top: 0px;
  left: 0px;
}
.about-text__first h3 {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Gilroy";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.6px;
  text-align: right;
  margin-right: -30px;
  margin-bottom: 5px;
}
.about-text__first p {
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  font-family: "Gilroy";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.4%; /* 21.984px */
  letter-spacing: 1.04px;
  width: 541px;
  margin-left: -30px;
}
.about-text__bottom h3 {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Gilroy";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.6px;
  margin-left: -30px;
  margin-bottom: 5px;
}
.about-text__bottom p {
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  font-family: "Gilroy";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.4%; /* 21.984px */
  letter-spacing: 1.04px;
  width: 541px;
  text-align: left;
}
.about-text__end h3 {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Gilroy";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.6px;
  margin-left: -30px;
  margin-bottom: 5px;
}
.about-text__end p {
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  font-family: "Gilroy";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 137.4%; /* 21.984px */
  letter-spacing: 1.04px;
  text-align: left;
  width: 551px;
}

.Works-page {
  background-color: #0F0F0F;
  padding-bottom: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
}

.work h2 {
  text-align: center;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Gilroy;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.56px;
}
.work h2::before {
  position: absolute;
  background-color: #DD3030;
  box-shadow: 0px 0px 15px 0px #DD3030;
  content: "";
  height: 3px; /* Высота линии */
  width: 90px;
  margin-top: -50px;
  margin-left: 35px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.work__list {
  display: flex;
  flex-wrap: wrap;
}
.work__list img {
  flex: 1;
  padding: 5px;
  width: 350px;
  height: 420px;
}

.Price-list {
  width: 100%;
  height: 1200px;
  background-color: #080808;
}

.price-main {
  display: flex;
}

.Price-list-block {
  display: flex;
  flex-direction: column;
}
.Price-list-block h2 {
  text-align: center;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Gilroy;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.56px;
  margin-bottom: 100px;
}
.Price-list-block h2::before {
  position: absolute;
  background-color: #DD3030;
  box-shadow: 0px 0px 15px 0px #DD3030;
  content: "";
  height: 3px; /* Высота линии */
  width: 90px;
  margin-top: -50px;
  margin-left: 15px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.price-per-hour {
  width: 50%;
  display: flex;
  justify-content: space-around;
}

.price-name p {
  color: #FFF;
  font-family: Gilroy;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.56px;
  margin-bottom: 50px;
}

.price-value p {
  color: rgba(255, 255, 255, 0.8);
  font-family: Gilroy;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.43px;
  margin-bottom: 62px;
  text-align: right;
}

.price-tutorial {
  width: 50%;
}
.price-tutorial h3 {
  color: #FFF;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.56px;
  margin-bottom: 10px;
}
.price-tutorial p {
  color: rgba(255, 255, 255, 0.8);
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.17px;
}
.price-tutorial__block {
  margin-bottom: 50px;
}

.section-location {
  background-color: #0F0F0F;
  width: 100%;
}

.location-text {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 20px;
}
.location-text h2 {
  color: #FFF;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.56px;
  margin-bottom: 20px;
}
.location-text h2::before {
  position: absolute;
  background-color: #DD3030;
  box-shadow: 0px 0px 15px 0px #DD3030;
  content: "";
  height: 3px; /* Высота линии */
  width: 200px;
  margin-top: -50px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz--transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.location-text p {
  color: #FFF;
  text-align: center;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.56px;
}

.footer-block {
  height: 120px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.about {
  display: flex;
  flex-direction: column;
}
.about a {
  color: #FFF;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.17px;
  text-decoration: none;
}
.about p {
  color: #FFF;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.17px;
  text-decoration: underline;
}

.icon__footer {
  justify-content: center;
}
.icon__footer img {
  width: 40px;
  height: 40px;
  margin-left: 20px;
}
.icon__footer img:hover {
  background-color: #DD3030;
  border-radius: 20px;
}

@media (min-width: 425px) and (max-width: 900px) {
  .container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
  header {
    height: 80px;
  }
  .main-menu {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-menu__link {
    position: relative;
    color: #FFFFFF;
    opacity: 80%;
    font-family: "Gilroy";
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
  }
  .main-menu__item {
    list-style: none;
    margin: 20px;
  }
  .white {
    color: #FFF;
    text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.25);
    font-family: "Moul";
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
  }
  .red {
    color: #DD3030;
    text-shadow: 0px 4px 12px rgba(255, 0, 0, 0.25);
    font-family: "Moul";
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.2px;
  }
  .cybe {
    font-size: 30px;
    color: #DD3030;
    text-shadow: 0px 4px 12px rgb(255, 0, 0);
    margin-right: 25px;
  }
  .main {
    width: 100%;
    height: 875px;
    background-image: url(../img/kuzma.png);
    background-size: cover;
    box-shadow: 0px 0px 100px 100px #080808;
  }
  .main-page {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .main-page__slogan {
    display: flex;
    text-align: left;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .main-page__slogan h1 {
    color: #BFBFBF;
    font-family: "Gilroy";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.56px;
    margin-top: 10px;
  }
  .main-page__contact {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin-left: 155px;
  }
  .main-page__contact span {
    margin: 20px;
    align-items: center;
  }
  .main-page__contact a {
    margin: 20px;
    align-items: center;
  }
  .about-section {
    display: none;
  }
  .about-text__phone {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .about-text__phone h3 {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Gilroy";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.6px;
    text-align: center;
    margin-bottom: 5px;
  }
  .about-text__phone p {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Gilroy";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.4%; /* 21.984px */
    letter-spacing: 1.04px;
    text-align: center;
    margin-bottom: 20px;
  }
  .work h2 {
    text-align: center;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.56px;
  }
  .work h2::before {
    position: absolute;
    background-color: #DD3030;
    box-shadow: 0px 0px 15px 0px #DD3030;
    content: "";
    height: 3px; /* Высота линии */
    width: 90px;
    margin-top: -50px;
    margin-left: 35px;
    -webkit-transition: width 0.3s ease-in-out;
    -moz--transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }
  .work__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .work__list img {
    width: 500px;
    height: 595px;
  }
  .Price-list {
    width: 100%;
    height: 1400px;
    background-color: #080808;
  }
  .price-main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .price-per-hour {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .price-name p {
    color: #FFF;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.56px;
    margin-bottom: 50px;
  }
  .price-value p {
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.43px;
    margin-bottom: 68px;
    text-align: right;
  }
  .price-tutorial {
    width: 100%;
    flex-wrap: wrap;
  }
  .price-tutorial h3 {
    color: #FFF;
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.56px;
    margin-bottom: 10px;
  }
  .price-tutorial p {
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.17px;
  }
  .price-tutorial__block {
    margin-bottom: 50px;
  }
  .icon__footer img {
    width: 30px;
    height: 30px;
    margin-left: 20px;
  }
}
@media (min-width: 200px) and (max-width: 426px) {
  .container {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .menu-btn {
    display: flex;
  }
  header {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    padding: 15px;
  }
  .main-menu {
    display: none;
  }
  .white {
    color: #FFF;
    text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.25);
    font-family: "Moul";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
    height: 100px;
  }
  .red {
    color: #DD3030;
    text-shadow: 0px 4px 12px rgba(255, 0, 0, 0.25);
    font-family: "Moul";
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.2px;
    height: 70px;
  }
  .cybe {
    font-size: 30px;
    color: #DD3030;
    text-shadow: 0px 4px 12px rgb(255, 0, 0);
    margin-right: 25px;
  }
  .main {
    width: 100%;
    height: 875px;
    background-image: url(../img/kuzma.png);
    background-size: cover;
    box-shadow: 0px 0px 100px 100px #080808;
  }
  .main-page {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .main-page__slogan {
    display: flex;
    text-align: left;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .main-page__slogan h1 {
    color: #BFBFBF;
    font-family: "Gilroy";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.56px;
    margin-top: 10px;
  }
  .main-page__contact {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin-left: 20px;
  }
  .main-page__contact span {
    margin: 10px;
    align-items: center;
  }
  .main-page__contact a {
    margin: 10px;
    align-items: center;
  }
  .about-section {
    display: none;
  }
  .about-text__phone {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .about-text__phone h3 {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Gilroy";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.6px;
    text-align: center;
    margin-bottom: 5px;
  }
  .about-text__phone p {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Gilroy";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.4%; /* 21.984px */
    letter-spacing: 1.04px;
    text-align: center;
    margin-bottom: 20px;
  }
  .work h2 {
    text-align: center;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.56px;
  }
  .work h2::before {
    position: absolute;
    background-color: #DD3030;
    box-shadow: 0px 0px 15px 0px #DD3030;
    content: "";
    height: 3px; /* Высота линии */
    width: 90px;
    margin-top: -50px;
    margin-left: 35px;
    -webkit-transition: width 0.3s ease-in-out;
    -moz--transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }
  .work__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .work__list img {
    width: 350px;
    height: 345px;
  }
  .Price-list {
    width: 100%;
    height: 2300px;
    background-color: #080808;
  }
  .price-main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .price-per-hour {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .price-name p {
    color: #FFF;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.56px;
    margin-bottom: 50px;
  }
  .price-name .price-value p {
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.43px;
    margin-bottom: 68px;
    text-align: right;
  }
  .price-tutorial {
    width: 100%;
    flex-wrap: wrap;
  }
  .price-tutorial h3 {
    color: #FFF;
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.56px;
    margin-bottom: 10px;
  }
  .price-tutorial p {
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.17px;
  }
  .price-tutorial__block {
    margin-bottom: 50px;
  }
  .icon__footer img {
    width: 30px;
    height: 30px;
    margin-left: 20px;
  }
}
@media (min-width: 900px) and (max-width: 1600px) {
  .container {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
  }
  header {
    height: 80px;
  }
  .main-menu {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-menu__link {
    position: relative;
    color: #FFFFFF;
    opacity: 80%;
    font-family: "Gilroy";
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
  }
  .main-menu__item {
    list-style: none;
    margin: 20px;
  }
  .white {
    color: #FFF;
    text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.25);
    font-family: "Moul";
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
  }
  .red {
    color: #DD3030;
    text-shadow: 0px 4px 12px rgba(255, 0, 0, 0.25);
    font-family: "Moul";
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.2px;
  }
  .cybe {
    font-size: 30px;
    color: #DD3030;
    text-shadow: 0px 4px 12px rgb(255, 0, 0);
    margin-right: 25px;
  }
  .main {
    width: 100%;
    height: 875px;
    background-image: url(../img/kuzma.png);
    background-size: cover;
    box-shadow: 0px 0px 100px 100px #080808;
  }
  .main-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .main-page__slogan {
    display: flex;
    text-align: left;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .main-page__slogan h1 {
    color: #BFBFBF;
    font-family: "Gilroy";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.56px;
    margin-top: 10px;
  }
  .main-page__contact {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  .main-page__contact span {
    margin: 20px;
    align-items: center;
  }
  .main-page__contact a {
    margin: 20px;
    align-items: center;
  }
  .about-section {
    display: none;
  }
  .about-text__phone {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .about-text__phone h3 {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Gilroy";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.6px;
    text-align: center;
    margin-bottom: 5px;
  }
  .about-text__phone p {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Gilroy";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.4%; /* 21.984px */
    letter-spacing: 1.04px;
    text-align: center;
    margin-bottom: 20px;
  }
  .work {
    width: 900px;
    justify-content: center;
    margin: 0 auto;
  }
  .work h2 {
    text-align: center;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.56px;
  }
  .work h2::before {
    position: absolute;
    background-color: #DD3030;
    box-shadow: 0px 0px 15px 0px #DD3030;
    content: "";
    height: 3px; /* Высота линии */
    width: 90px;
    margin-top: -50px;
    margin-left: 35px;
    -webkit-transition: width 0.3s ease-in-out;
    -moz--transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }
  .work__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .work__list img {
    width: 200px;
    height: 295px;
  }
  .Price-list {
    width: 100%;
    height: 1400px;
    background-color: #080808;
  }
  .price-main {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .price-per-hour {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .price-name p {
    color: #FFF;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.56px;
    margin-bottom: 50px;
  }
  .price-value p {
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.43px;
    margin-bottom: 68px;
    text-align: right;
  }
  .price-tutorial {
    width: 100%;
    flex-wrap: wrap;
  }
  .price-tutorial h3 {
    color: #FFF;
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.56px;
    margin-bottom: 10px;
  }
  .price-tutorial p {
    color: rgba(255, 255, 255, 0.8);
    font-family: Gilroy;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.17px;
  }
  .price-tutorial__block {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=style.css.map */