html {
  font-size: 10px;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

*,
*:before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

.introtext {
  display: none;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Ñ Ð±Ð°Ð½Ð½ÐµÑ€Ð¾Ð¼ */
.banner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background: url(../img/banner.svg);
  width: 100%;
  background-size: cover;
  height: 380px;
  background-position: top center;
  border-radius: 15px;
}

.banner-text {
  max-width: 50%;
  margin: auto 5rem;
}

.banner-text h2 {
  line-height: 1.1;
    font-size: 3.8rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 0;
    margin-top: 0;
}

.banner-text p {
  line-height: 2;
  font-size: 1.6rem;
  color: #242424;
  margin: 10px 0 0 0;
}

.banner-mob {
  display: none;
}

/* Ð¡ÐµÐºÑ†Ð¸Ñ Ñ ÐºÐ½Ð¾Ð¿ÐºÐ°Ð¼Ð¸ Ð½Ð°Ð²Ð¸Ð³Ð°Ñ†Ð¸Ð¸ */
.nav-board {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  gap: 15px;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  background-color: #f4f5fa;
  padding: 25px 30px;
  border-radius: 10px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #242424;
  cursor: pointer;
  transition: all 0.25s;
  line-height: 1.7;
}

.nav-btn:hover {
  background-color: #f7d407;
  border: 1px solid #242424;
  box-shadow: 0px 8px 0px 0px rgba(36, 36, 36, 1);
}

/* Ð¢ÐµÐºÑÑ‚ Ð¾Ð¿Ð¸ÑÐ°Ð½Ð¸Ðµ */
.description-block {
  margin-top: 30px;
  padding-left: 25px;
    border-left: 5px solid #f7d407;
}

.description-text {
  display: flex;
  flex-direction: column;
}

.description-text h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 30px 0 20px;
  padding: 10px 0;
}

.description-text p {
  font-size: 1.8rem;
  color: #242424;
  line-height:2;
  margin: 20px 0;
}

.description-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  margin: 20px 0 20px;
}

.description-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 10px 0;
  border-radius: 15px;
  border: 1px solid #d8d8d8;
}

.description-card__img {
  max-width: 80px;
}

.description-card__img img {
  width: 100%;
}

.description-card__text {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.wide-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.wide-img img {
  max-width: 750px;
  margin: 0 auto;
}

/* ÐŸÐ¾Ð´Ñ‡ÐµÑ€ÐºÐ¸Ð²Ð°Ð½Ð¸Ðµ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ° */
.under-line {
  position: relative;
}

.under-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 5px;
  background-color: #f7d407;
}

/* О нас */

.about-us {
  margin-top: 90px;
}

.about-us p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 20px 0 0;
}

.about-us-card {
  display: grid;
  background-color: #f4f5fa;
  grid-template-columns: 1fr;
  padding: 4rem;
  border-radius: 15px;
}

.about-us-card__text h3 {
  font-size: 3rem;
  color: #242424;
  font-weight: 600;
  margin: 0 0 15px;
  padding: 10px 0;
}

.about-us-card__text:nth-child(2) {
  margin-top: 30px;
}

.about-us-card__text p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 10px 0;
}

.about-us-card__text ul {
  display: block;
}

.about-us-card__items {
  display: grid;
    grid-template-columns:  1fr 1fr;
    gap:30px;
    margin-top: 50px;
}

.about-us-card__item {
  display: flex;
  flex-direction: column;
}


.about-us-card__item h4 {
  font-size: 3rem;
    margin: 0;
    color: #f7d407;
}

.about-us-card__item p {
  font-size: 1.8rem;
    color: #242424;
    line-height: 1.7;
    margin: 10px 0 0;
}

/* Площадки для стримов */
.streaming {
  margin-top: 120px;
}

.streaming h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 30px 0 20px;
  padding: 10px 0;
}

.streaming p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 10px 0 0;
}

.streaming-cards {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.streaming-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  background-color: #f7d407;
  padding: 30px 40px;
  border-radius: 10px;
  border: 1px solid #090909;
  font-size: 1.6rem;
  color: #131313;
  text-align: center;
  line-height: 1.7;
}



.about-us-card__text li {
  font-size: 1.6rem;
  color: #242424;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  max-width: 90%;
}

.streaming-card__img {
  max-width: 120px;
}

.streaming-card__img img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
}

/* Блок с видео */
.for-us {
  margin-top: 120px;
}

