/* Variables */
:root{
    --white: #ffffff;
    --dark: #111111;
    --bg-dark: #5C5C5C;
    --yellow: #FFD401;
    --main-gray: #727272;
    --gray: #3F3D34;

    --title-h1: 370px;
    --title-h2: 170px;
    --title-h3: 128px;
    --title-h4: 80px;
    --title-h5: 70px;
    --title-main: 60px;
    --title-little: 40px;
    --title-big-unisans: 48px;
    --title-small: 32px;

    --subtitle: 20px;
    --subtitle-big: 30px;

    --main-text: 24px;
    --menu-footer-text: 11px;
    --reviews-text: 14px;
    --small-text: 22px;
    --shop-text: 16px;
    --form-text: 12px;
}

/* Fonts */
@font-face {
    font-family: 'gropledbold';
    src: url('../fonts/gropled-bold-webfont.woff2') format('woff2'),
         url('../fonts/gropled-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'uni_sansbold';
    src: url('../fonts/unisansbold-webfont.woff2') format('woff2'),
         url('../fonts/unisansbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'uni_sansbook';
    src: url('../fonts/unisansbook-webfont.woff2') format('woff2'),
         url('../fonts/unisansbook-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'uni_sans_regularregular';
    src: url('../fonts/unisansregular-webfont.woff2') format('woff2'),
         url('../fonts/unisansregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'uni_sanssemibold';
    src: url('../fonts/unisanssemibold-webfont.woff2') format('woff2'),
         url('../fonts/unisanssemibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* Reset styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
    outline: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Common styles */
html {
    scroll-behavior: smooth;
}
body {
    color: var(--white);
    font-size: var(--main-text);
    font-family: 'uni_sans_regularregular';
    max-width: 100%;
    background-color: var(--dark);
}
.wrapper {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}
.wrapper_thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}
.main-title {
    font-family: 'gropledbold';
    font-size: var(--title-main);
}
.button {
    display: block;
    color: var(--dark);
    background-color: var(--yellow);
    font-size: var(--main-text);
    font-family: 'uni_sanssemibold';
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    line-height: 33px;
    transition: all .3s linear;
}
.button_yellow:hover {
    color: var(--yellow);
    background-color: var(--dark);
}
.button_dark {
    color: var(--yellow);
    background-color: var(--dark);
}
.button_dark:hover {
    opacity: .8;
    transform: scale(.95);
}
.button_mrg {
    margin-bottom: 30px;
}
.title-page__title {
    padding-bottom: 115px;
    font-family: 'gropledbold';
    font-size: 19vw;
    color: var(--yellow);
    line-height: 70%;
}
.title-page__title_little {
    font-size: var(--title-h4);
}
.title-page__title_show {
    padding-bottom: 40px;
    line-height: 80%;
}
.title-page_pdn {
    padding-bottom: 0;
}
input::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
input::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
input:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
input:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
input:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
input:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}
.yellow {
    color: var(--yellow);
}

/* Header styles */
.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 75px 10px;
    width: 100%;
}
.header__image {
    flex: 1;
}
.header__logo {
    width: 81px;
    height: 28px;
}
.navigation {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 130px;
}
.nav-list__link {
    color: var(--white);
    transition: all .3s linear;
}
.nav-list__link:hover {
    color: var(--yellow);
}
.header__phone {
    color: var(--yellow);
    font-family: 'uni_sansbold';
}
.header__phone:hover {
    text-decoration: underline;
}
.close {
    display: none;
}

/* burger */
.burger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer;
}
.burger__line {
    width: 24px;
    height: 1px;
    background-color: var(--yellow);
}
.burger__line_second {
    width: 30px;
    margin: 4px 0;
}

/* Hero styles */
.hero {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 30px;
}
.hero-info {
    background-color: var(--yellow);
    border-radius: 20px;
    padding: 80px 160px 50px 50px;
    color: var(--dark);
}
.hero-info__title {
    margin-bottom: 20px;
}
.hero-info__text {
    font-family: 'uni_sansbook';
    font-size: var(--small-text);
    margin-bottom: 50px;
}
.hero__image {
    border-radius: 20px;
    width: 390px;
    object-fit: cover;
}
.hero-info_button {
    width: 240px;
}

/* Slider services */
.main-slider {
    margin-bottom: 30px;
}
.main-slider__inner {
    margin: 0 -15px;
}
.main-slider__slide {
    position: relative;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 350px 50px 50px 50px;
    z-index: 1;
}
.main-slider__slide::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 100%);
    z-index: -1;
    border-radius: 20px;
}
.main-slider__slide_first {
    background-image: url(../images/home-page/slide.jpg);
}
.main-slider__slide_second {
    background-image: url(../images/home-page/slide.jpg);
}
.main-slider__slide_third {
    background-image: url(../images/home-page/slide.jpg);
}
.main-slider__slide_first-events {
    background-image: url(../images/events/slide-1.jpg);
}
.main-slider__slide_second-events {
    background-image: url(../images/events/slide-1.jpg);
}
.main-slider__slide_third-events {
    background-image: url(../images/events/slide-1.jpg);
}
.event_eleventh-event {
    background-image: url(../images/show/bg1.jpg);
}
.design-slide {
    max-height: 700px;
    object-fit: cover;
}
.design-slide_smoke {
    max-height: 1000px;
    object-fit: contain;
}
.slick-main {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--yellow);
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
    z-index: 2;
}
.slick-main_prev {
    left: 50px;
    background-image: url(../images/icons/arr-left.svg);
}
.slick-main_next {
    right: 50px;
    background-image: url(../images/icons/arr-right.svg);
}
.services-slider_btnprev {
    left: -7px;
}
.services-slider_btnnext {
    right: -7px;
}
.home-video {
    max-width: 100%;
    height: 475px;
    border-radius: 20px;
}

