@charset "UTF-8";
/*!
Theme Name: andreymells
*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
picture {
  display: block;
}
picture img {
  width: 100%;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: none;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body {
  background: #fff;
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  padding: 0;
  margin: 0;
  letter-spacing: 0.0625rem;
  overflow-x: hidden;
}
body._lock {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.4;
}
h1,
.h1 {
  font-size: 4rem;
}
h2,
.h2 {
  font-size: 3rem;
}
h3,
.h3 {
  font-size: 2rem;
}
h4,
.h4 {
  font-size: 1.375rem;
}
p {
  margin: 0;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  display: block;
  padding-left: 2em;
  margin: 2.1875rem 0;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr,
acronym {
  border-bottom: 0.0625rem dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 0.0625rem;
  margin-bottom: 1.5625rem;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 1.5em 1.5em;
}
embed,
video,
iframe,
object {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
figure {
  margin: 1em 0;
}
table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease;
}
a:focus,
a:hover,
a:active {
  outline: 0;
}
/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
  display: block;
}
.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ibg {
  position: relative;
}
.ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
body.ie .ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie .ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.site {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: clip;
  display: flex;
  flex-direction: column;
}
.site__main {
  padding-top: 4.6875rem;
}
.site-main {
  flex: 1 1 auto;
}
[class*="__container"] {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
}
.section-title {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}
.section-title::before {
  width: 1px;
  height: 5rem;
  background: #283543;
  content: "";
  margin: 0 auto;
  display: block;
  z-index: 2;
  position: relative;
}
.section-title__subtitle {
  margin-top: 0.625rem;
  color: #77a9a3;
}
.section-title__name {
  font-weight: 600;
  color: #283543;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.625rem;
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 0.875rem;
  background: #77a9a3;
  padding: 0 2.5rem;
  border: none;
  line-height: 1;
  color: #fff;
  height: 2.8125rem;
}
.button:hover {
  background: #283543;
}
/*--Заглушка--*/
body {
  background: #fff !important;
}
.aiowps-site-lockout-body-content {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aiowps-site-lockout-body-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: url(/wp-content/uploads/2024/04/img-bg.jpg) no-repeat center / cover;
  filter: blur(50px);
}
.aiowps-site-lockout-box {
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  margin-top: 0;
  padding: 4.625rem;
  border: 0px solid #ffe20a;
  position: relative;
  position: relative;
}
.aiowps-site-lockout-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: #77a9a3;
  opacity: 0.5;
}
.aiowps-site-lockout-msg {
  font-size: 3rem;
  font-weight: 600;
  color: #283543;
  text-align: center;
  position: relative;
}
.content {
  font-size: 1em;
  line-height: 1.3;
}
.content > *:first-child {
  margin: 0;
}
.content__text_hidden {
  display: none;
}
.content ol {
  counter-reset: item;
  padding: 0 0 0 1.875rem;
}
.content ol li {
  position: relative;
  padding-left: 0.9333em;
}
.content ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
}
.content ol li:not(:last-child) {
  margin: 0 0 0.4166em;
}
.content ul {
  padding: 0 0 0 1.875rem;
}
.content ul li {
  position: relative;
  padding-left: 1.25rem;
}
.content ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background: #000;
  content: "";
  border-radius: 50%;
  display: block;
}
.content ul li:not(:last-child) {
  margin: 0 0 0.4166em;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.content .h1,
.content .h2,
.content .h3,
.content .h4,
.content .h5,
.content .h6 {
  text-transform: none;
}
.content h2 {
  font-size: 2.5rem;
  margin: 0.8333em 0;
}
.content h3 {
  font-size: 2rem;
  margin: 0.8333em 0;
}
.content p {
  margin: 0.8333em 0;
}
.show-hide {
  background: none;
  font-weight: 400;
  font-size: 0.875rem;
  display: block;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9a1247;
  margin: 0;
  border: none;
  padding: 0.3571em 0.4143em 0.3571em 0.7143em;
  position: relative;
}
.show-hide::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #9a1247;
  width: 100%;
  height: 0.125rem;
  transition: all 0.5s ease;
}
.show-hide::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #9a1247;
  width: 0;
  height: 0.125rem;
  transition: all 0.5s ease;
}
.show-hide:hover::before {
  width: 0;
}
.show-hide:hover::after {
  width: 100%;
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}
.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-button-lock {
  display: none !important;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none !important;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
/* Slide styles end */
.slider-control {
  width: 15rem;
}
.slider-control__arrow-block {
  width: 15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.slider-control__arrow {
  width: 2.1875rem;
  height: 1.4375rem;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.5s ease;
}
.slider-control__arrow:hover {
  opacity: 1;
}
.slider-control__arrow_prev {
  transform: rotate(180deg);
}
.slider-control__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: -10%;
}
.slider-control__pagination_fraction span {
  font-size: 0.9em;
  font-weight: 600;
  color: #0066a4;
  margin-top: 1px;
}
.slider-control__pagination_fraction .swiper-pagination-current {
  color: #000;
}
/*---------------------------------
* Forms
*---------------------------------/
/*--Forms--*/
::-webkit-input-placeholder {
  color: #fff;
}
:-moz-placeholder {
  color: #fff;
}
::-moz-placeholder {
  color: #fff;
}
:-ms-input-placeholder {
  color: #fff;
}
form {
  position: relative;
}
form p {
  margin: 0;
  position: relative;
}
select,
textarea,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"] {
  color: #fff;
  border-color: #fff;
  border-width: 0.125rem;
  border-style: solid;
  background: none;
  width: 100%;
  font-family: "Jost", sans-serif;
  padding: 0;
  height: 2.8125rem;
  margin: 0;
  padding: 0 1rem;
  font-size: 1rem;
  appearance: none;
  outline: none;
}
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus {
  box-shadow: none;
  outline: none;
}
input[type="submit"] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.625rem;
  cursor: pointer;
  transition: all 0.5s ease;
  font-size: 0.875rem;
  background: #77a9a3;
  padding: 0;
  border: none;
  line-height: 1;
  color: #fff;
  height: 2.8125rem;
}
input[type="submit"]:hover {
  background: #283543;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition:
    color 9999s ease-out,
    background-color 9999s ease-out;
  -webkit-transition-delay: 9999s;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}
