@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Inter:wght@400;700&family=Merriweather+Sans:wght@700&family=Merriweather:wght@700&family=Moon+Dance&family=Nunito+Sans:wght@300&family=Righteous&family=Roboto+Slab:wght@100;200;300;400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
h1,
h2 {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-weight: bold;
}
body {
  background-color: black;
}
p,
ul,
li,
a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
header {
  max-width: 1440px;
  width: 100%;
  height: 9rem;
  padding: 2rem;
  background: url(../portfolio/assets/img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center 0;
}
header.light-theme-cr {
  background: url(../portfolio/assets/img/bg-light.jpg);
}
.header-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}
.nav {
  width: 50rem;
  margin-left: auto;
}
.nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}
.nav-link {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 2rem;
  line-height: 5rem;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link:active {
  color: #bdae82;
}
.nav-link.light-theme-cr {
  color: #000000;
}
.nav-link.light-theme-cr:hover,
.nav-link.light-theme-cr:active {
  color: #ffffff;
}
.switch-lng {
  color: #ffffff;
  width: 7rem;
  font-size: 2rem;
  line-height: 5rem;
  margin-left: 3rem;
}
.switch-lng.light-theme-cr {
  color: #000000;
}
.btn {
  border: none;
  background-color: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: color 0.3s;
}
.btn__lng {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 5rem;
  margin: 0 0.25rem;
}
.btn__lng.light-theme-cr:hover,
.btn__lng.light-theme-cr:active {
  color: #ffffff;
}
.btn__lng:hover,
.btn__lng:active {
  color: #bdae82;
}
.btn__lng.active {
  color: #bdae82;
}
.btn__lng.light-theme-cr.active {
  color: #ffffff;
}
.logo {
  width: 5rem;
  height: 4rem;
  fill: #fff;
  transition: fill 0.3s;
}
.logo:hover {
  fill: #bdae82;
}
.logo.light-theme-cr {
  fill: #000000;
}
.logo.light-theme-cr:hover {
  fill: #ffffff;
}
.icon__theme {
  width: 4.5rem;
  height: 4.5rem;
  cursor: pointer;
  margin-left: 3.5rem;
  fill: #fff;
  transition: fill 0.3s;
}
.icon__theme:hover {
  fill: #bdae82;
}
.icon__theme.light-theme-cr {
  fill: #000000;
}
.icon__theme.light-theme-cr:hover {
  fill: #ffffff;
}
.hero {
  max-width: 1440px;
  width: 100%;
  height: 82rem;
  background: url(../portfolio/assets/img/bg.jpg);
  background-position: center -9rem;
  background-repeat: no-repeat;
  position: relative;
}
.hero.light-theme-cr {
  background: url(../portfolio/assets/img/bg-light.jpg);
  background-position: center -9rem;
}
.btn__rect {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 4rem;
}
.btn__gold {
  width: 22rem;
  height: 5.5rem;
  background-color: #bdae82;
  color: black;
  transition: all 0.5s;
}
.btn__gold:hover {
  color: #ffffff;
}
.btn__gold-price {
  width: 22rem;
  height: 5.5rem;
  background-color: #bdae82;
  color: black;
  transition: all 0.5s;
}
.btn__gold-price:hover {
  color: #ffffff;
}
.btn__gold.light-theme-cr {
  background-color: #ffffff;
  color: black;
  transition: all 0.5s;
}
.btn__gold.light-theme-cr:hover {
  background-color: black;
  color: #bdae82;
}
.btn__gold-price.light-theme-cr {
  background-color: #bdae82;
  color: black;
  transition: all 0.5s;
}
.btn__gold-price.light-theme-cr:hover {
  background-color: black;
  color: #ffffff;
}
.btn__dark {
  width: 22rem;
  height: 5.5rem;
  background-color: transparent;
  border: 0.1rem solid #bdae82;
  color: #bdae82;
  transition: all 0.5s;
}
.btn__dark:hover {
  color: #ffffff;
}
.btn__dark.active {
  background-color: #bdae82;
  color: black;
  border: none;
  transition: all 0.5s;
}
.btn__dark.active:hover {
  color: #ffffff;
}
.portfolio-btn {
  width: 22rem;
  height: 5.5rem;
  background-color: transparent;
  border: 0.1rem solid #bdae82;
  color: #bdae82;
  transition: all 0.5s;
}
.portfolio-btn.light-theme-cr {
  background-color: #bdae82;
  border: 0.1rem solid #bdae82;
  color: #000000;
  transition: all 0.5s;
}
.portfolio-btn:hover {
  color: #ffffff;
}
.portfolio-btn.light-theme-cr:hover {
  color: #ffffff;
}
.portfolio-btn.active {
  background-color: #bdae82;
  color: black;
  border: none;
}
.portfolio-btn.active:hover {
  color: #ffffff;
}
.portfolio-btn.light-theme-cr.active {
  background-color: black;
  color: #bdae82;
  border: 0.1rem solid #bdae82;
  transition: all 0.5s;
}
.portfolio-btn.light-theme-cr.active:hover {
  color: #ffffff;
}
.hero-container {
  position: absolute;
  left: 8rem;
  top: 16rem;
  width: 50rem;
  height: 33rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.hero__title {
  font-size: 60px;
  line-height: 120px;
  color: #ffffff;
  margin-bottom: -2rem;
}
.hero__text {
  width: 49rem;
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 4rem;
  color: #ffffff;
}
.hero__title.light-theme-cr {
  color: #000000;
}
.hero__text.light-theme-cr {
  color: #000000;
}
.skills {
  max-width: 1440px;
  width: 100%;
  min-height: 48.2rem;
  padding-top: 10rem;
  background-color: black;
}
.skills.light-theme-cr {
  background-color: #ffffff;
}
.wrapper-title {
  max-width: 50%;
  text-align: center;
  margin: 0 auto;
  overflow-x: hidden;
}
.section-title {
  font-size: 40px;
  line-height: 80px;
  color: #bdae82;
  display: inline-block;
  padding-bottom: 6rem;
}
.section-title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 40rem;
  height: 0.2rem;
  background-color: #bdae82;
  position: relative;
  margin-left: -100%;
  left: -2rem;
}
.section-title::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 40rem;
  height: 0.2rem;
  background-color: #bdae82;
  position: relative;
  margin-right: -100%;
  right: -2rem;
}
.section-title.light-theme-cr {
  color: #000000;
}
.section-title.light-theme-cr::before {
  background-color: #000000;
}
.section-title.light-theme-cr::after {
  background-color: #000000;
}
.skills-items {
  max-width: 1440px;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.skills-item {
  width: 32rem;
  height: 24rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.skill-item__img {
  margin: -2rem 0rem 5rem 0rem;
}
.skill-item__subtitle {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.skill-item__subtitle.light-theme-cr {
  color: #000000;
}
.skill-item__text {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.6rem;
  color: #ffffff;
  text-align: center;
}
.skill-item__text.light-theme-cr {
  color: #000000;
}
.portfolio {
  max-width: 1440px;
  width: 100%;
  min-height: 150rem;
  padding-top: 10rem;
  background-color: black;
}
.portfolio.light-theme-cr {
  background-color: #ffffff;
}
.portfolio-btns {
  max-width: 89.5rem;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 6rem;
}
.portfolio-items {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2.5rem 0rem;
}
.portfolio-img {
  max-width: 45rem;
  max-height: 56rem;
}
.video {
  max-width: 1440px;
  width: 100%;
  max-height: 94.5rem;
  height: 94.5rem;
  padding: 10rem 2rem 0 2rem;
  background-color: black;
}
.video.light-theme-cr {
  background-color: #ffffff;
}
.video-player {
  max-width: 1440px;
  width: 100%;
  padding: 0;
  max-height: 70.5rem;
  height: 70.5rem;
  background-image: url(./assets/img/video-player.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #bdae82;
}
.btn__home {
  position: absolute;
  top: calc(50% - 6.5rem);
  left: calc(50% - 6.5rem);
}
.video-player.hide-bg-img {
  background-image: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.video-screen {
  display: none;
  max-width: 1440px;
  width: 100%;
  padding: 0;
  max-height: 65rem;
  height: 100%;
  border: 1px solid #bdae82;
}
.video-screen__viewer {
  display: none;
  max-width: 1440px;
  width: 100%;
  padding: 0;
  max-height: 64.5rem;
  height: 100%;
}
.video-nav {
  max-width: 1440px;
  width: 100%;
  padding: 0 4rem;
  height: 6rem;
  border: 1px solid #bdae82;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: none;
}
.btn__controls-pp,
.btn__controls-vm {
  width: 3.6rem;
  height: 3rem;
  fill: #fff;
}
.btn__controls-pp.light-theme-cr,
.btn__controls-vm.light-theme-cr {
  width: 3.6rem;
  height: 3rem;
  fill: black;
}
.btn__controls-pp:hover,
.btn__controls-vm:hover {
  fill: #bdae82;
  transition: fill 0.4s;
}
.video-nav__progress {
  width: calc(80% - 7.2rem);
}
.video-nav__volume {
  width: calc(20% - 7.2rem);
  cursor: pointer;
}
.video-nav__progress {
  background: linear-gradient(
    to right,
    #bdae82 0%,
    #bdae82 0%,
    #c8c8c8 0%,
    #c8c8c8 100%
  );
  height: 1rem;
  outline: none;
  cursor: pointer;
  transition: background 450ms ease-in;
  -webkit-appearance: none;
}
.video-nav__volume {
  background: linear-gradient(
    to right,
    #bdae82 0%,
    #bdae82 60%,
    #c8c8c8 60%,
    #c8c8c8 100%
  );
  height: 1rem;
  outline: none;
  transition: background 450ms ease-in;
  -webkit-appearance: none;
}
.video-nav__progress::-webkit-slider-thumb,
.video-nav__volume::-webkit-slider-thumb {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  -webkit-appearance: none;
  background: #f4f4f4;
}
.video-nav__progress.light-theme-cr::-webkit-slider-thumb,
.video-nav__volume.light-theme-cr::-webkit-slider-thumb {
  background: #878787;
}
.play_hover {
  width: 13rem;
  fill: #fff;
  transition: fill 0.4s;
}
.play_hover.light-theme-cr {
  fill: black;
  transition: fill 0.4s;
}
.play_hover:hover {
  fill: #bdae82;
}
.price {
  max-width: 1440px;
  width: 100%;
  min-height: 84.5rem;
  padding: 10rem 2rem 10rem 2rem;
  background-color: black;
}
.price.light-theme-cr {
  background-color: #ffffff;
}
.price-items {
  max-width: 1440px;
  width: 100%;
  min-height: 50.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2.5rem 2.5rem;
}
.price-item {
  min-width: 45rem;
  min-height: 50.5rem;
  border: 0.3rem solid #bdae82;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.price-item__title,
.price-item__price {
  font-family: Merriweather;
  font-style: normal;
  font-weight: bold;
}
.price-item__title {
  font-size: 2.8rem;
  line-height: 5.6rem;
  color: #ffffff;
  padding-top: 4.3rem;
}
.price-item__title.light-theme-cr {
  color: #000000;
}
.price-item__price {
  font-size: 2.4rem;
  line-height: 4.8rem;
  color: #bdae82;
  padding: 2rem 0;
}
.price-item__price.light-theme-cr {
  color: #000000;
}
.price-item__text {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3.6rem;
  text-align: center;
  color: #ffffff;
  padding-bottom: 4rem;
}
.price-item__text.light-theme-cr {
  color: #000000;
}
.contacts {
  max-width: 1440px;
  width: 100%;
  min-height: 70rem;
  background-image: url(./assets/img/bg-contacts.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.contacts.light-theme-cr {
  background-image: url(./assets/img/bg-contacts-light.jpg);
}
.contacts-container {
  max-width: 45rem;
  width: 100%;
  min-height: 44.5rem;
  position: absolute;
  top: 6rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contacts-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contacts-form__el:nth-child(3) {
  margin-bottom: 3rem;
}
.section-title__contact {
  font-size: 40px;
  line-height: 80px;
  color: #bdae82;
}
.section-title__contact.light-theme-cr {
  color: black;
}
.contacts-form__el {
  width: 100%;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.55);
  border: 0.2rem solid #bdae82;
  padding: 0.3rem 2rem;
  margin-bottom: 2rem;
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 4rem;
  color: #bdae82;
}
.contacts-form__el.light-theme-cr {
  background: rgba(255, 255, 255, 0.55);
  color: black;
}
.contacts-form__el::placeholder {
  font-family: inherit;
  color: #bdae82;
}
.contacts-form__el.light-theme-cr::placeholder {
  font-family: inherit;
  color: black;
}
.contacts-form__el-textarea {
  resize: none;
  overflow: hidden;
  height: 10rem;
}
.footer {
  max-width: 1440px;
  width: 100%;
  height: 15rem;
  padding: 0 2rem;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.footer.light-theme-cr {
  background-color: #fff;
  color: black;
}
.footer-data {
  width: 18rem;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1.3rem;
}
.footer-links {
  width: 21.1rem;
  height: 5rem;
}
.footer-list {
  width: 18.8rem;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.footer-list__el {
  width: 3.2rem;
  height: 3.2rem;
  fill: #fff;
  transition: fill 0.3s;
}
.footer-list__el.light-theme-cr {
  fill: black;
}
.footer-list__el:hover {
  fill: #bdae82;
}
.footer-list__el.light-theme-cr:hover {
  fill: #bdae82;
}
.footer-text {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 5rem;
  color: #ffffff;
}
.footer-text.light-theme-cr {
  color: #000000;
}
.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link.light-theme-cr {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}
.footer-link:hover {
  color: #bdae82;
}
.footer-link.light-theme-cr:hover {
  color: #bdae82;
}
.hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    position: relative;
  }
  .header {
    max-width: 768px;
    width: 100%;
    height: 9rem;
    padding: 2rem 6rem;
    background: url(../portfolio/assets/img/bg-tablet.jpg);
    background-repeat: no-repeat;
    background-position: center 0;
  }
  .header.light-theme-cr {
    height: 9rem;
    background: url(../portfolio/assets/img/bg-tablet-light.jpg);
    background-repeat: no-repeat;
    background-position: center 0;
  }
  .header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
  }
  .nav {
    display: block;
    background-color: black;
    max-width: 62rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -62rem;
    z-index: 1;
  }
  .nav.light-theme-cr {
    background-color: #ffffff;
    height: 100vh;
  }
  .openMenu {
    animation-name: openMenu;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  @keyframes openMenu {
    from {
      right: -62rem;
    }
    to {
      right: 0;
    }
  }
  .closeMenu {
    animation-name: closeMenu;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  @keyframes closeMenu {
    from {
      right: 0;
    }
    to {
      right: -62rem;
    }
  }
  .nav-list {
    width: 15rem;
    height: 43rem;
    position: absolute;
    top: 13rem;
    right: 36rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
  }
  .nav-link {
    margin: 0 1.6rem;
    font-size: 3.5rem;
    line-height: 7.3rem;
  }
  .switch-lng {
    width: 10rem;
    margin-left: auto;
  }
  .btn__lng {
    margin: 0px 0.45rem;
  }
  .icon__theme {
    margin-right: 4rem;
    margin-left: 1rem;
  }
  .hamburger {
    display: block;
    width: 5rem;
    height: 5rem;
    fill: #fff;
    transition: fill 0.3s;
    z-index: 10;
    stroke: #fff;
    transition: fill 0.3s;
  }
  .hamburger:hover {
    fill: #bdae82;
    stroke: #bdae82;
  }
  .hamburger.light-theme-cr {
    fill: black;
    transition: fill 0.3s;
    z-index: 10;
    stroke: black;
    transition: fill 0.3s;
  }
  .hamburger.light-theme-cr:hover {
    fill: black;
    stroke: black;
  }
  .hero {
    max-width: 768px;
    width: 100%;
    height: 59rem;
    background: url(../portfolio/assets/img/bg-tablet.jpg);
    background-position: center -9rem;
    background-repeat: no-repeat;
    position: relative;
  }
  .hero.light-theme-cr {
    height: 59rem;
    background: url(../portfolio/assets/img/bg-tablet-light.jpg);
    background-position: center -9rem;
    background-repeat: no-repeat;
  }
  .hero-container {
    position: absolute;
    left: 6rem;
    top: 7.8rem;
    width: 39rem;
    height: 27rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .hero__title {
    font-size: 3.2rem;
    line-height: 6.4rem;
    margin-bottom: -4rem;
  }
  .hero__text {
    width: 39rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .skills {
    max-width: 768px;
    width: 100%;
    min-height: 72.9rem;
    padding-top: 0.8rem;
  }
  .wrapper-title {
    max-width: 50%;
    text-align: center;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .section-title {
    font-size: 3.2rem;
    line-height: 4rem;
    display: inline-block;
    padding-bottom: 6.8rem;
  }
  .section-title::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    max-width: 38rem;
    height: 0.2rem;
    background-color: #bdae82;
    position: relative;
    margin-left: -100%;
    left: -2rem;
  }
  .section-title::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    max-width: 38rem;
    height: 0.2rem;
    background-color: #bdae82;
    position: relative;
    margin-right: -100%;
    right: -2rem;
  }
  .skills-items {
    max-width: 768px;
    width: 100%;
    min-height: 5.2rem;
    padding: 0rem 4rem 2.7rem 4rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3.6rem 0rem;
  }
  .skills-item {
    width: 30rem;
    height: 22.4rem;
    padding: 0 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .skill-item__img {
    margin: 0rem 0rem 3rem 0rem;
  }
  .skill-item__subtitle {
    margin-bottom: 2rem;
  }
  .skill-item__text {
    line-height: 2.2rem;
  }
  .portfolio {
    max-width: 768px;
    width: 100%;
    height: 387rem;
    padding-top: 0.8rem;
  }
  .portfolio-btns {
    width: 44.5rem;
    height: 11.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 6rem;
  }
  .portfolio-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .video {
    max-width: 768px;
    width: 100%;
    max-height: 62.8rem;
    height: 62.8rem;
    padding: 0.8rem 0 0;
  }
  .video-player {
    max-width: 76.8rem;
    width: 100%;
    max-height: 40.8rem;
    height: 40.8rem;
    background-image: url(./assets/img/video-player-tablet.jpg);
    position: relative;
  }
  .play_hover {
    width: 6.5rem;
  }
  .btn__home {
    position: absolute;
    top: calc(50% - 6.5rem);
    left: calc(50% - 3.25rem);
  }
  .video-player.hide-bg-img {
    background-image: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  .video-screen {
    display: none;
    max-width: 768px;
    width: 100%;
    padding: 0;
    max-height: 35.6rem;
    height: 100%;
  }
  .video-screen__viewer {
    display: none;
    max-width: 768px;
    width: 100%;
    padding: 0;
    max-height: 35.6rem;
    height: 100%;
  }
  .video-nav {
    max-width: 768px;
    width: 100%;
    padding: 0 3rem;
    height: 5rem;
    border: 1px solid #bdae82;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
  }
  .btn__controls-pp,
  .btn__controls-vm {
    width: 3rem;
    height: 2.5rem;
    fill: #fff;
  }
  .btn__controls-pp.light-theme-cr,
  .btn__controls-vm.light-theme-cr {
    width: 3rem;
    height: 2.5rem;
    fill: black;
  }
  .video-nav__progress {
    width: calc(80% - 7.2rem);
  }
  .video-nav__volume {
    width: calc(20% - 7.2rem);
  }
  .price {
    max-width: 768px;
    width: 100%;
    height: 181.5rem;
    padding: 0.8rem 0 0 0;
  }
  .price-items {
    max-width: 768px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
  }
  .price-item {
    min-width: 42rem;
    min-height: 50.5rem;
  }
  .price-item__title {
    padding-top: 4.3rem;
  }
  .price-item__price {
    padding: 2rem 0;
  }
  .price-item__text {
    padding-bottom: 4rem;
  }
  .contacts {
    max-width: 768px;
    width: 100%;
    min-height: 60rem;
    background-image: url(./assets/img/bg-contacts-table.jpg);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .contacts-container {
    max-width: 45rem;
    min-width: 32rem;
    width: 100%;
    min-height: 43rem;
    position: static;
    justify-content: flex-start;
    margin-top: 4rem;
  }
  .contacts-form {
    align-items: center;
    margin-top: 4rem;
  }
  .section-title__contact {
    font-size: 3.2rem;
    line-height: 6.4rem;
    align-self: center;
  }
  .footer {
    max-width: 768px;
    width: 100%;
    height: 18rem;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-data {
    height: 3rem;
    padding-right: 0.5rem;
  }
  .footer-links {
    width: 21rem;
  }
  .footer-list {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .container {
    max-width: 576px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .header {
    max-width: 576px;
    width: 100%;
    height: 9rem;
    padding: 2rem 4rem;
  }
  .hero {
    max-width: 576px;
    width: 100%;
    height: 50rem;
    background-size: cover;
    position: relative;
  }
  .hero-container {
    position: absolute;
    left: 4rem;
    top: 5rem;
    width: 32rem;
    height: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .hero__title {
    margin-bottom: 1.5rem;
  }
  .hero__text {
    width: 28rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
  .skills {
    max-width: 576px;
    width: 100%;
    height: 116rem;
    padding-top: 0;
  }
  .wrapper-title {
    max-width: 100%;
  }
  .section-title::before {
    max-width: 28rem;
  }
  .section-title::after {
    max-width: 28rem;
  }
  .skills-items {
    max-width: 576px;
    width: 100%;
  }
  .portfolio {
    max-width: 576px;
    width: 100%;
    padding-top: 0;
    height: 286rem;
  }
  .portfolio-btns {
    max-width: 32rem;
    height: 24rem;
    justify-content: center;
  }
  .portfolio-items {
    padding: 0;
  }
  .portfolio-img {
    max-width: 45rem;
    width: 30rem;
    height: 37.5rem;
  }
  .video {
    max-width: 576px;
    width: 100%;
    padding: 0;
    max-height: 50rem;
    height: 50rem;
  }
  .video-player {
    max-width: 576px;
    width: 100%;
    max-height: 32.8rem;
    height: 32.8rem;
    background-size: cover;
    position: relative;
  }
  .btn__home {
    position: absolute;
    top: calc(50% - 8.5rem);
    left: calc(50% - 3.25rem);
  }
  .video-player.hide-bg-img {
    background-image: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  .video-screen {
    display: none;
    max-width: 576px;
    width: 100%;
    padding: 0;
    max-height: 26.6rem;
    height: 100%;
  }
  .video-screen__viewer {
    display: none;
    max-width: 576px;
    width: 100%;
    padding: 0;
    max-height: 26.6rem;
    height: 100%;
  }
  .video-nav {
    max-width: 768px;
    width: 100%;
    padding: 0;
    height: 6rem;
    border: 1px solid #bdae82;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: none;
    position: relative;
  }
  .btn__controls-pp,
  .btn__controls-vm {
    width: 3rem;
    height: 2.5rem;
    margin-left: 2.5rem;
    padding-top: 0.5rem;
    fill: #fff;
  }
  .btn__controls-pp.light-theme-cr,
  .btn__controls-vm.light-theme-cr {
    width: 3rem;
    height: 2.5rem;
    fill: black;
  }
  .video-nav__progress {
    height: 0.8rem;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .video-nav__volume {
    width: calc(20%);
    height: 0.8rem;
    margin-left: 2rem;
  }
  .price {
    max-width: 576px;
    width: 100%;
    height: 181.5rem;
  }
  .price-items {
    max-width: 576px;
    min-width: 320px;
  }
  .price-item {
    max-width: 32rem;
    min-width: 320px;
  }
  .contacts {
    max-width: 576px;
    width: 100%;
    min-height: 60rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contacts-container {
    position: static;
    margin-right: 2rem;
    max-width: 32rem;
    min-width: 30rem;
    min-height: 43rem;
    justify-content: center;
    align-items: center;
  }
  .section-title__contact {
    align-self: flex-start;
  }
  .contacts-form {
    align-items: flex-start;
  }
  .footer {
    max-width: 576px;
    width: 100%;
  }
  .nav {
    max-width: 576px;
    width: 100%;
    max-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .nav-list {
    width: 15rem;
    max-height: 43rem;
    position: static;
    margin-left: 4rem;
  }
}

@media screen and (min-width: 320px) and (max-width: 375px) {
  .container {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
  }
  .wrapper-title {
    max-width: 375px;
    width: 100%;
  }
  .header {
    max-width: 375px;
    width: 100%;
  }
  .hero {
    max-width: 375px;
    width: 100%;
  }
  .hero-container {
    max-width: 375px;
    width: 26rem;
  }
  .hero__text {
    width: 26rem;
  }
  .skills {
    max-width: 375px;
    width: 100%;
  }
  .skills-items {
    max-width: 375px;
    width: 100%;
  }
  .portfolio {
    max-width: 375px;
    width: 100%;
    height: 270rem;
  }
  .portfolio-items {
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .portfolio-btns {
    max-width: 32rem;
  }
  .portfolio-img {
    max-width: 30rem;
    width: 28rem;
    height: 35rem;
  }
  .video {
    max-width: 375px;
    width: 100%;
    max-height: 40rem;
    height: 40rem;
  }
  .video-player {
    max-width: 375px;
    width: 100%;
    max-height: 23.2rem;
    height: 23.2rem;
    background-size: cover;
    position: relative;
  }
  .video-screen {
    display: none;
    max-width: 375px;
    width: 100%;
    max-height: 17.2rem;
    height: 100%;
  }
  .video-screen__viewer {
    display: none;
    max-width: 375px;
    width: 100%;
    max-height: 17.2rem;
    height: 100%;
  }
  .video-nav {
    max-width: 375px;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: none;
    position: relative;
  }
  .price {
    max-width: 375px;
    width: 100%;
  }
  .price-items {
    max-width: 375px;
    min-width: 300px;
    width: 100%;
    justify-content: center;
  }
  .price-item {
    max-width: 280px;
    min-width: 260px;
    width: 100%;
  }
  .contacts {
    max-width: 375px;
  }
  .contacts-container {
    position: static;
    margin-right: 2rem;
    margin-left: 2rem;
    max-width: 37.5rem;
    width: 100%;
    min-width: 30rem;
  }
  .contacts-form {
    max-width: 26rem;
  }
  .footer {
    max-width: 320px;
    width: 100%;
  }
  .nav {
    max-width: 320px;
    width: 100%;
  }
}
