@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Merriweather:wght@700&display=swap&subset=cyrillic-ext");
:root {
  --font-family-serif: "Merriweather", serif;
  --font-size-serif: 60px;
  --font-weight-bold-serif: 700;
  --font-family-sans-serif: "Inter", sans-serif;
  --font-size-sans-serif: 20px;
  --font-weight-reg-sans-serif: 400;
  --font-weight-bold-sans-serif: 700;
  --color-wht: #fff;
  --color-blck: #000;
  --color-gld: #bdae82;
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
}

*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
}

.light-theme {
  --color-wht: #000;
  --color-blck: #fff;
  --color-gld: #bdae82;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.light-theme .logo path {
  fill: var(--color-wht);
}

.light-theme .moon {
  display: block;
}

.light-theme .sun {
  display: none;
}

.light-theme .header {
  background: url("./assets/img/bg-light.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  -webkit-transition: background-image 0.5s linear;
  transition: background-image 0.5s linear;
}

.light-theme .nav-item > button .btn-lang-active {
  color: var(--color-blck);
}

.light-theme .main {
  background-image: url("./assets/img/bg-light.jpg");
  -webkit-transition: background-image 0.5s linear;
  transition: background-image 0.5s linear;
}

.light-theme .text-info h1 {
  color: var(--color-wht);
}

.light-theme .text-info p {
  color: var(--color-wht);
}

.light-theme .btn {
  color: var(--color-wht);
  background-color: var(--color-gld);
}

.light-theme .btn:hover {
  color: #bdae82;
  -webkit-animation: fadeInFromNone2 0.5s forwards;
          animation: fadeInFromNone2 0.5s forwards;
}

@-webkit-keyframes fadeInFromNone2 {
  0% {
    background-color: black;
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, 0.95);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.95);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.85);
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 35px black;
            box-shadow: 0 2px 35px black;
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}

@keyframes fadeInFromNone2 {
  0% {
    background-color: black;
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, 0.95);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.95);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.85);
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 35px black;
            box-shadow: 0 2px 35px black;
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}

.light-theme .active {
  color: var(--color-wht);
  background-color: var(--color-blck);
  border: solid 2px var(--color-gld);
}

.light-theme .skills-item h4,
.light-theme .skills-item p {
  color: var(--color-wht);
}

.light-theme #btn-portfolio.active {
  background-color: var(--color-wht) !important;
  color: var(--color-gld);
}

.light-theme #btn-portfolio.active:hover {
  color: #bdae82;
}

.light-theme .price-cash {
  color: var(--color-wht);
}

.light-theme #btn-price {
  background-color: var(--color-gld);
}

.light-theme #btn-price:hover {
  background-color: var(--color-wht);
  color: var(--color-gld);
}

.light-theme .section-title {
  color: var(--color-wht);
}

.light-theme .section-title::after, .light-theme .section-title::before {
  border-bottom: 2px solid var(--color-wht);
}

.light-theme .section-title-outline {
  color: var(--color-wht);
}

.light-theme .contacts {
  background: url("./assets/img/contacts-light.jpg");
  -webkit-transition: background-image 0.5s linear;
  transition: background-image 0.5s linear;
}

.light-theme .form-group input,
.light-theme .form-group select,
.light-theme .form-group textarea {
  color: var(--color-wht);
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--color-gld);
  outline: none;
}

.light-theme .form-group input::-webkit-input-placeholder,
.light-theme .form-group select::-webkit-input-placeholder,
.light-theme .form-group textarea::-webkit-input-placeholder {
  color: var(--color-wht);
}

.light-theme .form-group input:-ms-input-placeholder,
.light-theme .form-group select:-ms-input-placeholder,
.light-theme .form-group textarea:-ms-input-placeholder {
  color: var(--color-wht);
}

.light-theme .form-group input::-ms-input-placeholder,
.light-theme .form-group select::-ms-input-placeholder,
.light-theme .form-group textarea::-ms-input-placeholder {
  color: var(--color-wht);
}

.light-theme .form-group input::placeholder,
.light-theme .form-group select::placeholder,
.light-theme .form-group textarea::placeholder {
  color: var(--color-wht);
}

.light-theme .form-group input:focus,
.light-theme .form-group select:focus,
.light-theme .form-group textarea:focus {
  color: var(--color-wht);
}

