@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@font-face {
  font-family: "Clarendon Blk BT";
  src: url("../ABVV_Russo/fonts/Claredon/Clarendon-Blk-BT-Black.ttf") format("truetype");
}
:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Lora", sans-serif;
  --third-family: "Clarendon Blk BT", sans-serif;
  --gold: #DB9F32;
  --dark: #171717 ;
}

body {
  font-family: var(--font-family);
  color: #fff;
  background: #000;
  font-weight: 200;
  font-size: 16px;
  margin: 0;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
    font-weight: 100;
  }
}

a {
  font-family: var(--font-family);
}

section {
  margin: 0;
  padding: 0;
}
section a:hover {
  color: var(--gold);
}
section h2, section h3, section h4, section .h3 {
  color: var(--gold);
  font-family: var(--second-family);
  margin: 0;
  line-height: 1.1;
  font-style: normal;
  font-weight: 700;
}
section h2 {
  font-size: 30px;
  text-align: center;
  letter-spacing: -1.1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  section h2 {
    font-size: 40px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  section h2 {
    font-size: 54px;
  }
}
@media (min-width: 1200px) {
  section h2 {
    font-size: 64px;
  }
}
section h3, section .h3 {
  font-size: 26px;
}
section h4 {
  font-size: 20px;
}
@media (min-width: 768px) {
  section h4 {
    font-size: 36px;
    text-transform: none;
  }
}
section p {
  margin: 0;
}

.section__block {
  max-width: 420px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px;
}
@media (min-width: 768px) {
  .section__block {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .section__block {
    max-width: 1024px;
    padding: 60px 20px;
  }
}
@media (min-width: 1200px) {
  .section__block {
    max-width: 1200px;
  }
}
.section__title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .section__title {
    margin-bottom: 25px;
  }
}
.section__text {
  margin: 0 auto;
  padding-bottom: 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .section__text {
    padding-bottom: 30px;
  }
}
.section__text--narrower {
  max-width: 808px;
}
.section__body {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section__body {
    flex-direction: row;
    gap: 20px;
  }
}
.section__body > * {
  flex: 1;
}

.wpcf7-spinner {
  position: absolute;
  right: 10px;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  padding: 2px 20px 0;
  color: var(--gold);
}
@media (min-width: 768px) {
  .wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% - 2px);
  }
}

.swiper-button-prev:after, .swiper-button-next:after {
  color: #666;
}

div.swiper-pagination {
  position: inherit;
  bottom: auto !important;
  margin-bottom: 15px;
}
div.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #383838;
  opacity: 1;
}
div.swiper-pagination .swiper-pagination-bullet-active {
  background: #666;
}