input[type="file"] {
  outline: 0;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
.agree {
  font-size: 0.875rem;
}
.agree a {
  font-size: 0.875rem;
}
.agree a:hover {
  text-decoration: underline;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label,
input[type="checkbox"] + span {
  display: flex;
  position: relative;
  align-items: center;
  gap: 0.3125rem;
  font-weight: 300;
  flex-wrap: wrap;
}
input[type="checkbox"] + label::before,
label input[type="checkbox"] + span::before {
  cursor: pointer;
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  margin-right: 0.625rem;
}
input[type="checkbox"]:checked + label::before,
label input[type="checkbox"]:checked + span::before {
  background: #fff url(images/check.svg) no-repeat center/ contain;
}
div.wpcf7 .ajax-loader {
  display: none;
}
div.wpcf7-mail-sent-ok {
  text-align: center;
  margin: 0 0 0;
  border: none;
}
.wpcf7 form .wpcf7-response-output {
  border: none;
  font-size: 0.75rem;
  bottom: 0;
  text-align: center;
  width: 100%;
  color: red;
}
.wpcf7 form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.625rem;
  font-weight: normal;
  display: block;
  position: absolute;
  left: 1.125rem;
  bottom: 0;
  background: none;
  z-index: 1;
}
.screen-reader-response {
  display: none;
}
/*--End Forms--*/
.contacts-form__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.site-header__inner {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease;
}
.site-header__container {
  display: flex;
  align-items: center;
  height: 4.6875rem;
  flex-wrap: wrap;
}
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 6.3125rem;
  height: 100%;
}
.site-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.site-header__logo a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #fff;
  transition: all 0.5s ease;
  fill: #283543;
}
.site-header__nav {
  flex: 1 1 auto;
  padding: 0 0.625rem;
}
.site-header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.site-header ul li a {
  font-size: 0.875rem;
  position: relative;
  text-transform: uppercase;
}
.site-header ul li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  transition: all 0.5s ease;
  width: 0;
  height: 0.0625rem;
  background: #000;
}
.site-header ul li a:hover::before {
  width: 100%;
}
.scroll .site-header__inner {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(1, 1, 1, 0.1);
}
.scroll ul li a {
  color: #000;
}
.scroll ul li a::before {
  background: #000;
}
.menu-toggle {
  display: none;
}
.site-footer {
  background: #000;
  color: #fff;
}
.site-footer__container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__logo a {
  display: block;
  width: 6.3125rem;
}
.site-footer__logo a svg {
  fill: #fff;
}
.site-footer__social {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.875rem;
}
.site-footer__social a {
  display: block;
}
.site-footer__social a svg {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  fill: #fff;
  transition: all 0.5s ease;
}
.site-footer__social a:hover svg fill {
  color: #ff2d55;
}
.site-footer__nav {
  margin-top: 3.125rem;
}
.site-footer__nav ul {
  display: flex;
  gap: 0.625rem;
}
.site-footer__nav ul li a {
  font-size: 0.875rem;
  color: #fff;
}
.site-footer__copy {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}
.page-home__news,
.page-home__album,
.page-home__about,
.page-home__concert,
.page-home__gallery {
  margin-top: 7.5rem;
}
.page-home__contacts {
  padding: 7.5rem 1.25rem;
  background: url(images/bottom.jpg) no-repeat center / cover;
  color: #fff;
  margin-top: 1.25rem;
}
.hero-block {
  position: relative;
  height: calc(100vh - 4.6875rem);
}
.hero-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-block__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-block__title {
  font-size: 10rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1em;
  color: #fff;
  background-image: url(images/hero-title-bg.jpg);
  background-size: auto 200%;
  margin: 0;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
}
@keyframes shine {
  from {
    background-position: center 0;
  }
  to {
    background-position: center 200%;
  }
}
.news__list {
  margin-top: 5.625rem;
  position: relative;
}
.news-list__control .slider-control__arrow-block {
  background: #000;
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.news-list__control .slider-control__arrow-block .slider-control__arrow {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list__control .slider-control__arrow-block .slider-control__arrow svg {
  fill: #fff;
  max-width: 1.25rem;
}
.news-item {
  display: flex;
  height: auto;
}
.news-item__info {
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  justify-content: center;
  width: 50%;
}
.news-item__info-inner {
  padding: 2rem 5.625rem;
}
.news-item__subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
}
.news-item__text {
  margin-top: 3rem;
}
.news-item__text a {
  color: #77a9a3;
  text-decoration: underline;
}
.news-item__text a:hover {
  text-decoration: none;
}
.news-item__text *:not(:last-child) {
  margin-bottom: 1rem;
}
.news-item__links {
  margin-top: 3rem;
  display: flex;
  gap: 0.625rem;
}
.news-item__links a {
  color: #77a9a3;
}
.news-item__links a span {
  display: block;
  height: 1.875rem;
  width: 1.875rem;
}
.news-item__links a span img {
  object-fit: contain;
}
.news-item__links a svg {
  display: block;
  height: 1.875rem;
  width: 1.875rem;
  fill: #77a9a3;
  transition: all 0.5s ease;
}
.news-item__links a:hover {
  color: #fff;
}
.news-item__links a:hover svg {
  fill: #fff;
}
.news-item__img {
  min-height: 43.125rem;
  height: auto;
  padding-top: 42%;
  flex: 0 0 50%;
  width: 50%;
}
.album__info {
  display: flex;
  margin-top: 5.625rem;
}
.album__walkman {
  min-height: 38.75rem;
  flex: 0 0 50%;
  width: 50%;
  position: relative;
  box-shadow: 0px 14px 15px -14px #000;
  text-align: center;
  padding: 0.9375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.album__walkman-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(0.625rem);
  z-index: -1;
}
.album__walkman-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  opacity: 0.3;
}
.album__img {
  width: 17.375rem;
  height: 17.375rem;
}
.album__name {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  font-weight: 700;
}
.album__year {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
.album__demo {
  margin: 2.5rem auto 0;
  width: 80%;
}
.album__desc {
  flex: 0 0 50%;
  width: 50%;
  padding-left: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.album__pay {
  margin-top: 3rem;
}
.album__pay a {
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  height: 3.125rem;
  width: 12.5rem;
  font-weight: 600;
  box-shadow: 0px 8px 15px -12px #000;
}
.album__pay a svg {
  fill: #000;
  max-width: 1.25rem;
  margin-right: 0.625rem;
  transition: all 0.5s ease;
}
.album__pay a:hover {
  background: #000;
  color: #fff;
}
.album__pay a:hover svg {
  fill: #fff;
}
.album__listen {
  margin-top: 3rem;
}
.album__listen h4 {
  text-transform: none;
}
.album__listen-list {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.625rem;
}
.album__listen-list a {
  color: #000;
}
.album__listen-list a svg {
  display: block;
  height: 1.875rem;
  width: 1.875rem;
  fill: #000;
  transition: all 0.5s ease;
}
.album__listen-list a:hover {
  color: #77a9a3;
}
.album__listen-list a:hover svg {
  fill: #77a9a3;
}
.album__tracklist {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 4.6875rem;
}
.album__tracklist h3 {
  text-transform: none;
  text-align: center;
}
.album__tracklist hr {
  width: 100%;
  height: 0.0625rem;
  background: #000;
  margin: 1.5625rem 0;
}
.album__tracklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.125rem;
}
.album__tracklist-links {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.album__tracklist-links .button {
  flex: 0 0 8.75rem;
  width: 8.75rem;
  overflow: hidden;
}
.album__tracklist-links .button:hover {
  box-shadow: 0px 4px 10px -4px #999;
}

.album__notes {
  text-align: center;
  margin-top: 4.6875rem;
}
.about__info {
  display: flex;
  margin-top: 5.625rem;
  background: #000;
  color: #fff;
}
.about__text {
  width: 50%;
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  padding: 3rem 5rem;
  flex-direction: column;
  transition: all 1s ease;
}
.about__text img {
  max-width: 7.5rem;
}
.about__img {
  width: 50%;
  flex: 0 0 50%;
}
.concert__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  max-width: 62.5rem;
  width: 100%;
  margin: 5.625rem auto 0;
  align-items: center;
}
.concert__date-box {
  display: flex;
  gap: 1.875rem;
  align-items: center;
  font-weight: 600;
}
.concert__date-day {
  font-size: 2.875rem;
}
.concert__hall-name {
  font-size: 1.5rem;
  font-weight: 600;
}
.concert__hall-address a:hover {
  color: #77a9a3;
}
.concert__hall-address svg {
  width: 0.625rem;
}
.concert__pay {
  justify-self: flex-end;
}
.concert__pay a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  height: 3.125rem;
  width: 12.5rem;
  font-weight: 600;
  background: #77a9a3;
  color: #fff;
  box-shadow: 0px 8px 15px -12px #000;
}
.concert__pay a svg {
  fill: #fff;
  max-width: 1.25rem;
  margin-right: 0.625rem;
  transition: all 0.5s ease;
  transform: rotate(-45deg);
}
.concert__pay a:hover {
  background: #283543;
}
.concert__text {
  margin-top: 5.625rem;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}