/* First Pages Link */
.first-pages-links {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 30px;
}
.page-link__title {
    font-size: var(--title-h2);
    color: var(--yellow);
    font-family: 'gropledbold';
    line-height: 70%;
}
.page-link__span {
    display: block;
}
.page-link {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: calc(100% / 2 - 15px);
    padding: 160px 50px 50px 50px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.page-link::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 100%);
    z-index: -1;
    border-radius: 20px;
}
.page-link_first {
    background-image: url(../images/home-page/link-img-1.jpg);
}
.page-link_second {
    background-image: url(../images/home-page/link-img-2.jpg);
}
.page-link__link {
    width: 190px;
}

/* About styles */
.about-info {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/home-page/about-img.jpg);
    border-radius: 20px;
    padding: 240px 205px 50px 50px;
    margin-bottom: 30px;
    font-family: 'uni_sansbold';
    font-size: var(--small-text);
    z-index: 1;
}
.about-info::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(246, 209, 11) 100%);
    z-index: -1;
    border-radius: 20px;
}
.about-info__title {
    margin-bottom: 40px;
}
.many-picture-slider__inner {
    margin: 0 -15px;
}
.many-picture-slider__inner_design {
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}
.many-picture-slider__slide {
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    padding: 270px 50px 50px 50px;
    min-height: 440px !important;
    z-index: 1;
}
.many-picture-slider__slide::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 100%);
    z-index: -1;
    border-radius: 20px;
}
.many-picture-slider__slide_first {
    background-image: url(../images/home-page/about-slide-1.jpg);
}
.many-picture-slider__slide_second {
    background-image: url(../images/home-page/about-slide-2.jpg);
}
.many-picture-slider__slide_third {
    background-image: url(../images/home-page/about-slide-3.jpg);
}
.many-picture-slider__slide_fourth {
    background-image: url(../images/home-page/about-slide-2.jpg);
}
.many-picture-slider__slide_rent {
    padding: 50px 35px 50px 50px;
    background-color: var(--gray);
    justify-content: space-between;
    row-gap: 10px;
}
.many-picture-slider__slide_rent::after {
    display: none;
}
.many-picture-slider__text {
    margin-bottom: 15px;
}
.many-picture-slider__text_rent {
    margin-bottom: 0;
    font-size: var(--title-small);
}
.many-picture-slider__link {
    font-size: var(--shop-text);
    color: var(--yellow);
}
.many-picture-slider__link:hover {
    text-decoration: underline;
}
.many-picture-slider__image {
    max-height: 190px;
    object-fit: contain;
}
.many-picture-slider__item_design {
    color: var(--white);
}
.many-picture-slider__slide_design {
    transition: background-position 0.5s ease;
    width: calc(100% / 3);
}
.many-picture-slider__more {
    color: var(--yellow);
    text-align: right;
    padding-top: 15px;
    font-size: var(--reviews-text);
    transition: all .5s linear;
    opacity: 0;
}
.many-picture-slider__slide_design:hover {
    background-position: center -20px;
}
.many-picture-slider__slide_design:hover .many-picture-slider__more {
    opacity: 1;
}
.many-picture-slider__slide img {
    max-width: 500px;
}
.many-picture-slider__more_design {
    display: block;
    position: absolute;
    right: 20px;
    bottom: 30px;
}

/* Reviews styles */
.reviews {
    margin-bottom: 55px;
}
.review {
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
    border: 1px solid rgb(255, 212, 1);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    font-size: var(--reviews-text);
}
.review__image {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 50%;
}
.review-info__title {
    font-family: 'uni_sanssemibold';
    font-size: var(--subtitle);
    margin-bottom: 10px;
}
.review-info__text {
    margin-bottom: 15px;
}
.review-info__link {
    color: var(--yellow);
}
.review-info__link:hover {
    text-decoration: underline;
}
.reviews-slider {
    margin: 0 -15px;
}
.reviews-slider__dots li.slick-active button:before {
    opacity: 1 !important;
    color: var(--yellow) !important;
}
.reviews-slider__dots li button:before {
    font-size: 15px !important;
    opacity: 1 !important;
    color: var(--white) !important;
}

