html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}
body.light-theme {
  background-color: #ffffff;
  color: #000000;
}
body.light-theme .header-container {
  background: url("../assets/img/hero-bg-light.jpg") no-repeat left 0;
}
@media (min-width: 1441px) {
  body.light-theme .header-container {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat center 0;
  }
}
@media (max-width: 992px) {
  body.light-theme .header-container {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat left 0;
  }
}
@media (max-width: 680px) {
  body.light-theme .header-container {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat center 0;
  }
}
body.light-theme .logo {
  filter: invert(100%);
}
body.light-theme .logo:hover {
  filter: none;
}
@media (max-width: 992px) {
  body.light-theme .header-nav {
    display: none;
  }
  body.light-theme .header-nav.adaptive-nav {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
  }
  body.light-theme .header-nav.adaptive-nav .header-nav__list {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background: #BDAE82;
  }
  body.light-theme .header-nav .header-nav__item {
    margin-right: 0;
  }
}
body.light-theme .header-nav__link {
  color: #000000;
}
body.light-theme .header-nav__link:hover {
  color: #ffffff;
}
body.light-theme .language {
  color: #000000;
}
body.light-theme .language span {
  cursor: pointer;
}
body.light-theme .language span:hover {
  color: #ffffff;
}
body.light-theme .language-active {
  color: #ffffff;
}
body.light-theme .hero-section {
  background: url("../assets/img/hero-bg-light.jpg") no-repeat left -90px;
}
@media (min-width: 1441px) {
  body.light-theme .hero-section {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat center -90px;
  }
}
@media (max-width: 992px) {
  body.light-theme .hero-section {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat left -100px;
  }
}
@media (max-width: 680px) {
  body.light-theme .hero-section {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat center -100px;
  }
}
@media (max-width: 425px) {
  body.light-theme .hero-section {
    background: url("../assets/img/hero-bg-light.jpg") no-repeat center -170px;
  }
}
body.light-theme .hero-section .btn {
  background: #ffffff;
  color: #000000;
}
body.light-theme .hero-section .btn:hover {
  background-color: #000000;
  color: #BDAE82;
}
body.light-theme .title-wrap {
  background-image: linear-gradient(to top, #ffffff 39px, #000000 39px, #000000 41px, #ffffff 41px);
}
body.light-theme .section-title {
  background-color: #ffffff;
  color: #000000;
}
body.light-theme .btn-fill {
  background: #000000;
  color: #BDAE82;
}
body.light-theme .btn-fill:hover {
  color: #ffffff;
}
body.light-theme .btn-outline {
  background: #BDAE82;
  color: #000000;
}
body.light-theme .btn-outline:hover {
  color: #ffffff;
}
body.light-theme .contacts-section {
  background: url("../assets/img/contacts-bg-light.jpg") no-repeat center/cover;
}
body.light-theme .contacts-section button[type=submit] {
  background: #ffffff;
  color: #000000;
}
body.light-theme .contacts-section button[type=submit]:hover {
  background-color: #000000;
  color: #BDAE82;
}
body.light-theme .contacts-title {
  background: transparent;
}
body.light-theme .contacts-input {
  color: #000000;
  background: rgba(255, 255, 255, 0.5);
}
body.light-theme .contacts-input:focus {
  background: rgba(255, 255, 255, 0.5);
  outline: 2px solid #BDAE82;
}
body.light-theme .contacts-input:not(:-moz-placeholder-shown) {
  background: rgba(255, 255, 255, 0.5);
  outline: 2px solid #BDAE82;
}
body.light-theme .contacts-input:not(:-ms-input-placeholder) {
  background: rgba(255, 255, 255, 0.5);
  outline: 2px solid #BDAE82;
}
body.light-theme .contacts-input:not(:placeholder-shown) {
  background: rgba(255, 255, 255, 0.5);
  outline: 2px solid #BDAE82;
}
body.light-theme .contacts-input::-moz-placeholder {
  color: #000000;
}
body.light-theme .contacts-input:-ms-input-placeholder {
  color: #000000;
}
body.light-theme .contacts-input::placeholder {
  color: #000000;
}
body.light-theme .footer-container a {
  text-decoration: none;
  color: #000000;
}
body.light-theme .footer-container a:hover {
  color: #BDAE82;
}
body.light-theme .socials-list__link {
  filter: invert(100%);
}
body.light-theme .socials-list__link:hover {
  filter: invert(29%) sepia(39%) saturate(251%) hue-rotate(7deg) brightness(90%) contrast(93%);
}

.theme {
  display: block;
  width: 40px;
  height: 40px;
  background: transparent url(../assets/svg/btn-light.svg) no-repeat center/contain;
  border: none;
  margin-left: 35px;
  cursor: pointer;
  flex-shrink: 0;
}
.theme:hover {
  filter: brightness(1000%);
}
@media (max-width: 425px) {
  .theme {
    margin-left: auto;
    order: 2;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-container {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url("../assets/img/hero-bg.jpg") no-repeat left 0;
}
@media (min-width: 1441px) {
  .header-container {
    background: url("../assets/img/hero-bg.jpg") no-repeat center 0;
  }
}
@media (max-width: 992px) {
  .header-container {
    padding: 25px 60px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 52.08%, rgba(0, 0, 0, 0) 100%), url("../assets/img/hero-bg.jpg") no-repeat left 0;
    background-size: 133%;
  }
}
@media (max-width: 680px) {
  .header-container {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 52.08%, rgba(0, 0, 0, 0) 100%), url("../assets/img/hero-bg.jpg") no-repeat center 0;
    background-size: auto;
    padding: 25px 40px;
  }
}
@media (max-width: 425px) {
  .header-container {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo:hover {
  filter: invert(29%) sepia(39%) saturate(251%) hue-rotate(7deg) brightness(90%) contrast(93%);
}

.header-nav {
  margin-left: auto;
}
.header-nav__list {
  display: flex;
  list-style: none;
  padding: 0 30px;
  margin: 0;
}
.header-nav__item:not(:last-child) {
  margin-right: 30px;
}
.header-nav__link {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 50px;
  text-decoration: none;
  color: #ffffff;
}
.header-nav__link:hover {
  color: #BDAE82;
}
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
  .header-nav.adaptive-nav {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
  }
  .header-nav.adaptive-nav .header-nav__list {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background: #000000;
  }
  .header-nav.adaptive-nav .header-nav__item {
    margin-right: 0;
  }
}

.language {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 50px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .language {
    margin-left: auto;
    margin-right: 30px;
  }
}
.language span {
  cursor: pointer;
}
.language span:hover {
  color: #BDAE82;
}
.language .english {
  margin-right: 10px;
}
.language .russian {
  margin-left: 10px;
}
.language-active {
  color: #BDAE82;
}
@media (max-width: 425px) {
  .language {
    width: 100%;
    order: 4;
    margin-right: 0;
    text-align: right;
  }
}

.menu-close {
  display: none;
  z-index: 1000;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  width: 50px;
  height: 50px;
  background: transparent url("../assets/svg/close.svg") no-repeat center/contain;
  cursor: pointer;
  border: none;
}

.menu-open {
  display: none;
  border: none;
  width: 50px;
  height: 50px;
  background: transparent url("../assets/svg/menu-btn.svg") no-repeat center/contain;
  cursor: pointer;
  border: none;
}
@media (max-width: 992px) {
  .menu-open {
    display: block;
  }
}
@media (max-width: 425px) {
  .menu-open {
    order: 3;
  }
}

.section {
  padding-top: 100px;
}
@media (max-width: 992px) {
  .section {
    padding-top: 80px;
  }
}

.hero-section {
  background: url("../assets/img/hero-bg.jpg") no-repeat left -90px;
  padding: 160px 80px 280px;
}
@media (min-width: 1441px) {
  .hero-section {
    background: url("../assets/img/hero-bg.jpg") no-repeat center -90px;
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .hero-section {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 52.08%, rgba(0, 0, 0, 0) 100%), url("../assets/img/hero-bg.jpg") no-repeat left -100px;
    background-size: 133%;
    padding: 78px 60px 152px;
  }
}
@media (max-width: 680px) {
  .hero-section {
    padding: 8px 25px 240px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 52.08%, rgba(0, 0, 0, 0) 100%), url("../assets/img/hero-bg.jpg") no-repeat center -100px;
    background-size: auto;
  }
}
@media (max-width: 425px) {
  .hero-section {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 52.08%, rgba(0, 0, 0, 0) 100%), url(../assets/img/hero-bg.jpg) no-repeat center -170px;
  }
}

