@font-face {
  font-family: 'Lobster';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lobster/v23/neILzCirqoswsqX9_oU.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v13/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v13/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaA.ttf) format('truetype');
}
@font-face {
  font-family: 'Russo One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/russoone/v9/Z9XUDmZRWg6M1LvRYsH-yA.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v3/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
/* font-family: 'Lobster', cursive;
font-family: 'Roboto Slab', serif;
font-family: 'Russo One', sans-serif; */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  background: url(../images/bg-b1.jpg);
  position: relative;
}
section {
  margin-bottom: 30px;
}
h1,
h2,
h3 {
  font-family: 'Inter', sans-serif;
  color: #dba51d;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 30px;
  font-weight: 600;
}
h1 {
  font-size: 64px;
  line-height: 89px;
}
h2 {
  font-size: 25px;
  line-height: 35px;
}
h3 {
  font-size: 20px;
  line-height: 28px;
}
p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 149.8%;
  color: #ffffff;
  margin-bottom: 20px;
}
li {
  list-style: none;
}
.wrapper {
  width: 80%;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: #ffffff;
  transition: .5s;
}
a:hover {
  text-decoration: underline;
}
a:active {
  color: red;
}
button {
  padding: 5px 10px;
  border: 1px solid #fff;
  text-transform: uppercase;
  background-color: inherit;
  margin: 10px;
  cursor: pointer;
  transition: .5s;
  color: #fff;
}
button:hover {
  box-shadow: -5px 5px 10px rgba(230, 236, 240, 0.3);
  transform: scale(1.1);
  outline-offset: 0;
  outline: 0;
}
button:active,
button:focus {
  outline-offset: 0;
  outline: 0;
  background-color: #2d2828;
}
input,
textarea {
  padding: 5px 10px;
  border: 1px solid #fff;
  color: #ffffff;
  background-color: inherit;
  margin: 10px;
  font-size: 20px;
}
input:active,
textarea:active,
input:hover,
textarea:hover,
input:focus,
textarea:focus {
  outline-offset: 0;
  outline: 0;
}
input::placeholder,
textarea::placeholder {
  color: #fff;
}
header {
  background: url(../images/bg1.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 20px 8px -5px rgba(0, 0, 0, 0.37);
}
.header {
  width: 100%;
  position: relative;
}
.box-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(22, 23, 22, 0.63);
  height: 100px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 10px;
  z-index: 6;
}
.box-nav .logo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.box-nav .logo img {
  width: 50px;
  border-radius: 50%;
  margin-right: 5px;
}
.box-nav .logo .logoName {
  text-transform: uppercase;
  color: #fff;
}
.box-nav nav.menu {
  padding: 0;
}
.box-nav nav.menu .menu_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-nav nav.menu .menu_list .burger {
  display: none;
}
.box-nav nav.menu .menu_list .menu_link {
  position: relative;
  display: block;
  transition: 1s;
  color: #ffffff;
  margin-bottom: 5px;
  margin-right: 10vw;
  text-transform: uppercase;
  font-size: 20px;
}
.box-nav nav.menu .menu_list .menu_link.active {
  color: #d4be34;
}
.box-nav .menu_list > li:hover .sub-menu_list {
  display: block;
}
.box-nav .check-in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  right: 40px;
}
.box-nav .check-in #regDiv {
  color: #ffffff;
}
.box-nav .check-in #dialog-form {
  display: none;
  background-color: #2d2828;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -15px 0px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 20px 70px;
  margin-left: 10px;
  position: fixed;
  z-index: 6;
  top: 30%;
  left: 35%;
  height: auto;
}
.box-nav .check-in #dialog-form .validateTips {
  margin-bottom: 10px;
}
.box-nav .check-in #dialog-form p,
.box-nav .check-in #dialog-form label {
  margin-left: 10px;
}
.box-nav .check-in input {
  width: 100%;
}
.sub-menu_list {
  display: none;
  position: absolute;
  min-width: 100px;
  font-size: 18px;
  line-height: 25px;
  background-color: rgba(22, 23, 22, 0.63);
  text-transform: uppercase;
}
.sub-menu_list .sub-menu_link {
  display: block;
  color: #ffffff;
  padding: 20px 20px 10px 20px;
}
main {
  position: relative;
}
main #cookie {
  background-color: #2d2828;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -15px 0px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 20px;
  text-align: center;
  width: 50%;
  margin-left: -1500px;
  position: fixed;
  bottom: 0;
  left: 0;
  bottom: 50px;
  z-index: 10;
  opacity: 1;
}
.main {
  margin: auto;
  margin-top: -83vh;
  padding: 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(50, 42, 39, 0) 0%, rgba(45, 40, 40, 0.85) 33.85%, #2d2828 49.48%, #2d2828 68.75%, #2d2828 82.29%, #2d2828 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -15px 0px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}
.main_info {
  width: 100%;
  padding: 30px;
}
.main_info .info_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.main_info .info_box .contentName {
  width: 50%;
  margin-right: 10px;
}
.main_info .info_box .contentName h1 {
  margin-top: 50px;
  transform: translate(0, 120%);
  opacity: 0.5;
  transition: all 4.5s ease 0s;
}
.main_info .info_box .contentName h1._active {
  transform: translate(0, 0);
  opacity: 1;
}
.main_info .info_box .contentName p {
  transform: translate(0, 120%);
  opacity: 0.5;
  transition: all 4.8s ease 0s;
}
.main_info .info_box .contentName p._active {
  transform: translate(0, 0);
  opacity: 1;
}
.main_info .info_box .content {
  position: relative;
}
.main_info .info_box .content .imgPlay {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  margin: 10px auto;
  cursor: pointer;
}
.main_info .info_box .content img {
  width: 150px;
}
.main_info .info_box .content .video #video {
  padding: 50px ;
  width: 100%;
  height: 100%;
  background: rgba(38, 22, 13, 0.7);
  display: none;
  position: fixed;
  text-align: center;
  z-index: 7;
  top: 0;
  left: 0;
}
.main_info .info_box .content .video #video iframe {
  margin-top: 10%;
  width: 60%;
  height: 30vw;
}
.main_info .info_box .content .plication-form h2 {
  margin-bottom: 0;
}
.main_info .info_box .content .plication-form form input {
  font-size: 20px;
}
.main_info .info_box .content .plication-form form input .validP {
  margin-left: 10px;
}
.main_info .social {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.skills {
  padding: 30px;
  width: 100%;
}
.skills h2 {
  transform: translate(0, 120%);
  opacity: 0.5;
  transition: all 1.2s ease 0s;
}
.skills h2._active {
  transform: translate(0, 0);
  opacity: 1;
}
.skills .wrapper_srills {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.skills .wrapper_srills .skills_info {
  width: 30%;
  min-width: 200px;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -15px 0px 15px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
.skills .wrapper_srills .skills_info img {
  width: 100%;
  margin-bottom: 20px;
}
.gallery {
  width: 100%;
  padding: 30px;
}
.gallery .greed_box {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 10vw);
}
.gallery .greed_box .work {
  width: 100%;
  height: 100%;
  transition: .5s;
}
.gallery .greed_box .work:hover {
  transform: scale(1.1);
}
.gallery .greed_box .work img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -15px 0px 15px rgba(0, 0, 0, 0.3);
}
.gallery .greed_box .work1 {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .greed_box .work2 {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery .greed_box .work3 {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery .greed_box .work4 {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery .greed_box .work5 {
  grid-column: span 1;
  grid-row: span 3;
}
.gallery .greed_box .work6 {
  grid-column: 1;
  grid-row: span 2;
}
.gallery .greed_box .work8 {
  grid-column: 0.75;
  grid-row: span 2;
}
footer {
  padding: 20px 0;
  box-shadow: 0px -20px 8px -5px rgba(0, 0, 0, 0.37);
  background-color: #2d2828;
}
footer .wrapper_foorer {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
}
footer .wrapper_foorer .logo_footer {
  width: 100px;
  margin-bottom: 10px;
}
footer .wrapper_foorer .logo_footer img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 5px;
}
footer .wrapper_foorer .logo_footer .logoName {
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  text-align: center;
}
footer .wrapper_foorer .footer_menu {
  margin-bottom: 10px;
}
footer .wrapper_foorer .footer_curses {
  margin-bottom: 10px;
}
footer .wrapper_foorer .contact {
  margin-bottom: 10px;
}
footer .wrapper_foorer .footr_social {
  margin-bottom: 10px;
}
footer .social_logo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .social_logo img {
  width: 30px;
  transition: .5s;
}
footer .social_logo img:hover {
  transform: scale(1.1);
}
footer .autor {
  width: 40%;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
}
footer .autor h3 {
  color: #fff;
  margin-bottom: 0;
}
footer ul li {
  padding: 5px 0;
}
footer ul li a {
  color: #fff;
}
footer h3 {
  color: #fff;
  font-weight: bold;
}
.noValid {
  border: 2px solid red;
  background-color: red;
}
#nameValid,
#phoneValid,
#usName,
#usEmail,
#usPassw,
#yourNameValid1,
#yourPhoneValid1,
#yourNameValid2,
#yourPhoneValid2,
#commentValid {
  color: red;
  font-size: 14px;
}
.error {
  color: #795e07;
  font-size: 35px;
}
/* Прелоадер */
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
  background: #241e1d;
  z-index: 100;
}
.preloader_image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  background: url('../images/preloader.gif') no-repeat 50% 50%;
  background-size: 400px;
}
.loaded .preloader {
  display: none;
}
@media screen and (max-width: 1000px) {
  .main_info .info_box {
    display: block;
    width: 100%;
  }
  .main_info .info_box .contentName {
    width: 100%;
  }
  .main_info .info_box .content {
    width: 100%;
  }
  .plication-form input {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  footer .wrapper_foorer .logo_footer span {
    display: none;
  }
  footer .autor {
    width: 100%;
  }
  .box-nav .check-in #dialog-form {
    left: 25%;
  }
  .main_info .info_box .content .video #video iframe {
    margin-top: 20%;
    width: 90%;
    height: 42vw;
  }
  .main_info .info_box {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .box-nav nav.menu .menu_list {
    display: block;
    transition: 0.5s;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-left: 10px;
    background-color: #241e1d;
    font-size: 25px;
    overflow: auto;
    z-index: 2;
  }
  .box-nav nav.menu .menu_list.activMob {
    top: 0;
  }
  .box-nav .menu_list > li:hover .sub-menu_list {
    display: none;
  }
  .box-nav nav.menu .menu_list .menu_link {
    padding: 10px;
  }
  .box-nav nav.menu .menu_list .burger {
    display: block;
    position: fixed;
    width: 40px;
    height: 30px;
    z-index: 11;
    left: 10px;
    top: 25px;
    cursor: pointer;
  }
  .box-nav nav.menu .menu_list .burger::before,
  .box-nav nav.menu .menu_list .burger::after {
    content: '';
    background-color: #dba51d;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: 0.5s;
  }
  .box-nav nav.menu .menu_list .burger::before {
    top: 0;
  }
  .box-nav nav.menu .menu_list .burger::after {
    bottom: 0;
  }
  .box-nav nav.menu .menu_list .burger span {
    background-color: #dba51d;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 13px;
    transition: 0.5s;
  }
  .box-nav nav.menu .menu_list .burger.activMob::before {
    transform: rotate(45deg);
    top: 14px;
  }
  .box-nav nav.menu .menu_list .burger.activMob::after {
    transform: rotate(-45deg);
    bottom: 14px;
  }
  .box-nav nav.menu .menu_list .burger.activMob span {
    transform: scale(0);
  }
  .box-nav .logo {
    width: 50px;
    position: absolute;
    top: 25px;
    right: 10px;
    z-index: 11;
  }
  body.lock {
    overflow: hidden;
  }
  h1 {
    font-size: 44px;
    line-height: 59px;
  }
  .main {
    margin-top: -85vh;
    background: rgba(47, 44, 44, 0.77);
  }
  .main_info {
    padding: 10px;
  }
  .main_info .info_box .contentName h1 {
    margin-top: 0;
  }
  .skills .wrapper_srills,
  .gallery .greed_box {
    display: block;
  }
  .skills .wrapper_srills .skills_info,
  .gallery .greed_box .work {
    margin: 5px auto;
    width: 80%;
  }
  .wrapper {
    width: 100%;
  }
  footer .wrapper_foorer .logo_footer {
    display: none;
  }
  footer .wrapper_foorer {
    padding: 20px;
  }
  .box-nav .check-in #dialog-form {
    left: 10%;
  }
  .main_info .info_box .content .video #video iframe {
    margin-top: 50%;
    width: 90%;
    height: 40vw;
  }
}
@media screen and (max-width: 500px) {
  .box-nav .check-in #dialog-form {
    left: 0;
    width: 90%;
  }
  .main_info .info_box .content .video #video iframe {
    margin-top: 70%;
    width: 100%;
    height: 35vw;
  }
  main #cookie {
    width: 90%;
  }
}
