*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato/Lato-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Lunapark";
  src: url("../fonts/Lunapark_One/Lunapark_One.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
:root {
  --black: #020202;
  --accent: #d9a18a;
  --light-accent: #edb59e;
  --dark-accent: #834b33;
  --text: #eedddd;
  --light: #fffafa;
  --font-title: "Lunapark", serif;
  --font-text: "Inter", sans-serif;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  /* background-color: var(--black);
  color: var(--text);*/
  color: var(--black);
  font-family: var(--font-text);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
img {
  display: block;
  object-fit: cover;
  width: auto;
  height: auto;
}
p {
  margin: 16px 0;
  line-height: 1.5;
}
p b,
p strong,
li strong,
div b {
  font-weight: 500;
}
a {
  color: var(--dark-accent);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 600ms linear;
  -webkit-transition: opacity 600ms linear;
  -moz-transition: opacity 600ms linear;
  -ms-transition: opacity 600ms linear;
  -o-transition: opacity 600ms linear;
}
a:hover {
  opacity: 1;
}
h1 {
  font-family: var(--font-text);
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--dark-accent);
}
h2 {
  font-family: var(--font-text);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--dark-accent);
  font-weight: 300;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--dark-accent);
}

h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
  font-weight: 400;
}
h5 {
  font-size: 0.85rem;
  font-weight: 400;
}
.btn {
  display: block;
  font-size: 0.8rem;
  text-decoration: none;
  background-color: transparent;
  opacity: 0.75;
  line-height: 1;
  transition: opacity 400ms ease;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  border: 0;
  outline: 0;
  box-shadow: 0;
  cursor: pointer;
}
.btn:hover {
  opacity: 1;
}
section,
.nav,
.footer {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 60px;
  flex-direction: column;
}
.container {
  max-width: 1232px;
  width: 100%;
  padding: 0 16px;
}
.content {
  flex-grow: 1;
  margin-bottom: auto;
  padding-bottom: 48px;
}
/*----- HEADER -------*/

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--text);
  z-index: 5;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.05));
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 14px;
  position: relative;
}
.header__logo {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--dark-accent);
}
.header__logo img {
  height: 32px;
  width: 32px;
  margin-right: 12px;
}
.header__btn {
  display: none;
}
.header__name {
  font-family: var(--font-title);
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-accent);
  display: block;
}
.header__portret {
  position: absolute;
  height: 73px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  filter: saturate(44%);
  -webkit-filter: saturate(44%);
  opacity: 1;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  position: absolute;
}
.header__portret img {
  width: auto;
  height: 73px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid var(--light-accent);
  background-color: var(--text);
}
.header:hover .header__portret {
  filter: saturate(100%);
  -webkit-filter: saturate(100%);
}
.header__portret::after {
  content: "";
  display: block;
  width: 79px;
  height: 79px;
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: -1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid var(--light-accent);
}
/*txt*/

/*----- NAVIGATION -------*/
.nav {
  padding-top: 96px;
  margin-bottom: 32px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.nav__item {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 20px 4px 22px;
  text-align: center;
  max-width: 120px;
  width: 10%;
  margin: 0 8px;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  position: relative;
  opacity: 0.9;
}
.nav__item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 8px;
  border: 1px solid var(--dark-accent);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.nav__item:hover {
  background: var(--text);
  color: var(--dark-accent);
  font-weight: 400;
}
.nav__item span {
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dark-accent);
}
.nav__item:hover img {
  border: 1px solid var(--accent);
  transform: scale(1.4, 1.4);
  s-webkit-transform: translate();
  -moz-transform: scale(1.4, 1.4);
  -ms-transform: scale(1.4, 1.4);
  -o-transform: scale(1.4, 1.4);
  -webkit-transform: scale(1.4, 1.4);
}
.nav__item::before,
.nav__item::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../img/star.svg);
  background-size: cover;
  position: absolute;
  left: calc(50% - 7px);
  opacity: 0;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.nav__item::before {
  top: -24px;
}
.nav__item::after {
  bottom: -24px;
}
.nav__item:hover::before,
.nav__item:hover::after {
  opacity: 1;
}

/*----- FOOTER -------*/

.footer {
  margin-bottom: 0;
  background-color: var(--text);
}
.footer__info {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--dark-accent);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__info__copy {
  display: block;
}
.footer__info__autor {
  display: block;
  color: var(--dark-accent);
}

/*----- MODAL MENU -------*/