.light-theme .form-group input:-webkit-autofill, .light-theme .form-group input:-webkit-autofill:hover, .light-theme .form-group input:-webkit-autofill:focus, .light-theme .form-group input:-webkit-autofill:active,
.light-theme .form-group select:-webkit-autofill,
.light-theme .form-group select:-webkit-autofill:hover,
.light-theme .form-group select:-webkit-autofill:focus,
.light-theme .form-group select:-webkit-autofill:active,
.light-theme .form-group textarea:-webkit-autofill,
.light-theme .form-group textarea:-webkit-autofill:hover,
.light-theme .form-group textarea:-webkit-autofill:focus,
.light-theme .form-group textarea:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: var(--color-wht) !important;
}

.light-theme .social-item path {
  fill: var(--color-wht);
}

@media (max-width: 768px) {
  .light-theme .header {
    height: 90px;
    background-position: -5px -30px;
    background-size: auto 620px;
  }
}

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

html,
body {
  height: 100%;
  font-family: var(--font-family-sans-serif);
  font-weight: var(--font-weight-reg-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-wht);
  scroll-behavior: smooth;
}

h1 {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-serif);
}

/*----------------------------------*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  background-color: var(--color-blck);
}

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

/*---Header---*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  padding-left: 20px;
  padding-right: 0;
  background: url("./assets/img/bg.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  -webkit-transition: background-image 0.5s linear;
  transition: background-image 0.5s linear;
}

.nav-list {
  list-style: none;
}

.nav-item {
  display: inline-block;
  line-height: 50px;
  padding: 20px 12px;
}

.nav-item:last-child {
  padding-right: 0;
}

.nav-item a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-item a:hover {
  color: var(--color-gld);
}

.nav-item li,
.nav-item a,
.nav-item button {
  color: var(--color-wht);
  text-decoration: none;
}

.nav-item button {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-wht);
  text-decoration: none;
}

.logo {
  margin-right: auto;
  cursor: pointer;
}

.logo:hover path {
  fill: var(--color-gld);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn-lang {
  word-spacing: 5px;
  white-space: nowrap;
}

.moon {
  display: none;
}

.sun {
  display: block;
}

.nav-item > button {
  margin: 0 10px;
  padding: 10px 10px;
  font-weight: var(--font-weight-bold-sans-serif);
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-item > button .lang-en {
  color: var(--color-wht);
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}

.nav-item > button:hover {
  background-color: rgba(189, 174, 130, 0.8);
}

.nav-item > button:hover .btn-lang-active {
  color: var(--color-blck);
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}

.nav-item > button .lang-ru {
  color: var(--color-wht);
}

.nav-item > button .btn-lang-active {
  color: var(--color-gld);
}

.btn-theme {
  cursor: pointer;
  margin-right: 20px;
}

.btn-theme:hover path {
  fill: var(--color-gld);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*--Hamburger--*/
.hamburger {
  display: none;
}

.hamburger .line {
  width: 50px;
  height: 3px;
  background-color: var(--color-wht);
  display: block;
  margin: 10px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger.is-active {
  position: fixed;
}

#hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

/*---Main---*/
.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-image: url("./assets/img/bg.jpg");
  background-repeat: no-repeat;
  background-position: center -90px;
  -webkit-transition: background-image 0.5s linear;
  transition: background-image 0.5s linear;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  margin: 0 auto;
  padding: 115px 0 75px;
  font-family: var(--font-family-serif);
  font-size: 40px;
  color: var(--color-gld);
  background-color: transparent;
}

.section-title::after, .section-title::before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 2px solid var(--color-gld);
}

.section-title:not(:empty)::before {
  margin-right: 20px;
}

.section-title:not(:empty)::after {
  margin-left: 20px;
}