.for-us h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 30px 0 20px;
  padding: 10px 0;
  text-align: center;
}

.for-us p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 20px 0 0;
  text-align: center;
}

.video-block {
  display: flex;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

iframe {
  border-radius: 15px;
  width: 100%;
  height: 480px;
  margin-top: 10px;
}

/* Ð‘Ð»Ð¾Ðº Ð¿Ñ€ÐµÐ¸Ð¼ÑƒÑ‰ÐµÑÑ‚Ð²Ð° */
.features {
  margin-top: 120px;
}

.features h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 0 0 15px;
    text-align: center;
}


.features-cards {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  margin: 30px 0 0;
  gap: 20px;
}

.features-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid #d8d8d8;
  border-radius: 15px;
  padding: 40px 30px 40px;
  position: relative;
}

.features-card:nth-child(10) {
  grid-column-start: 1;
  grid-column-end: 4;
}

.features-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f7d407;
  transition: 0.3s;
  border-radius: 1.5rem;
}

.features-card:hover:after {
  height: 100%;
  border: 1px solid #090909;
  box-shadow: 0px 8px 0px 0px rgb(36 36 36);
}

.features-card__img {
  display: flex;
  z-index: 2;
}

.features-card__img img {
  max-width: 230px;
  margin: 0 auto;
}

.features-card__text {
  margin-top: 20px;
  text-align: left;
  z-index: 2;
}

.features-card__text h4 {
  font-size: 2.2rem;
  margin: 0 0 5px;
  color: #242424;
  font-weight: 800;
  text-align: center;
}

.features p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 20px 0;
  text-align: left;
}

.features-card__text p {
  font-size: 1.7rem;
  margin: 15px 0 0;
  line-height: 1.7;
  color: #242424;
  text-align: center;
}

/* Ð‘Ð»Ð¾Ðº Ñ Ñ†ÐµÐ½Ð°Ð¼Ð¸ */
.prices {
  margin-top: 120px;
}

.prices h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 30px 0 20px;
  padding: 10px 0;
}

.prices-cards {
  margin-top: 40px;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}

.prices-cards a {
  display: contents;
}

/* ÐœÐ°Ð»ÐµÐ½ÑŒÐºÐ°Ñ ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ° */
.prices-card-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #242424;
  border-radius: 15px;
  background-color: #f7d407;
  padding: 30px;
  height: 300px;
}

.prices-card-small-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prices-card-small-1:nth-child(1) {
  border-right: 2px solid #ab940e;
}

.prices-card-small__img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 30px;
}

.prices-card-small__img img {
  width: 80% !important;
  margin: 0 auto;
}

.prices-card-small__title h4 {
  font-size: 2.2rem;
  margin: 0 auto;
  color: #242424;
  font-weight: 600;
  text-align: center;
  max-width: 75%;
}

.prices-card-small__text p {
  font-size: 1.8rem;
  margin: 0 auto;
  font-weight: 600;
  color: #242424;
  text-align: center;
}

.small-txt {
  font-size: 1.2rem;
  color: #b1990d;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.small-txt a {
  color: #000;
}

/* Ð¨Ð¸Ñ€Ð¾ÐºÐ°Ñ ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ° */
.prices-card-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid #242424;
}

.prices-card-large p {
  font-size: 1.8rem;
  margin: 0;
  color: #242424;
  text-align: center;
  line-height: 1.7;
  padding: 0 20px;
}

.important-text {
  font-size: 3rem;
  color: #000;
  font-weight: 600;
}

.attention-block {
  background-color: #f7d407;
  padding: 10px 0;
  margin: 15px 0 15px;
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
}

.we-get {
  margin-top: 120px;
}

.we-get h3 {
  font-size: 3.6rem;
    color: #242424;
    font-weight: 600;
    margin: 0 0 15px;
    padding: 10px 0;
    text-align: center;
}

.we-get p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
}

.we-get-cards {
  margin-top: 70px;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
}

.we-get-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 15px;
  border: 1px solid #d8d8d8;
  padding: 60px 40px 40px 20px;
  position: relative;
}


.we-get-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f7d407;
  transition: 0.3s;
  border-radius: 1.5rem;
}


.we-get-card__img {
  max-width: 30%;
  position: absolute;
  top: -30px;
  right: 6px;
  z-index: 2;
}

.we-get-card__img img {
  width: 95px !important;
  max-width: initial;
}