.gallery-home__slider {
  max-width: 56.25rem;
  width: 100%;
  margin: 5.625rem auto 0;
  position: relative;
}
.gallery-home-slider__list {
  overflow: visible;
}
.gallery-home-slider__list a {
  display: block;
  height: 37.5rem;
  overflow: hidden;
}
.gallery-home-slider__list a img {
  transition: all 0.5s ease;
}
.gallery-home-slider__list a img:hover {
  transform: scale(1.05);
}
.gallery-home-slider__control .slider-control__arrow {
  width: 3.125rem;
  height: 3.125rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.gallery-home-slider__control .slider-control__arrow svg {
  max-width: 1.875rem;
}
.gallery-home-slider__control .slider-control__arrow_prev {
  transform: none;
  left: -25%;
}
.gallery-home-slider__control .slider-control__arrow_next {
  transform: rotate(180deg);
  right: -25%;
}
.contacts {
  position: relative;
}
.contacts::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.contacts .section-title::before {
  background: #fff;
}
.contacts .section-title__name,
.contacts .section-title__subtitle {
  color: #fff;
}
.contacts__container {
  display: flex;
  align-items: center;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border: 0.3125rem solid #fff;
  margin-top: 5.625rem;
  position: relative;
}
.contacts__text {
  width: 50%;
  flex: 0 0 50%;
}
.contacts__form {
  width: 50%;
  flex: 0 0 50%;
  padding-left: 3.125rem;
}
.contacts__form ul {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
.contacts__form ul li a {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.contacts__form ul li a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  fill: #fff;
  transition: all 0.5s ease;
}
.contacts__form ul li a:hover svg {
  fill: #77a9a3;
}

.grecaptcha-badge {
  display: none !important;
}
/* ---Media--- */
@media (max-width: 1279px) {
  html {
    font-size: calc(12px + 4 * ((100vw - 320px) / 1600));
  }
  h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }
  h3,
  .h3 {
    font-size: 1.5rem;
  }
  h4,
  .h4 {
    font-size: 1.2rem;
  }
  .page-home__news,
  .page-home__album,
  .page-home__about,
  .page-home__concert,
  .page-home__gallery-home {
    margin-top: 4.5rem;
  }
  .news-item__info-inner {
    padding: 2rem;
  }
  .news__list,
  .album__info,
  .about__info,
  .concert__info,
  .concert__text,
  .gallery-home__slider {
    margin-top: 2.625rem;
  }
  .gallery-home-slider__control .slider-control__arrow_prev {
    left: 1.25rem;
  }
  .gallery-home-slider__control .slider-control__arrow_next {
    right: 1.25rem;
  }
}
@media (max-width: 767px) {
  .site-header__nav {
    position: fixed;
    left: -150%;
    height: 100vh;
    top: 0;
    background: #fff;
    width: 100%;
    transition: all 0.5s ease;
    padding: 0;
  }
  .site-header__nav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .site-header__nav ul li a {
    color: #000;
    font-size: 1.5rem;
  }
  .menu-toggle {
    display: block;
    position: relative;
    flex: 0 0 22px;
    height: 16px;
    margin-left: auto;
    background: none;
    border: none;
  }
  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: #283543;
    display: block;
    left: 0;
    position: absolute;
    transition: all 0.5s ease;
  }
  .menu-toggle span:nth-child(1) {
    top: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-toggle span:nth-child(3) {
    bottom: 0;
  }
  .hero-block__title {
    font-size: 3.7142rem;
  }
  .hidden-menu-active .menu-toggle span {
    background: #000;
  }
  .hidden-menu-active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hidden-menu-active .menu-toggle span:nth-child(2) {
    transform: rotate(-45deg) translate(0, 0);
  }
  .hidden-menu-active .menu-toggle span:nth-child(3) {
    display: none;
  }
  .hidden-menu-active .site-header__nav {
    left: 0;
  }

  .album__info,
  .about__info {
    display: block;
  }
  .news-item__info,
  .album__walkman,
  .about__img,
  .contacts__text {
    width: 100%;
  }
  .news-item {
    flex-direction: column;
  }
  .news-item__img {
    min-height: 1rem;
    height: auto;
    width: 100%;
    padding-top: 100%;
    flex: 1 1 auto;
  }
  .news-item__info {
    flex: 1 1 auto;
    aspect-ratio: 1 / 1;
  }
  .album__desc {
    width: 100%;
    padding: 0;
    margin-top: 1.875rem;
  }
  .album__demo {
    width: 100%;
  }
  .about__text {
    width: 100%;
    padding: 2rem;
  }
  .concert__info {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .concert__date-box {
    margin: 0 auto;
  }
  .concert__hall {
    text-align: center;
  }
  .concert__pay {
    justify-self: center;
  }
  .gallery-home-slider__list a {
    height: 30.5rem;
  }
  .contacts__container {
    display: block;
  }
  .contacts__form {
    width: 100%;
    padding: 0;
    margin-top: 1.25rem;
  }
}

@media (max-width: 599px) {
  .album__tracklist-item {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    gap: 0.3125rem;
  }
  .album__tracklist-item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .album__tracklist-links {
    margin-left: 0;
    flex-wrap: wrap;
  }
}