.hero-title {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 120px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 32px;
    line-height: 64px;
    margin-bottom: 20px;
  }
}

.hero-description {
  max-width: 470px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .hero-description {
    max-width: 390px;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 60px;
  }
}

.btn {
  display: block;
  width: 220px;
  height: 55px;
  border: none;
  padding: 8px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  text-align: center;
}
.btn:hover {
  color: #ffffff;
}

.btn-fill {
  background: #BDAE82;
  color: #000000;
}

.btn-outline {
  background: #000000;
  color: #BDAE82;
  outline: 2px solid #BDAE82;
  outline-offset: -2px;
}

.title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  background-image: linear-gradient(to top, #000 39px, #bdae82 39px, #bdae82 41px, #000 41px);
  margin: 0 auto 60px;
}
@media (max-width: 992px) {
  .title-wrap {
    margin: 0 auto 36px;
    width: 80%;
  }
}

.section-title {
  display: inline-block;
  position: relative;
  font-family: "Merriweather", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 80px;
  text-align: center;
  color: #BDAE82;
  padding: 0 20px;
  margin: 0 auto;
  background-color: #000000;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
    line-height: 80px;
  }
}

.skills-items {
  display: flex;
  align-items: start;
  justify-content: space-around;
  gap: 40px;
}
@media (max-width: 992px) {
  .skills-items {
    flex-wrap: wrap;
  }
}
.skills-items .skill {
  max-width: 320px;
}
@media (max-width: 992px) {
  .skills-items .skill {
    max-width: 300px;
  }
}
.skills-items .skill.digital {
  background: url("../assets/svg/camera.svg") no-repeat center top;
}
.skills-items .skill.video {
  background: url("../assets/svg/video.svg") no-repeat center top;
}
.skills-items .skill.retouch {
  background: url("../assets/svg/image.svg") no-repeat center top;
}
.skills-items .skill.audio {
  background: url("../assets/svg/audio.svg") no-repeat center top;
}
.skills-items .skill-title {
  margin: 100px 0 20px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 992px) {
  .skills-items .skill-title {
    margin: 70px 0 20px;
  }
}
.skills-items .skill-description {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 992px) {
  .skills-items .skill-description {
    line-height: 22px;
  }
}