.modal {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.menu {
  opacity: 0;
  z-index: -1;
  padding-top: 36px;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.modal__btn-close {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 3px;
  right: 12px;
}
.menu__list {
  font-size: 0.85rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.menu__list__submenu {
  padding-left: 32px;
}
.menu__item {
  list-style-type: none;
  margin: 4px 0;
}
.menu__item a {
  color: var(--light-accent);
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.menu__item a::before,
.menu__item a::after {
  content: "";
  display: none;
  width: 8px;
  height: 8px;
  background-image: url(../img/star.svg);
  background-size: cover;
  position: absolute;
  top: 4px;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.menu__item a::before {
  left: -16px;
}
.menu__item a::after {
  right: -16px;
}
.menu__item a:hover::before,
.menu__item a:hover::after {
  display: block;
}
.mobile-menu__active {
  opacity: 1;
  z-index: 10;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.txt p img {
  float: right;
  margin: 5px 0 25px 25px;
}
.txt p a {
  font-weight: 500;
}
.txt a img {
  display: block;
  opacity: 0.95;
}
.quoter {
  padding: 20px 20px 0 20px;
  margin: 0 25px;
  border-left: 2px solid var(--accent);
  opacity: 0.75;
}
.autor {
  text-align: right;
  padding: 8px 20px 20px 20px;
  margin: 0 25px;
  font-size: 0.75rem;
  opacity: 0.75;
  border-left: 2px solid var(--accent);
}

.right {
  text-align: right;
  margin-top: 6px;
  font-size: 11px;
}
.group {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0 10px 0;
}
.group img {
  margin: 5px;
}
/*
.publ {
  font-size: 0.85rem;
  margin-top: 20px;
}
*/
.links-bott {
  font-size: 0.75rem;
  text-align: center;
  margin: 32px 0 0 0;
  clear: both;
  color: var(--light-accent);
}
.links-bott::before,
.links-bott::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../img/star.svg);
  background-size: cover;
  margin: 0 12px -2px;
}
.links-bott::before {
}
.col {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  padding: 10px 20px;
  background-color: var(--light);
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  margin-bottom: 32px;
  color: var(--accent);
}
.col::before {
  content: "";
  display: block;
  width: 136px;
  height: 40px;
  background-image: url(../img/stars-border.svg);
  background-size: 136px 16px;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  top: -50px;
  right: -8px;
  padding: 10px 0;
  margin-left: -12px;
  transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
}
.col__item-2 {
  width: 47%;
}
.col__item-2:last-child {
  margin-left: 32px;
}
.list {
  margin: 16px 0 8px;
  list-style-type: none;
  padding-left: 20px;
}
.sublist {
  width: 100%;
  margin: 4px 0 8px;
  list-style-type: none;
  padding-left: 20px;
}
.list li {
  margin-bottom: 12px;
  position: relative;
}
.list li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../img/star.svg);
  background-size: cover;
  position: absolute;
  top: 8px;
  left: -20px;
}
.list h3 {
  margin: 0;
}
.list__ol {
  margin: 16px 0 8px 24px;
}
.list__ol li {
  margin-bottom: 12px;
  position: relative;
}
.list__ol li::marker {
  color: var(--accent);
}

.map {
  color: var(--dark-accent);
}
.map h1 {
}
.map h2 {
  margin-bottom: 32px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.row a {
  width: 16.6%;
  margin-bottom: 24px;
}
.row img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 auto 16px;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}
.row img:hover {
  -webkit-transform: scale(1.2, 1.2);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 550ms;
  -moz-transform: scale(1.2, 1.2);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 550ms;
}
.row span {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
}
/*arts*/
.arts {
  padding: 60px 20px 60px 20px;
}
.arts p {
  text-align: left;
}
.arts .autor {
  text-align: right;
}
.arts img {
  display: block;
  margin: 0 auto;
  padding: 29px 0 40px;
}
.arts h1 {
  margin-bottom: 20px;
  text-align: center;
}
.arts h2 {
  text-align: center;
}
.arts h4 {
  margin: 12px 0 0;
  text-align: center;
}
.arts h5 {
  padding: 10px;
  text-align: center;
  margin-bottom: 5px;
}

/*links*/
.links img {
  text-align: left;
  width: 88px;
  height: 31px;
}
.links p {
  text-align: left;
  text-indent: 0;
  margin: 30px 100px;
}
.links p a {
  font-weight: normal;
}
.links h1,
.links h2,
.links h3 {
  text-align: left;
  margin: 30px 100px;
}
.film-box {
  width: 100%;
  padding: 40px;
  background-color: var(--light);
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  margin-bottom: 32px;
}
.film-box__item img {
  max-width: 560px;
  margin: 16px 0 16px 0;
}
.film-box__item iframe {
  margin: 16px 0 16px 0;
}

@media (max-width: 1100px) {
  .row a {
    width: 25%;
  }
}
@media (max-width: 991px) {
  .nav {
    margin-left: -4px;
    margin-right: -4px;
  }
  .nav__item {
    max-width: 120px;
    width: 11.5%;
    margin: 0px 4px;
  }
}

@media (max-width: 890px) {
  .nav {
    display: none;
  }
  .content {
    padding-top: 108px;
  }
  .header__btn {
    display: block;
  }
  .header__btn img {
    width: 56px;
    height: 56px;
  }
  .header__portret {
    display: none;
  }
  .header__name {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    opacity: 1;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 790px) {
  .arts img,
  .publ img,
  .logo img {
    max-width: 800px;
    height: auto;
    align-items: center;
  }
  .publ img {
    width: 100%;
    height: auto;
    align-items: center;
  }
  .arts img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .logo img {
    width: 100%;
  }
  p,
  h3 {
    text-align: left;
    margin: 0 10px;
  }
  .film-box {
    width: 100%;
    height: auto;
  }
  .film {
    width: 100%;
    height: auto;
  }
  .col {
    flex-direction: column;
  }
  .col__item-2 {
    width: 100%;
  }
  .col__item-2:last-child {
    margin-left: 0;
  }
  .col::before {
    display: none;
  }
  .row a {
    width: 33%;
  }
}

@media (max-width: 560px) {
  .header__logo img {
    display: none;
  }
  .header__name {
    font-size: 1.5rem;
  }
  .footer__info {
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .footer__info__autor {
    margin-bottom: 12px;
  }
  .menu__item a:hover::after {
    display: none;
  }
  .row a {
    width: 50%;
  }

  .film-box__item img {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .txt p img {
    float: none;
    width: 99%;
    margin: 10px auto;
  }
  .row a {
    width: 120px;
  }
  .row img {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 420px) {
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .subtitle {
    font-size: 1.8rem;
  }

  .links-bott::before,
  .links-bott::after {
    display: none;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .header__name {
    font-size: 1.3rem;
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px 14px;
  }
  .header__logo {
    font-size: 0.67rem;
  }
  .header__btn {
    position: absolute;
    top: 10px;
    right: 16px;
  }
  .links-bott {
    font-size: 0.65rem;
  }
}

/*----«»  ----*/