/* Application and form styles */
.application {
    display: flex;
    background: var(--yellow) url(../images/home-page/form-img.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom right -30px;
    border-radius: 20px;
    padding: 110px 50px 60px 50px;
    margin-bottom: 60px;
}
.application_thankyou {
    padding: 110px 50px 110px 50px;
}
.application_mrg {
    margin-bottom: 30px;
}
.application-info {
    max-width: 290px;
    margin-right: 40px;
    color: var(--dark);
}
.application-info_thankyou {
    max-width: 100%;
}
.application-info__title {
    font-family: 'uni_sansbold';
    font-size: var(--title-small);
    margin-bottom: 50px;
    text-transform: uppercase;
}
.application-info__title_thankyou {
    margin-bottom: 10px;
}
.application-info__text_thankyou {
    margin-bottom: 50px;
}
.form {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
    max-width: 380px;
}
.form__field {
    height: 55px;
    border: 1px solid rgb(17, 17, 17);
    border-radius: 20px;
    font-size: var(--reviews-text);
    font-family: 'uni_sans_regularregular';
    padding: 0 38px;
    background-color: var(--yellow);
    color: var(--dark);
    outline: none;
}
.form__field::placeholder {
    color: var(--dark);
}
.button_form {
    border-radius: 20px;
    font-family: 'uni_sansbold';
    font-size: var(--reviews-text);
}
.form__acceptance {
    color: var(--dark);
    font-size: var(--form-text);
    text-align: center;
}
.form__link {
    color: var(--dark);
    font-family: 'uni_sansbold';
}

/* Contacts Block Styles */
.contacts {
    margin-bottom: 60px;
}
.contacts__title {
    margin-bottom: 10px;
}
.contacts__subtitle {
    margin-bottom: 30px;
    font-size: var(--shop-text);
}
.contacts__inner {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}
.contacts__block {
    border: 1px solid rgb(255, 212, 1);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 50px;
    width: calc(100% / 2 - 15px);
}
.contacts__header {
    color: var(--yellow);
    font-size: var(--subtitle-big);
    margin-bottom: 15px;
}
.contacts__info {
    font-size: var(--shop-text);
}
.contacts__link {
    color: var(--white);
    font-size: var(--shop-text);
}
.contacts__link:hover {
    text-decoration: underline;
}

/* Design page styles */
.many-picture-slider {
    padding-bottom: 60px;
}
.many-picture-slider__list {
    font-size: var(--small-text);
}
.many-picture-slider__title {
    margin-bottom: 40px;
    color: var(--yellow);
    font-family: 'uni_sansbold';
    font-size: var(--title-big-unisans);
    line-height: 48px;
}
.many-picture-slider__little {
    font-size: var(--title-small);
}
.many-picture-slider__slide_pdn {
    padding: 120px 50px 60px 50px;
    max-height: 440px;
}
.many-picture-slider__slide_first-design {
    background-image: url(../images/design/projects/graph/20.jpg);
}
.many-picture-slider__slide_second-design {
    background-image: url(../images/design/projects/digital/2a5f3f196080237.66195e0c3314e.png);
}
.many-picture-slider__slide_third-design {
    background-image: url(../images/design/projects/3d/4.jpg);
}
.many-picture-slider__slide_fourth-design {
    background-image: url(../images/design/projects/illustration/project4/16.jpg);
}
.design-image {
    height: 800px !important;
    object-fit: cover;
}
.services-slider {
    margin: 0 -15px 30px;
}

.sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 10px;
    margin-bottom: 60px;
}
.sponsors_mrg {
    margin-bottom: 100px;
}
.sponsor {
    width: calc(20% - 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commerce {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 60px;
}
.commerce-block {
    width: calc(100% / 3 - 20px);
}
.commerce-block {
    border-radius: 20px;
    background-color: var(--yellow);
}
.commerce-block_event {
    width: 100%;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.commerce-block_first {
    padding: 78px 45px 50px 50px;
}
.commerce-block__title {
    color: var(--dark);
    line-height: 90%;
    margin-bottom: 40px;
}
.commerce-block__title_mrg {
    margin: 0 42px 0 0;
    display: block;
}
.commerce-block__span {
    display: block;
}
.commerce-block__link {
    width: 240px;
    display: block;
}
.commerce-block__link_width {
    width: 200px;
}
.commerce-block__image {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.commerce-block_dark {
    background-color: var(--dark);
    border-radius: 20px;
    border: 1px solid var(--yellow);
    padding: 42px 40px;
}
.commerce-block__subtitle {
    color: var(--yellow);
    font-size: var(--title-little);
    font-family: 'gropledbold';
    margin-bottom: 40px;
}

.design-projects {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.design-project {
    flex: 1 1;
    position: relative;
    width: calc(100% / 2);
    min-height: 360px;
    padding: 50px 30px;
    color: var(--yellow);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: flex .8s;
    overflow: hidden;
    z-index: 1;
}
.design-project_one {
    background-image: url(../images/design/projects/graph/20.jpg);
}
.design-project_two {
    background-image: url(../images/design/projects/graph/20.jpg);
}
.design-project_three {
    background-image: url(../images/design/projects/graph/20.jpg);
}
.design-project_four {
    background-image: url(../images/design/projects/graph/20.jpg);
}
.design-project:hover {
    flex: 2 1;
}
.design-project::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.design-project:hover .many-picture-slider__more {
    opacity: 1;
}

/* Events Page Styles */
.events {
    margin-bottom: 60px;
}
.event {
    position: relative;
    padding: 230px 50px 50px 50px;
    margin-bottom: 30px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.event::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 100%);
    z-index: -1;
    border-radius: 20px;
}
.event_first-event {
    background-image: url(../images/event/event-1.jpg);
}
.event_second-event {
    background-image: url(../images/equipment/smoke/bg-smoke.jpg);
}
.event_third-event {
    background-image: url(../images/equipment/smoke/bg-smoke.jpg);
}
.event_fourth-event {
    background-image: url(../images/equipment/carpet/bg-carpet.jpg);
    background-position: bottom center;
}
.event_one-event {
    background-image: url(../images/event/event-4.jpg);
    background-position: bottom center;
}
.event_sixth-event {
    background-image: url(../images/equipment/sparkles/bg-spark.jpg);
    background-position: center center;
}
.event_seventh-event {
    background-image: url(../images/equipment/sound/bg-sound.png);
}
.event_eigth-event {
    background-image: url(../images/event/fire.jpg);
    background-position: center center;
}
.event_ninth-event {
    background-image: url(../images/show/stilts/3.jpg);
    background-position: top center;
}
.event_tenth-event {
    background-image: url(../images/equipment/carpet/slide3.jpg);
    background-position: center center;
}
.event__title {
    font-family: 'gropledbold';
    font-size: var(--title-h4);
    margin-bottom: 50px;
    color: var(--yellow);
}
.event__title_little {
    font-size: var(--title-h5);
}
.event__title_opacity {
    opacity: 0;
}
.event__link {
    width: 190px;
}

/* Event Page Styles */
.happenings {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-family: 'gropledbold';
    color: var(--yellow);
    font-size: var(--title-h5);
    text-align: left;
}
.happenings-block__title {
    line-height: 70%;
}
.happenings-block__span {
    display: block;
}
.happenings-block {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: calc(100% / 2 - 15px);
    max-height: 440px;
    min-height: 440px;
    border-radius: 20px;
    padding: 295px 16px 50px 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.happenings-block::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 100%);
    z-index: -1;
    border-radius: 20px;
}
.happenings-block_first {
    background-image: url(../images/events/event-1.jpg);
}
.happenings-block_second {
    background-image: url(../images/events/event-2.jpg);
}
.happenings-block_third {
    background-image: url(../images/events/event-3.jpg);
}
.happenings-block_fourth {
    background-image: url(../images/events/event-4.jpg);
}

/* Rental Page Styles */
.rentals__title {
    font-family: 'gropledbold';
    font-size: var(--title-main);
    margin-bottom: 20px;
}
.rentals__subtitle {
    margin-bottom: 40px;
}
.rentals__head {
    color: var(--yellow);
    margin-bottom: 10px;
}
.rentals-list {
    margin-bottom: 20px;
}
.rentals__link {
    display: block;
    color: var(--yellow);
    margin-bottom: 30px;
    text-decoration: underline;
}
.rentals__inner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.rental {
    position: relative;
    width: calc(100% / 4 - 24px);
    background-color: var(--gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'uni_sansbold';
    font-size: var(--subtitle);
    padding: 25px;
    row-gap: 5px;
    /* perspective: 1000px;
    transition: transform 0.5s ease, opacity 0.5s ease; */
}
.rental-video {
    cursor: pointer;
}
.rental_popup {
    width: 100%;
    background-color: transparent;
    padding: 0;
}
.rental__video {
    height: 90vh;
}
/* .rental.hidden {
    width: 0;
    height: 0;
    position: absolute;
    transform: scale(0);
    opacity: 0;
    display: block;
}
.rental.visible {
    transform: scale(1);
    opacity: 1;
} */
.rental:hover {
    /* border-radius: 20px 20px 0 0;
    z-index: 10; */
    background-color: var(--main-gray);
}
.rental_popup:hover {
    background-color: transparent;
}
/* .rental__hidden {
    width: 100%;
    position: absolute;
    top: 100%;
    transform-origin: top;
    transform: translateY(-100%) scaleY(0);
    padding: 20px 25px 60px 25px;
    background-color: var(--gray);
    border-radius: 0 0 20px 20px;
}
.rental:hover .rental__hidden {
    transform: translateY(0%) scaleY(1);;
    opacity: 1;
    background-color: var(--main-gray);
} */
.rental__open {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s, opacity 0.5s;
}
.rental__info {
    margin: 30px 0;
    font-family: 'uni_sansbook';
    font-size: var(--shop-text);
}
.rental__image {
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}
.rental__price {
    width: 200px;
    text-transform: uppercase;
    transition: none;
    cursor: default;
}
.rental__price:hover {
    transform: none;
    opacity: 1;
}
.rental__header {
    width: 100%;
    text-align: left;
}
.rental__link {
    width: 100%;
    color: var(--yellow);
    font-size: var(--small-text);
    font-weight: 700;
    margin-top: 10px;
    font-family: 'uni_sansbook';
}
.more {
    width: 200px;
    margin: 0 auto 40px;
    display: block;
}
.more:hover {
    background-color: var(--main-gray);
}
.more_last {
    margin: 0 auto 100px;
}

/* Show Styles Page */
.show {
    position: relative;
    padding: 100px 50px 50px 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    border-radius: 20px;
    margin-bottom: 30px;
    z-index: 1;
    cursor: pointer;
    max-height: 440px;
    transition: max-height 1s ease-in-out;
}
.show.visible {
    max-height: 10000px;
}
.show_pdn {
    padding: 204px 50px 50px 50px;
    background-size: cover;
    background-position: top center;
}
.show::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 29.265%);
    z-index: -1;
    border-radius: 20px;
}
.show_pdn:before {
    background: linear-gradient(180.00deg, rgba(0, 0, 0, 0),rgb(34, 34, 34) 100%);
}
.show_first {
    background-image: url(../images/show/bg_2.jpg);
    background-position: center;
}
.show_second {
    background-image: url(../images/show/office/1.jpg);
}
.show_third {
    background-image: url(../images/show/bg3.jpg);
    margin-bottom: 50px;
}
.show_walkers {
    background-image: url(../images/show/stilts/3.jpg);
    max-height: 100%;
    margin: 0 -15px;
}
.show_school {
    background-image: url(../images/event/event-4.jpg);
    background-position: top -300px center;
}
.show__title {
    font-family: 'gropledbold';
    font-size: var(--title-main);
    color: var(--yellow);
    margin-bottom: 40px;
}
.show__button {
    width: 190px;
}
.show-close {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 35px;
}
.show__info {
    width: calc(100% / 2 - 40px);
}
.show__info_walk {
    width: 100%;
    margin-bottom: 20px;
}
.show__info_yellow {
    color: var(--yellow);
}
.show__info_width {
    width: calc(100% / 3 - 15px);
    margin: 60px 0 40px 0;
}
.show__info_walker {
    margin: 0 0 20px 0;
}
.show__info_full {
    width: 100%;
}
.show__info_border {
    border: 2px solid var(--yellow);
    border-radius: 20px;
    padding: 10px;
}
.show__info_pdnb {
    margin-bottom: 80px;
}
.show__subtitle {
    font-size: var(--subtitle-big);
    margin-bottom: 20px;
    color: var(--yellow);
}
.show__subtitle_walk {
    width: 100%;
}
.show__subtitle_little {
    font-size: var(--subtitle);
}
.show__subtitle_under {
    text-decoration: underline;
    margin: 30px 0;
}
.show__subtitle_font {
    font-size: var(--main-text);
}
.show__image {
    width: calc(100% / 4 - 15px);
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
    border-radius: 20px;
}
.show__picture {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.show-footer {
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.show__price {
    width: 190px;
    cursor: default;
    transition: none;
}
.show__price:hover {
    transform: none;
    color: var(--dark);
    background-color: var(--yellow);
}
.show__price_span {
    text-transform: uppercase;
}
.show__video {
    margin: 0 auto 40px;
    max-width: 100%;
}
.shows {
    margin-bottom: 80px;
}
.show-block {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    margin-bottom: 15px;
}
.gallery {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin: 0 -15px;
}
.gallery__img {
    height: 600px;
    object-fit: cover;
}
.gallery-walkers .gallery__img {
    height: 800px;
}
.gallery-fairytale {
    margin-top: 20px;
}
.gallery-fairytale .gallery__img {
    height: auto;
}
.gallery-office .gallery__img {
    height: 800px;
}
.gallery-office {
    margin-top: 20px;
}
.item-img__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.up {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s linear;
}
.up:hover {
    transform: scale(.9);
}
.up__icon {
    transform: rotate(90deg);
}

/* Footer styles */
.footer {
    display: flex;
    column-gap: 65px;
    color: var(--main-gray);
    font-size: var(--menu-footer-text);
    padding-bottom: 100px;
    width: 100%;
}
.footer-info__logo {
    margin-bottom: 50px;
}
.footer-info__list {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 10px;
}
.footer-info__ico {
    width: 25px;
    height: 25px;
    transition: all .3s linear;
}
.footer-info__ico_tg {
    width: 15px;
    height: 15px;
    transition: none;
}
.footer-info__ico:hover {
    transform: scale(0.8);
}
.footer-info__privacy {
    display: block;
    color: var(--main-gray);
    margin-bottom: 5px;
}
.footer-info__link {
    margin-top: 5px;
    display: flex;
}
.footer-info__link_tg {
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all .3s linear;
}
.footer-info__link_tg:hover {
    transform: scale(0.8);
}
.footer-info__item {
    flex: 1;
}
.footer__inner {
    display: flex;
    column-gap: 30px;
    width: 100%;
}
.footer-menu {
    width: calc(100% / 5);
}
.footer-menu__title {
    color: var(--white);
    font-family: 'uni_sansbold';
    margin-bottom: 10px;
}
.footer-menu__item {
    margin-bottom: 10px;
}
.footer-menu__item:last-child {
    margin-bottom: 0;
}
.footer-menu__link {
    color: var(--main-gray);
}

.hidden {
    display: none !important;
}

/* Popup styles */
.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all .3s linear;
}
.popup__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;    
    background-color: rgb(0 0 0 / 95%);
}
.popup__close {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    background-image: url(../images/icons/cross.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: var(--color-black);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s linear;
}
.popup__close:hover {
    transform: rotate(90deg);
}
.popup__inner {
    position: relative;
    width: 100%;
    max-width: 90%;
    padding: 10px;
    border: 2px solid var(--yellow);
    background-color: var(--gray);
    z-index: 9999;
}
.popup__title {
    text-align: center;
    margin-bottom: 20px;
}

/* Up Button Styles */
.up-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    background-color: var(--yellow);
    cursor: pointer;
    transition: all .3s linear;
    z-index: 99999;
}
.up-btn:hover {
    transform: scale(.9);
}
.up-btn__icon {
    width: 15px;
    transform: rotate(88deg);
}

/* Project Page Styles*/
.project {
    margin-bottom: 50px;
}
.project:last-child {
    margin-bottom: 0;
}
.projects {
    padding-bottom: 100px;
}

/* Thankyou page styles */
.thankyou-main {
    width: 100%;
}
.thank-you-container {
    width: 100%;
}
.thankyou__image {
    display: none;
}

.connect {
    border: 2px solid #ffd401;
    margin-bottom: 60px;
    border-radius: 20px;
    padding: 25px;
}

/* Btn-Back Styles */
.btn-back {
position: absolute;
    left: 20px;
    top: 20px;
    color: #000;
    background-color: var(--yellow);
    background-image: url(../images/icons/arr-left.svg);
    width: 30px;
    background-repeat: no-repeat;
    display: block;
    height: 30px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    background-size: 10px;
    background-position: center center;
}
.video-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.show__video_school {
    max-width: 50%;
}

/* Media Queries */
@media (max-width: 1200px) {
    .commerce-block {
        width: calc(100% / 3 - 10px);
    }
    .commerce-block_event {
        width: 100%;
    }
    .commerce-block__title {
        font-size: 55px;
    }
    .commerce {
        column-gap: 15px;
    }
    .commerce-block_first {
        padding: 78px 30px 50px 30px;
    }
    .commerce-block_dark {
        padding: 42px 20px;
    }
    .commerce-block__subtitle {
        font-size: 35px;
    }
}
@media (max-width: 1155px) {
    .page-link {
        padding: 160px 25px 50px 25px;
    }
}
@media (max-width: 1120px) {
    .hero__image {
        display: none;
    }
    .happenings-block {
        padding: 295px 16px 50px 16px;
    }
    .happenings-block__span {
        display: inline;
    }
    .happenings {
        font-size: var(--title-main);
    }
    .show_school {
        background-position: center center;
    }
    .show_school.visible {
        background-position: top center;
    }
}
@media (max-width: 1024px) {
    .nav-list {
        column-gap: 80px;
    }
    .page-link__title {
        font-size: var(--title-h3);
    }
    .first-pages-links {
        flex-direction: column;
        row-gap: 30px;
    }
    .page-link {
        width: 100%;
    }
    .about-info {
        padding: 50px 205px 50px 50px;
    }
    .review {
        min-height: 460px;
    }
    .commerce {
        flex-direction: column;
        row-gap: 20px;
    }
    .commerce-block {
        width: 100%;
        padding: 50px;
    }
    .commerce-block_picture {
        display: none;
    }
    .commerce-block__span {
        display: inline;
    }
    .title-page__title_little {
        font-size: var(--title-h5);
    }
    .happenings {
        gap: 20px;
        font-size: var(--title-little);
    }
    .happenings-block {
        width: calc(100% / 2 - 10px);
        max-height: 300px;
        min-height: 300px;
    }
    .rentals__inner {
        gap: 20px;
    }
    .rental {
        width: calc(100% / 4 - 15px);
        padding: 25px 15px;
    }
    .rental_popup {
        width: 100%;
    }
    .rentals__title {
        font-size: var(--title-h4);
    }
    .gallery {
        padding-bottom: 0;
    }
    .reviews-slider__dots_show {
        bottom: -15px !important;
    }
    .reviews-slider__dots_service {
        bottom: -33px !important;
    }
    .show__image {
        margin: 0 10px;
    }
    .show {
        max-height: 100%;
    }
    .show_pdn {
        padding: 150px 50px 50px 50px;
    }
    .show__title {
        font-size: var(--title-h5);
    }
    .many-picture-slider__inner_design {
        margin: 0 -15px 50px -15px !important;
    }
    .many-picture-slider__more {
        opacity: 1;
    }
    .design-slide {
        height: 500px !important;
    }
    .design-image {
        height: 700px !important;
    }
    .design-project {
        flex: 1 1 50%;
    }
}
@media (max-width: 1023px) {
    .show__picture_hide {
        display: none;
    }
}
@media (max-width: 940px) {
    .event__title {
        font-size: var(--title-main);
        margin-bottom: 30px;
    }
    .title-page__title {
        padding-bottom: 50px;
        line-height: 75%;
    }
    .event {
        padding: 160px 25px 50px 25px;
        margin-bottom: 15px;
    }
    .show {
        padding: 50px 30px;
    }
    .show_pdn {
        padding: 150px 50px 50px 50px;
    }
    .show-close {
        padding-top: 0;
    }
    .show__info {
        width: 100%;
    }
    .show__info_width {
        margin: 0 0 20px 0;
    }
    .show__info_yellow {
        margin-bottom: 20px;
    }
}
@media (max-width: 860px) {
    .nav-list {
        column-gap: 40px;
    }
    .rental {
        width: calc(100% / 2 - 15px);
        padding: 25px;
        align-items: flex-start;
    }
    .rental_popup {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .btn-back {
        left: 120px;
        top: 16px;
    }
    .burger {
        display: flex;
    }
    .navigation {
        position: fixed;
        left: auto;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: var(--dark);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        row-gap: 50px;
        width: 45%;
        padding-top: 150px;
        z-index: 9999;
        transition: all .6s linear;
        transform: translateX(200%);
    }
    .navigation_open {
        transform: translateX(0%);
    }
    .nav-list {
        flex-direction: column;
        row-gap: 50px;
    }
    .close {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        right: 20px;
        top: 65px;
        cursor: pointer;
    }
    .close__line {
        width: 40px;
        height: 3px;
        background-color: var(--yellow);
        position: absolute;
        transform: rotate(45deg);
        top: 16px;
    }
    .close__line_second {
        transform: rotate(-45deg);
    }
    .hero-info {
        width: 100%;
    }
    .header {
        padding: 20px 0;
    }
    .reviews-slider__slide {
        display: flex !important;
        column-gap: 16px;
        margin: 0 8px !important;
    }
    .review {
        flex-direction: column;
    }
    .review__image {
        margin-bottom: 20px;
    }
    .reviews-slider {
        margin: 0 -8px;
    }
    .about-info {
        padding: 50px;
        color: var(--dark);
    }
    .review {
        min-height: auto;
    }
    .event__title {
        font-size: var(--title-little);
        margin-bottom: 25px;
    }
    .many-picture-slider__slide_pdn {
        padding: 50px 20px;
    }
    .many-picture-slider__slide {
        justify-content: flex-start;
        min-height: 370px !important;
    }
    .main-slider__slide {
        padding: 250px 30px 50px 30px;
    }
    .main-title {
        font-size: 50px;
    }
    .application {
        padding: 60px 30px;
    }
    .many-picture-slider__title {
        font-size: var(--subtitle-big);
        line-height: 28px;
    }
    .title-page__title_little {
        font-size: var(--title-main);
    }
    .rentals__title {
        font-size: var(--title-main);
    }
    .show {
        padding: 50px 15px;
    }
    .show_pdn {
        padding: 100px 20px 30px 20px;
    }
    .show::before {
        background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(34, 34, 34) 12.265%);
    }
    .show_pdn:before {
        background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(34, 34, 34) 100%);
    }
    .reviews-slider__dots_show {
        bottom: 8px !important;
    }
    .show__title {
        font-size: var(--title-main);
    }
    .show__image {
        height: 350px;
    }
}
@media (max-width: 650px) {
    .hero-info {
        padding: 20px 90px 15px 20px;
    }
    .hero-info__title {
        margin-bottom: 10px;
    }
    .main-title {
        font-size: var(--title-little);
    }
    .hero-info__text {
        margin-bottom: 20px;
    }
    .hero-info_button {
        width: 190px;
    }
    .button {
        font-size: var(--shop-text);
    }
    .hero {
        margin-bottom: 15px;
    }
    .slick-main {
        width: 50px;
        height: 50px;
        background-size: 30px 20px;
    }
    .slick-main_prev {
        left: 20px;
    }
    .slick-main_next {
        right: 20px;
    }
    .main-slider__slide {
        padding: 200px 20px 20px 20px;
    }
    .page-link {
        padding: 50px 25px 25px 25px;
    }
    .page-link__title {
        font-size: var(--title-h4);
    }
    .about-info {
        padding: 20px;
        margin-bottom: 15px;
    }
    .about-info__title {
        margin-bottom: 20px;
    }
    .about-info__description {
        font-family: 'uni_sans_regularregular';
    }
    .application {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 20px;
        background-size: 290px;
        background-position: bottom right -25px;
    }
    .main-slider {
        margin-bottom: 15px;
    }
    .first-pages-links {
        row-gap: 15px;
    }
    .first-pages-links {
        margin-bottom: 15px;
    }
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer {
        column-gap: 20px;
        flex-direction: column;
        padding-bottom: 50px;
    }
    .footer-info__logo {
        margin-bottom: 10px;
        width: 40px;
    }
    .footer__inner {
        flex-wrap: wrap;
        column-gap: 15px;
    }
    .footer-menu {
        width: calc(100% / 3 - 15px);
    }
    .application-info {
        max-width: 300px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .application-info__title {
        font-size: var(--subtitle);
        margin-bottom: 20px;
    }
    .form__field {
        width: 250px;
        height: 40px;
        border-radius: 5px;
        padding: 0 15px;
    }
    .button_form {
        width: 250px;
        border-radius: 5px;
        height: 40px;
        line-height: 0;
        padding: 0 10px;
    }
    .form {
        row-gap: 10px;
    }
    .contacts__block {
        padding: 30px;
        width: calc(100% / 2 - 8px);
    }
    .contacts__inner {
        gap: 15px;
    }
    .contacts__header {
        font-size: var(--subtitle);
        margin-bottom: 5px;
    }
    .event {
        padding: 50px 15px 25px 15px;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }
    .many-picture-slider__inner_design {
        padding-bottom: 45px;
    }
    .many-picture-slider__slide {
        min-height: 300px !important;
    }
    .many-picture-slider__title {
        margin-bottom: 20px;
    }
    .commerce-block {
        padding: 30px 20px;
    }
    .commerce-block__title {
        margin-bottom: 20px;
        font-size: var(--title-small);
    }
    .commerce-block__subtitle {
        margin-bottom: 20px;
        font-size: var(--title-small);
    }
    .commerce-block__text {
        font-size: var(--subtitle);
    }
    .happenings {
        margin-bottom: 15px;
        gap: 15px;
    }
    .title-page__title_little {
        font-size: var(--title-little);
    }
    .happenings-block {
        width: 100%;
        padding: 100px 20px 25px 20px;
        max-height: 150px;
        min-height: 150px;
    }
    .rentals__title {
        font-size: var(--title-little);
        margin-bottom: 20px;
    }
    .rentals__inner {
        margin-bottom: 40px;
    }
    .up {
        width: 55px;
        height: 55px;
    }
    .up__icon {
        width: 17px;
    }
    .footer-info__list {
        width: 100%;
        justify-content: center;
    }
    .footer-info__item {
        flex: none;
        width: 15%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .reviews-slider__dots_service {
        bottom: 7px !important;
    }
    .design-slide {
        height: 300px !important;
    }
    .design-project {
        flex: 1 1 100%;
        min-height: 200px;
    }
}
@media (max-width: 480px) {
    .btn-back {
        left: 77px;
        top: 11px;
    }
    .header__logo {
        width: 49px;
        height: 17px;
    }
    .hero-info {
        padding: 20px 45px 15px 20px;
    }
    .main-title {
        font-size: var(--main-text);
    }
    .hero-info__text {
        font-size: var(--shop-text);
    }
    .contacts__block {
        width: 100%;
    }
    .navigation {
        row-gap: 30px;
        width: 70%;
        padding-top: 125px;
    }
    .nav-list {
        row-gap: 30px;
    }
    .slick-main {
        width: 45px;
        height: 45px;
    }
    .main-slider__slide {
        padding: 160px 20px 20px 20px;
    }
    .page-link {
        padding: 50px 15px 25px 15px;
    }
    .page-link__link {
        width: 110px;
        padding: 10px;
    }
    .about-info__description {
        font-size: var(--shop-text);
    }
    .review {
        padding: 20px 10px;
        margin-bottom: 15px;
    }
    .reviews {
        margin-bottom: 45px;
    }
    .reviews-slider__slide {
        column-gap: 10px;
        margin: 0 5px !important;
    }
    .application-info__title {
        font-size: var(--shop-text);
        margin-bottom: 10px;
    }
    .application-info__text {
        font-size: var(--reviews-text);
    }
    .event__title {
        font-size: var(--main-text);
    }
    .title-page__title {
        padding-bottom: 30px;
        line-height: 78%;
        font-size: 25vw;
    }
    .button {
        padding: 10px;
    }
    .close {
        top: 45px;
    }
    .commerce-block__title {
        margin-right: 0;
        font-size: var(--title-small);
    }
    .commerce-block__text {
        font-size: var(--shop-text);
    }
    .many-picture-slider {
        padding-bottom: 30px;
    }
    .sponsor {
        width: calc(100% / 3 - 10px);
    }
    .sponsors {
        gap: 20px 10px;
        margin-bottom: 30px;
    }
    .many-picture-slider__slide_pdn {
        padding: 30px 20px;
    }
    .many-picture-slider__title {        
        margin-bottom: 15px;
        line-height: 30px;
    }
    .title-page__title_little {
        font-size: var(--title-little);
    }
    .happenings {
        font-size: var(--title-small);
    }
    .commerce-block {
        flex-direction: column;
        align-items: flex-start;
    }
    .commerce-block__link {
        width: 200px;
    }
    .rental {
        padding: 15px;
    }
    .rentals__inner {
        gap: 15px;
    }
    .rental {
        width: calc(100% / 2 - 8px);
        font-size: var(--shop-text);
    }
    .rental_popup {
        width: 100%;
        padding: 0;
    }
    .popup__inner {
        padding: 15px;
    }
    .rental__image {
        max-height: 150px;
        margin-bottom: 10px;
    }
    .rental__info {
        margin: 15px 0;
    }
    .show__image {
        height: 300px;
    }
    .show__title {
        font-size: var(--title-little);
        margin-bottom: 30px;
    }
    .show__info {
        font-size: var(--subtitle);
    }
    .show__subtitle {
        font-size: var(--main-text);
        margin-bottom: 10px;
    }
    .show_pdn {
        padding: 50px 20px 30px 20px;
    }
    .show::before {
        background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(34, 34, 34) 10%);
    }
    .show_pdn:before {
        background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), rgb(34, 34, 34) 100%);
    }
    .design-image {
        height: 300px !important;
    }
    .application_thankyou {
        background-image: none;
    }
    .thankyou__image {
        display: block;
    }
    .application-info__text_thankyou {
        margin-bottom: 20px;
    }
    .application-info_thankyou {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .video-inner {
        flex-direction: column;
    }
}
@media (max-width: 479px) {
    .show__image {
        margin: 0 auto;
    }
    .show-close {
        align-items: center;
        flex-direction: column;
    }
    .show-close .slick-slide {
        margin: 0;
    }
}
@media (max-width: 420px) {
    .title-page__title_little {
        font-size: 28px;
    }
    .rentals__title {
        font-size: 28px;
    }
    .rental {
        width: 100%;
    }
    .show__title {
        font-size: var(--title-small);
        margin-bottom: 20px;
    }
    .show__price {
        width: 150px;
    }
    .show_pdn {
        padding: 95px 20px 30px 20px;
    }
}
@media (max-width: 380px) {
    .application {
        background: var(--yellow);
    }
    .form__field {
        width: 100%;
    }
    .button_form {
        width: 100%;
    }
    .contacts__subtitle {
        margin-bottom: 15px;
    }
    .main-title {
        font-size: var(--small-text);
    }
    .commerce-block__title {
        font-size: var(--title-small);
    }
}