/*--Hero--*/
.text-info {
  max-width: 540px;
  padding-top: 160px;
  padding-left: 60px;
  padding-bottom: 330px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.text-info h1 {
  margin-bottom: 10px;
  line-height: 120px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.text-info p {
  text-align: left;
  margin-bottom: 25px;
  line-height: 40px;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 220px;
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-gld);
  background-color: transparent;
  border: 2px solid var(--color-gld);
  -webkit-box-shadow: 0 2px 25px rgba(189, 174, 130, 0.7);
          box-shadow: 0 2px 25px rgba(189, 174, 130, 0.7);
  z-index: 10;
}

.btn:hover {
  color: var(--color-wht);
  -webkit-animation: fadeInFromNone 0.5s forwards;
          animation: fadeInFromNone 0.5s forwards;
}

@-webkit-keyframes fadeInFromNone {
  0% {
    background-color: #bdae82;
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 30px rgba(219, 194, 119, 0.85);
            box-shadow: 0 2px 30px rgba(219, 194, 119, 0.85);
  }
  100% {
    background-color: rgba(189, 174, 130, 0.75);
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 35px #dbc277;
            box-shadow: 0 2px 35px #dbc277;
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}

@keyframes fadeInFromNone {
  0% {
    background-color: #bdae82;
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 30px rgba(219, 194, 119, 0.85);
            box-shadow: 0 2px 30px rgba(219, 194, 119, 0.85);
  }
  100% {
    background-color: rgba(189, 174, 130, 0.75);
    border: solid 2px var(--color-gld);
    -webkit-box-shadow: 0 2px 35px #dbc277;
            box-shadow: 0 2px 35px #dbc277;
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}

.btn .circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle closest-side, white, #d7ceb4);
  color: transparent;
  width: 1px;
  height: 1px;
  z-index: -1;
  -webkit-animation: ripple 0.5s ease-in;
          animation: ripple 0.5s ease-in;
}

.btn .circle:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-box-shadow: 0 6px 4px darkgray;
          box-shadow: 0 6px 4px darkgray;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0;
  }
  75% {
    -webkit-transform: scale(450, 450);
            transform: scale(450, 450);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(700, 700);
            transform: scale(700, 700);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0;
  }
  75% {
    -webkit-transform: scale(450, 450);
            transform: scale(450, 450);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(700, 700);
            transform: scale(700, 700);
    opacity: 0;
  }
}

.btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  background-color: var(--color-gld);
  -webkit-box-shadow: 0 2px 25px rgba(189, 174, 130, 0.2);
          box-shadow: 0 2px 25px rgba(189, 174, 130, 0.2);
}

.active {
  color: var(--color-blck);
  background-color: var(--color-gld);
  border: 0px;
}

.active:hover {
  color: var(--color-wht);
}

/*--Skills--*/
.skills-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.skills-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.skills-item h4 {
  padding-top: 50px;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  line-height: 2em;
  font-weight: var(--font-weight-bold-sans-serif);
  text-align: center;
}

.skills-item p {
  max-width: 280px;
  padding-top: 20px;
  font-family: var(--font-family-sans-serif);
  font-size: 18px;
  line-height: 2em;
  font-weight: var(--font-weight-reg-sans-serif);
  text-align: center;
}

/*--Portfolio--*/
.portfolio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

.photo-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  padding-top: 60px;
  opacity: 1;
}

/*--Video--*/
.video-player {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  border: 1px solid #bdae82;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-play-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  margin-right: auto;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video-play-hover:hover path {
  fill: var(--color-gld);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.watermark {
  position: absolute;
  top: 2%;
  right: 2%;
  opacity: 0.3;
}

/*--Price--*/
.price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 25px;
  color: var(--color-wht);
}

.price-info {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 40px;
  color: var(--color-wht);
}

.price-info span {
  display: block;
  font-family: var(--font-family-sans-serif);
  font-size: 18px;
  line-height: 2em;
}

.price-item {
  width: 450px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid var(--color-gld);
}

.price-item .btn {
  margin: 0 20px 40px;
}

.price-title {
  font-family: var(--font-family-serif);
  font-size: 28px;
  line-height: 2em;
  font-weight: var(--font-weight-bold-serif);
  padding-top: 40px;
}

.price-cash {
  font-family: var(--font-family-serif);
  font-size: 24px;
  line-height: 2em;
  font-weight: var(--font-weight-bold-serif);
  margin-top: 20px;
  color: var(--color-gld);
}

/*--Сontacts--*/
.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 100px -20px 0;
  background: url("./assets/img/contacts.jpg");
  background-size: auto 700px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: background-image 0.5s linear;
  transition: background-image 0.5s linear;
}

.form {
  width: 470px;
  padding-top: 75px;
  padding-right: 20px;
  padding-bottom: 195px;
}

.section-title-outline {
  margin-bottom: 35px;
  font-family: var(--font-family-serif);
  font-size: 40px;
  color: var(--color-gld);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  margin-top: 20px;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  line-height: 2em;
  color: var(--color-gld);
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--color-gld);
  outline: none;
}

.form-group input::-webkit-input-placeholder,
.form-group select::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-gld);
}

.form-group input:-ms-input-placeholder,
.form-group select:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-gld);
}