.we-get-card__text {
  z-index: 2;
}

.we-get-card__text h4 {
  font-size:2rem;
  margin: 0 0 0 5px;
  color: #242424;
  font-weight: 800;
  max-width: 75%;
}

.we-get-card__text p {
  font-size: 1.7rem;
  margin: 15px 0 0;
  line-height: 1.7;
  text-align: left;
}

/* ÐšÐ°Ñ€Ñ‚Ð¾Ñ‡ÐºÐ° Ð´ÐµÑ„Ð¾Ð»Ñ‚ */
.default-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  border: 1px solid rgb(36 36 36);
  border-radius: 15px;
  gap: 5px;
  cursor: pointer;
}

.default-card__text p {
  font-size: 2rem;
  margin: 0;
  color: #242424;
  text-align: center;
  line-height: 1.7;
  transition: 0.3s;
}

.default-card:hover {
  box-shadow: 0px 8px 0px 0px rgb(36 36 36);
  transition: 0.3s;
}

.bold-text {
  font-weight: 600;
}

.default-card__img {
  max-width: 55px;
  display: flex;
  align-items: center;
}

.default-card__img img {
  width: 100%;
  height: auto;
}

/* ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ */
.feed-back {
  margin-top: 120px;
}

.feed-back h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 0 0 20 px;
  padding: 10px 0;
}

.feed-back-content {
  width: 100%;
  height: 350px;
}

.feed-back-content iframe {
  width: 100%;
  height: 290px;
  border-radius: 15px;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-navi {
  display: flex;
  justify-content: flex-end;
  max-width: 80px;
  height: 22px;
  position: relative;
  margin-top: 26px;
}

/* ÐšÐ°Ðº Ð¼Ñ‹ Ñ€Ð°Ð±Ð¾Ñ‚Ð°ÐµÐ¼ */
.work-step {
  margin-top: 120px;
}

.work-step h3 {
  font-size: 3.6rem;
    color: #242424;
    font-weight: 600;
    margin: 0 0 15px;
    padding: 0 0 10px 0;
}

.work-step p {
  font-size: 1.8rem;
    color: #242424;
    line-height: 1.7;
    margin: 20px 0 0;
}

.work-step-block {
  margin-top: 20px;
}

.tabs-1 {
  display: flex;
  width: 100%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  list-style: inside;
  margin: 0 0;
  padding: 0 0;
}

.tabs-1 > li {
  transition-duration: 0.25s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 20px 20px 20px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #8e8e8e;
  font-size: 1.5rem;
  margin: 0;
}

.tabs-wide {
  flex-grow: 1;
}

.tabs-1 > li.active {
  color: #242424;
  font-size: 2rem;
  background-color: #f7d407;
  border: 1px solid #242424;
  border-radius: 10px;
}

.tab__content {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 5px;
}

.tab__content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
  margin: 0;
}

.tab__content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}

.tab__content > li .content__wrapper {
  text-align: left;
  font-size: 1.5rem;
  border-radius: 10px;
  line-height: 1.7;
  width: 100%;
  padding: 40px 30px 40px 30px;
  background-color: #fff;
  border: 1px solid #242424;
}

.content__wrapper p {
  text-align: center;
}

.tabs-1 li:before {
  display: none;
}

.tab__content > li:before {
  display: none;
}

/* Ð‘Ñ€Ð¾Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ Ð¸Ð»Ð¸ Ð·Ð°ÐºÐ°Ð· */
.be-reserved {
  margin-top: 120px;
}

.be-reserved h2 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}

.be-reserved p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.calendar-resbook-webform-block-date-item-select
  .calendar-resbook-webform-block-date-item-inner,
.calendar-resbook-webform-block-col-item-select
  .calendar-resbook-webform-block-col-item-inner {
  background: #f7d407;
}

.calendar-resbook-webform-block-col-item-inner {
  background: #f1f1f1;
}

.for-us {
  margin-top: 120px;
}

.for-us h3 {
  font-size: 3.6rem;
  color: #242424;
  font-weight: 600;
  margin: 30px 0 20px;
  padding: 10px 0;
  text-align: center;
}

.for-us p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 20px 0 0;
  text-align: center;
}