.hero__section {
  background-image: url("../../img/hero-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__block {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 303px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
}
@media (min-width: 768px) {
  .hero__block {
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .hero__block {
    max-width: 990px;
  }
}
@media (min-width: 1200px) {
  .hero__block {
    max-width: 1160px;
  }
}
.hero__img {
  z-index: 5;
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero__img {
    left: -30px;
  }
}
@media (min-width: 1024px) {
  .hero__img {
    left: -40px;
  }
}
.hero__header {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .hero__header {
    top: 15px;
  }
}
.hero__title {
  font-family: var(--third-family);
  font-size: 58px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 115%;
  background: linear-gradient(180deg, #9f6f2e, #ebac34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 110px;
    line-height: 123%;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 148px;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    font-size: 183px;
    line-height: 101%;
  }
}
.hero__avraam span {
  margin-left: 100px;
}
@media (min-width: 768px) {
  .hero__avraam span {
    margin-left: 215px;
  }
}
@media (min-width: 1024px) {
  .hero__avraam span {
    margin-left: 290px;
  }
}
.hero__russo {
  font-size: 79px;
  display: block;
  margin-top: -7px;
}
@media (min-width: 768px) {
  .hero__russo {
    font-size: 148px;
  }
}
@media (min-width: 1024px) {
  .hero__russo {
    font-size: 200px;
  }
}
@media (min-width: 1200px) {
  .hero__russo {
    font-size: 246px;
  }
}
.hero__russo span {
  margin-left: 74px;
}
@media (min-width: 768px) {
  .hero__russo span {
    margin-left: 170px;
  }
}
@media (min-width: 1024px) {
  .hero__russo span {
    margin-left: 215px;
  }
}
.hero__subtitle {
  text-transform: uppercase;
  font-weight: 100;
  font-size: 11px;
  display: block;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 28px;
  }
}
.hero__social {
  position: absolute;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 150px;
  z-index: 5;
}
@media (min-width: 768px) {
  .hero__social {
    right: auto;
    left: -20px;
    top: 460px;
  }
}
@media (min-width: 1024px) {
  .hero__social {
    left: 0;
    top: 560px;
  }
}
.hero__social i {
  font-size: 16px;
  color: #c8c8c8;
}
@media (min-width: 768px) {
  .hero__social i {
    font-size: 24px;
  }
}
.hero__social a:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .hero__social a:not(:last-child) {
    margin-bottom: 20px;
  }
}
.hero__social a:hover i {
  color: #db9f32;
  transition: color 0.3s ease;
}
.hero__social img {
  max-width: 16px;
}
.hero__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 75%);
  height: 10%;
  width: 100%;
  display: block;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .feature__list {
    margin-bottom: 30px;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .feature__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature__item {
  gap: 15px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .feature__item {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .feature__item img {
    max-width: 48px;
  }
}
@media (max-width: 767px) {
  .feature__item img {
    max-width: 34px;
  }
}
.feature__title {
  color: var(--gold);
  font-family: var(--second-family);
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .feature__title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .feature__title {
    font-size: 21px;
  }
}

.album__section .jp-row {
  flex-direction: column-reverse;
}
.album__section .jp-controls,
.album__section .jp-progress {
  width: 100%;
}
.album__section .jp-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.album__section .jp-controls button {
  width: auto;
  height: auto;
}
.album__section .jp-controls button.jp-play:before {
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 767px) {
  .album__section .jp-controls button.jp-play:before {
    font-size: 25px;
  }
}
.album__section .jp-controls i {
  color: #666;
  font-size: 48px;
}
@media (max-width: 767px) {
  .album__section .jp-controls i {
    font-size: 25px;
  }
}
.album__section .jp-controls i.fa-play:before {
  content: "\f04b";
}
.album__section .jp-controls i.fa-backward:before {
  content: "\f048";
}
.album__section .jp-controls i.fa-forward:before {
  content: "\f051";
}
.album__section .jp-seek-bar {
  height: 4px;
  background: #828886;
}
@media (max-width: 767px) {
  .album__section .jp-seek-bar {
    height: 2px;
  }
}
.album__section .jp-play-bar {
  background: var(--gold);
  height: inherit;
  position: relative;
  overflow: inherit !important;
}
.album__section .jp-play-bar:after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  display: block;
  position: absolute;
  left: 100%;
  top: 2px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .album__section .jp-play-bar:after {
    width: 8px;
    height: 8px;
    top: 1px;
  }
}
.album__section .jp-playlist * {
  font-size: inherit;
}
.album__section .jp-playlist-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.album__section .jp-playlist-item:hover {
  color: inherit;
}
.album__section .jp-playlist-item.jp-playlist-current {
  color: var(--gold);
}
.album__section .swiper-button-prev, .album__section .swiper-button-next {
  outline: 0;
}
@media (max-width: 1023px) {
  .album__section .swiper-button-prev, .album__section .swiper-button-next {
    top: 638px;
    transform: translateY(-319px);
  }
}
@media (max-width: 767px) {
  .album__section .swiper-button-prev, .album__section .swiper-button-next {
    top: 502px;
    transform: translateY(-251px);
  }
  .album__section .swiper-button-prev:after, .album__section .swiper-button-next:after {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .album__section .swiper-button-prev {
    left: 0;
  }
  .album__section .swiper-button-next {
    right: 0;
  }
}
.album .section__title {
  margin-bottom: 5px;
}
.album__list {
  display: grid;
  gap: 15px;
}
.album__item {
  display: flex;
  padding: 0 60px;
  gap: 25px;
  height: 616px;
}
@media (max-width: 1023px) {
  .album__item {
    flex-direction: column;
    height: 1190px;
  }
}
@media (max-width: 767px) {
  .album__item {
    height: 830px;
    padding: 0;
    gap: 15px;
  }
}
.album__info, .album__playlist {
  background: var(--dark);
  padding: 20px 25px 25px;
  border-radius: 5px;
}
.album__info {
  flex: 0;
  box-sizing: content-box;
}
.album__info-wrapper {
  max-width: 333px;
  margin: 0 auto;
}
.album__playlist {
  flex: 1;
  margin: 0;
  overflow: auto;
  counter-reset: item;
}
@media (max-width: 767px) {
  .album__playlist {
    background: none;
    padding: 0;
  }
}
.album__playlist::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
.album__playlist::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 6px;
  border: 3px solid transparent;
  background-clip: content-box;
}
.album__playlist::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.album__playlist .song__item {
  padding: 10px 0;
  margin-left: 0;
}
@media (max-width: 767px) {
  .album__playlist .song__item {
    padding: 7px 0;
  }
}
.album__playlist .song__item:not(:last-child) {
  border-bottom: 1px solid #222;
}
.album__playlist .song__item a.jp-playlist-item:before {
  font-size: 24px;
  font-weight: 300;
  content: counters(item, ".") ". ";
  counter-increment: item;
  width: 40px;
  height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .album__playlist .song__item a.jp-playlist-item:before {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}
.album__playlist .song__item a.jp-playlist-item:hover:before, .album__playlist .song__item a.jp-playlist-item.jp-playlist-current:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .album__playlist .song__item a.jp-playlist-item:hover:before, .album__playlist .song__item a.jp-playlist-item.jp-playlist-current:before {
    background-size: contain;
  }
}
.album__playlist .song__item a.jp-playlist-item:hover:before {
  background-image: url("icons/icon-play.png");
}
.album__playlist .song__item a.jp-playlist-item.jp-playlist-current:before {
  background-image: url("icons/icon-sound-wave.png");
}
.album__playlist .song__youtube {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .album__playlist .song__youtube {
    margin-right: 10px;
  }
}
.album__playlist .song__time {
  font-size: 24px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .album__playlist .song__time {
    font-size: 16px;
  }
}
.album__playlist .song__info {
  flex: 1;
}
.album__playlist .song__name,
.album__playlist .song__singer {
  display: block;
}
.album__playlist .song__name {
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .album__playlist .song__name {
    font-size: 16px;
  }
}
.album__playlist .song__singer {
  font-weight: 200;
}
@media (max-width: 767px) {
  .album__playlist .song__singer {
    font-size: 14px;
  }
}
.album__header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.album__header img {
  margin-right: 10px;
}
.album__title {
  font-weight: 300;
}
.album__img {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .album__img {
    max-width: 100%;
  }
}
.album__song, .album__details {
  font-weight: 300;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .album__song, .album__details {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .about__section .section__title {
    font-size: 22px;
  }
}
@media (max-width: 419px) {
  .about__section .section__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .about__section {
    background-image: url("img/about-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
  }
}
.about__content {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "text" "button" "sign" "img" "quote";
}
@media (min-width: 768px) {
  .about__content {
    gap: 30px;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas: "text img" "quote img" "button img" "sign img";
    grid-auto-rows: auto auto auto 1fr;
  }
}
.about__content .button_bg {
  margin-top: 0;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .about__content .button_bg.line:after, .about__content .button_bg.line:before {
    width: 100px;
  }
}
@media (min-width: 768px) {
  .about__content .button_bg {
    margin-top: 10px;
  }
}
.about__text {
  grid-area: text;
  z-index: 5;
}
.about__text p:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .about__text p:not(:last-child) {
    margin-bottom: 25px;
  }
}
.about__sign {
  grid-area: sign;
  z-index: 5;
  mix-blend-mode: hard-light;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .about__sign {
    min-width: 380px;
  }
}
@media (max-width: 767px) {
  .about__sign {
    width: 100%;
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .about__sign {
    margin-top: -30px;
  }
}
.about__sign img {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .about__sign img {
    max-height: 150px;
  }
}
@media (max-width: 767px) {
  .about__sign img {
    max-height: 70px;
  }
}
.about__img {
  grid-area: img;
  max-width: 565px;
}
.about__img img {
  pointer-events: none;
}
@media (max-width: 767px) {
  .about__img {
    margin-top: -70px;
    background-image: url("img/about-bg-mob.jpg");
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .about__img {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .about__img img {
    width: 100%;
  }
}
.about__quote {
  grid-area: quote;
  color: var(--gold);
  font-size: 24px;
  font-family: var(--second-family);
  display: flex;
  align-items: flex-start;
  max-width: 540px;
  line-height: 1.15;
  z-index: 5;
}
@media (max-width: 1024px) {
  .about__quote {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .about__quote {
    font-size: 18px;
  }
}
.about__quote img {
  margin-right: 32px;
  margin-top: 5px;
}
@media (max-width: 1024px) {
  .about__quote img {
    max-width: 40px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .video__section .swiper-button-next, .video__section .swiper-button-prev {
    display: none;
  }
}
.video .section__title {
  margin-bottom: 5px;
}
.video__item {
  position: relative;
}
@media (min-width: 768px) {
  .video__item {
    padding: 0 60px;
  }
}
.video__item a:before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.video__item a:hover:before {
  opacity: 0.5;
}
.video__item a:after {
  content: "\f04b";
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "FontAwesome", sans-serif;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .video__item a:after {
    top: 40%;
  }
}
.video__item img {
  width: 100%;
}
.video__info {
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  padding-top: 17px;
  position: relative;
}
@media (min-width: 768px) {
  .video__info {
    position: absolute;
    padding: 30px 25px;
    left: 60px;
    right: 60px;
  }
}
@media (max-width: 767px) {
  .video__title {
    font-size: 24px;
  }
}
.video__desc {
  color: #fff;
}
.video__bg {
  margin-bottom: 15px;
}
.video__bg .section__block {
  padding: 0;
}
.video__bg video {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.video__wrapper {
  position: relative;
}
.video__wrapper:before {
  content: "";
  position: absolute;
  inset: 0; /* растягиваем на весь блок */
  background: linear-gradient(to top, rgb(0, 0, 0), transparent 20%) top, linear-gradient(to bottom, rgb(0, 0, 0), transparent 20%) bottom, linear-gradient(to left, rgb(0, 0, 0), transparent 5%) left, linear-gradient(to right, rgb(0, 0, 0), transparent 5%) right;
  pointer-events: none; /* чтобы не мешал кликам */
  z-index: 1;
}

.book__page .book__list {
  gap: 40px;
  display: grid;
}
.book__page .book__img {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .book__page .book__img {
    height: 400px;
  }
}
@media (max-width: 1199px) {
  .book__page .book__img {
    flex: 1 0 25%;
  }
}
.book__section {
  background-image: url("img/book-bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 1024px) {
  .book__section {
    background-size: initial;
  }
}
.book__list {
  position: relative;
  padding: 0 0 22px;
}
@media (min-width: 1025px) {
  .book__list .swiper-wrapper {
    display: flex;
    align-items: center;
  }
}
.book__list .swiper-pagination {
  bottom: -5px !important;
}
@media (max-width: 1023px) {
  .book__list .swiper-pagination {
    position: absolute;
    top: 355px !important;
    bottom: auto !important;
  }
}
@media (max-width: 1024px) {
  .book__list .swiper-button-prev, .book__list .swiper-button-next {
    top: 345px;
    transform: translateY(-172.5px);
  }
}
.book__item {
  text-align: center;
}
@media (min-width: 1024px) {
  .book__item {
    display: flex;
    align-items: center;
    padding: 0 60px;
    gap: 3.5%;
  }
}
@media (min-width: 1200px) {
  .book__item > div {
    flex: 0 1 48%;
  }
}
.book__img {
  position: relative;
  margin-bottom: 44px;
}
@media (min-width: 1200px) {
  .book__img {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
  }
}
@media (min-width: 1199px) {
  .book__presentation {
    display: inline;
    max-height: 100%;
    margin-right: -60px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .book__presentation {
    height: 345px;
    margin-right: -20px;
  }
}
@media (max-width: 1199px) and (min-width: 1024px) {
  .book__presentation {
    display: none;
  }
}
@media (max-width: 767px) {
  .book__presentation {
    display: none;
  }
}
.book__cover {
  border: 1px solid var(--gold);
}
@media (min-width: 1024px) {
  .book__content {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .book__content .button_wrapper {
    justify-content: flex-start;
  }
}
.book__title {
  margin-bottom: 10px;
  text-transform: none;
  font-size: 26px;
}
@media (min-width: 768px) {
  .book__title {
    font-size: 36px;
  }
}
@media (min-width: 1025px) {
  .book__title {
    margin-bottom: 20px;
  }
}
.book__desc {
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .book__desc {
    margin-bottom: 20px;
  }
}
.book__quote {
  margin-bottom: 15px;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
@media (min-width: 1025px) {
  .book__quote {
    margin-bottom: 30px;
  }
}
.book__button {
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 5px;
  line-height: 14px;
  font-weight: 400;
  transition: all 3s;
}
.book__button:hover {
  background: linear-gradient(-30deg, rgba(255, 255, 255, 0) 0%, rgba(219, 159, 50, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) {
  .book__button {
    padding: 22px 28px;
  }
}
.book__button span {
  display: none;
}
@media (min-width: 768px) {
  .book__button span {
    display: inline;
  }
}

.contact__wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.contact__list {
  display: flex;
  flex-direction: column;
}
.contact__list a {
  text-decoration: none;
}
.contact__list--main {
  color: var(--gold);
  gap: 40px;
  margin-bottom: 40px;
}
.contact__list--main a {
  color: var(--gold);
}
.contact__list--social {
  gap: 20px;
}
.contact__list--social a {
  color: #fff;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact__content {
  display: flex;
  flex-direction: column;
}
.contact__content--reverse {
  flex-direction: column-reverse;
}
.contact__title {
  font-size: 24px;
  font-weight: 700;
}
.contact__title--bigger {
  font-size: 28px;
}
.contact__label {
  font-weight: 200;
}
.contact__form {
  background: var(--dark);
  border-radius: 5px;
  padding: 20px;
}
.contact__form label {
  margin-bottom: 8px;
  margin-left: 15px;
  line-height: 1;
}

/*# sourceMappingURL=style-redesign.css.map */