.buttons-wrap {
  max-width: 895px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 auto 60px;
}
@media (max-width: 992px) {
  .buttons-wrap {
    max-width: 445px;
  }
}

.image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
@media (max-width: 680px) {
  .image-wrap img {
    width: 100%;
  }
}

.video-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-wrap video {
  width: 100%;
}
@media (max-width: 992px) {
  .video-wrap {
    margin: 0 -20px;
  }
}

.video-btn {
  display: block;
  width: 130px;
  height: 130px;
  position: absolute;
  z-index: 100;
  background: url("../assets/svg/Play_btn.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
}
.video-btn:hover {
  filter: invert(29%) sepia(39%) saturate(251%) hue-rotate(7deg) brightness(90%) contrast(93%);
}
@media (max-width: 992px) {
  .video-btn {
    width: 75px;
    height: 75px;
  }
}

.price-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 992px) {
  .price-wrap {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
}

.price-item {
  width: 100%;
  max-width: 450px;
  padding: 43px;
  border: 3px solid #BDAE82;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 680px) {
  .price-item {
    padding: 25px;
  }
}
.price-item .btn {
  margin: auto auto 0;
}

.price-title {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 56px;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
}

.price {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
  color: #BDAE82;
}

.price-description {
  margin: 0;
  margin-bottom: 40px;
}
.price-description span {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
}

.contacts-section {
  background: url("../assets/img/contacts-bg.jpg") no-repeat center/cover;
  margin: 100px auto 0;
  padding: 60px 20px 195px;
  max-width: 1440px;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .contacts-section {
    padding: 60px 20px 111px;
    display: flex;
    align-items: start;
    justify-content: center;
  }
}

.contacts-title {
  background: transparent;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .contacts-title {
    display: block;
  }
}

.contacts-container {
  width: 450px;
}
@media (max-width: 992px) {
  .contacts-container button {
    margin: 0 auto;
  }
}

.contacts-input {
  display: block;
  padding: 5px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #BDAE82;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  color: #ffffff;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
}
.contacts-input:focus {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.contacts-input:not(:-moz-placeholder-shown) {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.contacts-input:not(:-ms-input-placeholder) {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.contacts-input:not(:placeholder-shown) {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}
.contacts-input:nth-child(3) {
  height: 100px;
  margin-bottom: 30px;
  resize: none;
}
.contacts-input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  color: #bdae82;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  vertical-align: middle;
}
.contacts-input:-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  color: #bdae82;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  vertical-align: middle;
}
.contacts-input::placeholder {
  font-family: "Inter", sans-serif;
  color: #bdae82;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 40px;
  vertical-align: middle;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
}
.footer-container a {
  text-decoration: none;
  color: #ffffff;
}
.footer-container a:hover {
  color: #BDAE82;
}
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
  }
}

.copy {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
}

.rss {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 50px;
}

.socials-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 188px;
  padding: 0;
}

.socials-list__link {
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center;
}
.socials-list__link:hover {
  filter: invert(29%) sepia(39%) saturate(251%) hue-rotate(7deg) brightness(90%) contrast(93%);
}

.instagram {
  background-image: url("../assets/svg/instagram.svg");
}

.facebook {
  background-image: url("../assets/svg/fb.svg");
}

.twitter {
  background-image: url("../assets/svg/twitter.svg");
}

.pinterest {
  background-image: url("../assets/svg/pinterest.svg");
}/*# sourceMappingURL=main.css.map */