.video-block {
  display: flex;
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

.video-block iframe {
  border-radius: 15px;
  width: 100%;
  height: 480px;
  margin-top: 10px;
}


.variants {
  margin-top: 120px;
}


.variants h3 {
  font-size: 3.6rem;
    color: #242424;
    font-weight: 600;
    margin: 30px 0 20px;
    padding: 10px 0;
    text-align: center;
}

.variants-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 100px;
}

.variants-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  vertical-align: middle;
  gap: 20px;
}

.variants-card__img{
  max-width: 100%;
}

.variants-card__text {
  margin: auto 0;
}

.variants-card__text h4{
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
}

.variants-card__text p{
  font-size: 1.5rem;
    margin: 12px 0 0;
    color: #242424;
    line-height: 2;
    max-width: 80%;
}


.variants-card:nth-child(2) .variants-card__text{
  order: 1;
}

.variants-card:nth-child(2) .variants-card__img {
  order: 2;
}


.variants-card:nth-child(4) .variants-card__text{
  order: 1;
}

.variants-card:nth-child(4) .variants-card__img {
  order: 2;
}


.variants-card:nth-child(6) .variants-card__text{
  order: 1;
}

.variants-card:nth-child(6) .variants-card__img {
  order: 2;
}

.our-serv {
  margin-top: 120px;
}

.our-serv h3 {
  font-size: 3rem;
    color: #242424;
    font-weight: 600;
    margin: 0 0 15px;
    padding: 0 0 10px;
}

.our-serv p {
    font-size: 1.8rem;
    color: #242424;
    line-height: 1.7;
    margin: 60px 0 0;
    text-align: left;
}

.our-serv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
}

.our-serv-card {
  display: grid;
  grid-template-columns: 1fr 4fr;
  padding: 0;
  align-items: center;
  gap: 20px;
}

.our-serv-card__number {
  display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #f7d407;
    border-radius: 50%;
    border: 1px solid #131313;
    width: 80px;
    height: 80px;
}

.our-serv-card__number p {
  font-size: 2.5rem;
    color: #131313;
    line-height: 1.7;
    margin: 0;
    font-weight: 800;
}

.our-serv-card__text p {
  color: #242424;
    line-height: 1.7;
    margin: 0;
    font-size: 1.7rem;
    text-align: left;
}

.sell-buy {
  margin-top: 120px;
}

.sell-buy h3 {
  font-size: 3.6rem;
    color: #242424;
    font-weight: 600;
    margin: 0 0 20px;
    text-align: center;
}

.sell-buy p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 20px 0 0;
  text-align: center;
}

.sell-buy-cards {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.sell-buy-card {
  display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #d8d8d8;
}

.sell-buy-card__text {
  width: 65%;
    padding: 0 0 0 4rem;
}

.sell-buy-card__text h4{
  font-size: 2.2rem;
  margin: 0 0 5px;
  color: #242424;
  font-weight: 800;
}

.sell-buy-card__text p{
  font-size: 1.6rem;
    color: #242424;
    line-height: 1.7;
    margin: 20px 0;
  text-align: left;
}

.sell-buy-card__img {
 max-width: 300px;
    position: relative;
}

.sell-buy-card__img img {
  width: 100%;
}

.questions {
  margin-top: 120px;
}

.questions h3 {
  font-size: 3.6rem;
    color: #242424;
    font-weight: 600;
    margin: 0 0 20px;
    text-align: center;
}

.questions p {
  font-size: 1.8rem;
  color: #242424;
  line-height: 1.7;
  margin: 0;
}

.accordion {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-body {
  display: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: #f0eeee;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.5rem;
}

.accordion-body__contents {
  margin-top: 1rem;
  border-radius: 15px;
  padding: 2rem 2rem;
  background: #f7d407;
  color: #242424;
  border: 1px solid #131313;
}

.accordion-body__contents p {
  font-size: 1.5rem;
  line-height: 2;
}

.accordion-header:hover {
  background: #f7d407;
  position: relative;
  z-index: 5;
}

.accordion-header h4 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
}

.accordion__item > .accordion-header:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: relative;
  transition: 0.3s all;
  transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  background: #f7d407;
  border: 1px solid #131313;
}

.accordion__item .accordion__item .accordion-header {
  background: #f7d407;
  color: #242424;
  border: 1px solid #131313;
}


.copy-block {
  float: left;
  padding: 11px 0px 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.custom-footer-item__img {
  height: 10px;
}

.custom-footer-item__img svg{
  height: 100%;
    padding: 0 0 0 20px;
}