.form-group input::-ms-input-placeholder,
.form-group select::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-gld);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sans-serif);
  color: var(--color-gld);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  color: var(--color-wht);
}

.form-group input:-webkit-autofill, .form-group input:-webkit-autofill:hover, .form-group input:-webkit-autofill:focus, .form-group input:-webkit-autofill:active,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus,
.form-group select:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: var(--color-gld) !important;
}

.form-group input {
  height: 50px;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

/*---Footer---*/
.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;
  height: 150px;
  padding: 0;
  padding-left: 10px;
}

.footer ul li {
  display: inline;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer a {
  text-decoration: none;
}

.social-list {
  margin-top: 7px;
  margin-right: 2px;
}

.footer-links {
  text-decoration: none;
  color: var(--color-wht);
}

.footer-links:hover {
  color: var(--color-gld);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.spacing {
  word-spacing: 16px;
}

.social-item {
  margin-right: 15px;
  cursor: pointer;
}

.social-item:hover path {
  fill: var(--color-gld);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*----breakpoints----*/
/*--Tablet--*/
@media (max-width: 768px) {
  :root {
    --font-size-serif: 32px;
  }
  .section-title {
    padding: 100px 0 70px;
    font-size: var(--font-size-serif);
  }
  /*----Header----*/
  .header {
    height: 90px;
    background-position: -5px -30px;
    background-size: auto 620px;
  }
  .logo {
    margin-left: 40px;
  }
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    height: 100%;
    width: 80%;
    right: -80%;
    top: 0;
    background-color: var(--color-blck);
    -webkit-transition: right 0.8s cubic-bezier(1, 0, 0, 1);
    transition: right 0.8s cubic-bezier(1, 0, 0, 1);
    z-index: 999;
  }
  .nav.change {
    right: 0;
  }
  .wrapper.fixed-position {
    position: fixed;
  }
  .overlay {
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .overlay.change {
    visibility: visible;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .lang,
  .moon,
  .sun {
    opacity: 1;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .lang.change,
  .moon.change,
  .sun.change {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }
  .sun.change,
  .moon.change {
    margin-right: 115px;
  }
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 22%;
    margin-right: 35%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
  .nav-item {
    text-align: left;
    margin: 10px 0;
    padding: 8px 0;
    font-size: 35px;
    line-height: 1em;
  }
  .nav-item button {
    margin: 0;
  }
  .lang {
    padding: 0px 10px;
  }
  .nav-item > button {
    padding: 10px 15px;
  }
  .btn-lang {
    word-spacing: 10px;
  }
  .hamburger {
    display: block;
    margin-right: 65px;
    z-index: 999;
  }
  .main {
    background-position: -5px -120px;
    background-size: auto 620px;
  }
  .text-info {
    max-width: 450px;
    padding-top: 50px;
    padding-left: 40px;
    padding-bottom: 152px;
  }
  .text-info h1 {
    margin-bottom: -7px;
  }
  .text-info p {
    margin-bottom: 58px;
    line-height: 24px;
  }
  /*----Skills----*/
  .skills-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -5px;
    gap: 75px 0px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .skills-list > div {
    -webkit-box-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
  }
  .skills-item {
    width: 100%;
  }
  .skills-item h4 {
    padding-top: 30px;
  }
  .skills-item p {
    line-height: 22px;
  }
  .btn-list {
    max-width: 445px;
  }
  /*----Portfolio----*/
  .portfolio {
    margin-top: 80px;
  }
  .btn-list > button {
    -webkit-box-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
  }
  /*----Video----*/
  .video-player-photo {
    height: 418px;
    max-width: 120%;
    margin-left: 45px;
    position: relative;
  }
  .video-play-hover {
    height: 65px;
    width: 65px;
  }
  /*----Price----*/
  .price {
    margin-top: 0px;
  }
  .price-list {
    gap: 50px;
  }
  .price-item {
    max-width: 420px;
  }
  /*----Сontacts----*/
  .contacts {
    margin-top: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 600px;
    background-size: auto 600px;
  }
  .form {
    margin-top: -5px;
    margin-left: 20px;
    text-align: center;
    padding-bottom: 0;
  }
  .section-title-outline {
    font-size: var(--font-size-serif);
  }
  /*----Footer----*/
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 160px;
    margin-top: 15px;
    margin-left: -5px;
    margin-bottom: 15px;
  }
  .footer .social-list {
    margin-left: 18px;
  }
}

/*-- if --*/
@media (max-width: 620px) {
  .nav {
    width: 100%;
    right: -100%;
    -webkit-transition: right 0.5s cubic-bezier(1, 0, 0, 1), width 1s linear;
    transition: right 0.5s cubic-bezier(1, 0, 0, 1), width 1s linear;
  }
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20%;
    margin-right: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 5px;
  }
  .skills-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*--Phome--*/
@media (max-width: 480px) {
  .hamburger {
    right: 0;
    margin-right: 40px;
  }
  .nav {
    width: 100%;
    right: -100%;
    -webkit-transition: right 0.5s cubic-bezier(1, 0, 0, 1), width 1s linear;
    transition: right 0.5s cubic-bezier(1, 0, 0, 1), width 1s linear;
  }
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
    margin-right: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 5px;
  }
  .skills-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .skills-list > div {
    -webkit-box-flex: 55%;
        -ms-flex: 55%;
            flex: 55%;
  }
}

video {
  width: 100%;
}

video[poster] {
  height: 590px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.player-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(100%) translateY(-5px);
          transform: translateY(100%) translateY(-5px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.65);
}

.play-module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
}

.volume-module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
}

.right {
  margin-left: auto;
}

.video-player:hover .player-controls {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.play-button {
  width: 10%;
  max-width: 90px;
  border: none;
  background: black;
  color: grey;
  padding: 10px;
  cursor: pointer;
}

.play-button:hover .imgplay {
  -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(23%) saturate(449%) hue-rotate(7deg) brightness(86%) contrast(84%);
          filter: brightness(0) saturate(100%) invert(80%) sepia(23%) saturate(449%) hue-rotate(7deg) brightness(86%) contrast(84%);
}

.play-button:focus,
.mute-button:focus {
  outline: none;
}

.time {
  font-size: 0.8em;
  color: white;
  width: 15%;
  min-width: 90px;
  max-width: 120px;
  text-align: center;
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 2;
      flex-shrink: 2;
}

.mute-button {
  width: 20%;
  border: none;
  background: black;
  color: grey;
  padding: 10px;
  cursor: pointer;
}

.mute-button:hover .imgmute {
  -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(23%) saturate(449%) hue-rotate(7deg) brightness(86%) contrast(84%);
          filter: brightness(0) saturate(100%) invert(80%) sepia(23%) saturate(449%) hue-rotate(7deg) brightness(86%) contrast(84%);
}

input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  margin: 0;
  width: 55%;
  padding: 0 10px;
  overflow: hidden;
  cursor: pointer;
}

input[type="range"].time-slider {
  width: 70%;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#bdae82), to(#bdae82)), #c7c7c7;
  background: linear-gradient(to right, #bdae82, #bdae82), #c7c7c7;
  background-size: var(--background-size, 0%) 100%;
  background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: white;
  border: solid #bdae82 1px;
  border-radius: 50%;
  margin-top: -2px;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}

/** FF*/
input[type="range"]::-moz-range-progress {
  background-color: #bdae82;
  border-radius: 5px;
}

input[type="range"]::-moz-range-track {
  background-color: #c7c7c7;
  border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: #bdae82;
  border: solid white 1px;
  border-radius: 50%;
  margin-top: -6px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}

.video-progress {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.video-progress-filled {
  width: 0;
  background-color: #bdae82;
}

.video-player:hover .video-progress {
  display: none;
}

.playpause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.35);
}

.video-play-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  margin-right: auto;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.video-play-hover path {
  fill: white;
}

.video-play-hover:hover path {
  fill: #bdae82;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.fullscreen {
  background: transparent;
  color: white;
  width: 5%;
  margin-left: 15px;
  margin-right: 30px;
  border: none;
  cursor: pointer;
}

.fullscreen:hover .imgfullscreen {
  -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(23%) saturate(449%) hue-rotate(7deg) brightness(86%) contrast(84%);
          filter: brightness(0) saturate(100%) invert(80%) sepia(23%) saturate(449%) hue-rotate(7deg) brightness(86%) contrast(84%);
}

.video-fullscreen {
  border: none;
}

.video-fullscreen .play-module {
  width: 90%;
}

.video-fullscreen .volume-module {
  width: 10%;
}

.video-fullscreen input[type="range"].time-slider {
  width: 100%;
}

.video-fullscreen video[poster] {
  height: 100vh;
  width: 100%;
  -o-object-fit: inherit;
     object-fit: inherit;
}
/*# sourceMappingURL=style.css.map */