@media (max-width: 1220px) {

    :root {
    --margin-b-mark:clamp(16px, 5vw, 24px);
    --margin-b-titile: clamp(32px, 9vw, 42px);
    --nav-clamp: 18px;
    
    }

     section {
        margin-top: 72px ;
    }
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
    .h1 {
    font-family: var(--header-font);
    line-height: 116%;
    font-weight: 700;
    font-size: 32px; 
    letter-spacing: -2px;
    text-transform: uppercase;
    }
    .h2 {
    font-family: var(--header-font);
    line-height: 116%;
    font-weight: 700; 
    font-size: 32px;
    letter-spacing: -1px;
    }
    .h3 {
    font-family: var(--header-font);
    line-height: 116%;
    font-weight: 600; 
    font-size: 26px;
    letter-spacing: .28px;
    text-transform: uppercase;
    }
    .h4 {
    font-family: var(--header-font);
    line-height: 120%;
    font-weight: 500; 
    font-size: 22px;
    letter-spacing: .28px;
    }
    .h5 {
    font-family: var(--header-font);
    line-height: 124%;
    font-weight: 500; 
    font-size: 19px;
    letter-spacing: 0;
    }
    .text-large {
    font-family: var(--regular-font);
    line-height: auto;
    font-weight: 400; 
    font-size: 18px;
    letter-spacing: 0;
    }
    .text-default {
    font-family: var(--regular-font);
    line-height: auto;
    font-weight: 400; 
    font-size: 15px;
    letter-spacing: 0.28px;
    }
    .text-small {
    font-family: var(--regular-font);
    line-height: 140%;
    font-weight: 400; 
    font-size: 13px;
    letter-spacing: 0;
    }
    
    .single-large {
        font-family: var(--regular-font);
        font-size: 18px;
        line-height: 140%;
        font-weight: 600;
    } 

    .single-default {
        font-family: var(--regular-font);
        font-size: 16px;
        line-height: 140%;
        font-weight: 600;
    }   
    .single-small {
        font-family: var(--regular-font);
        font-size: 13px;
        line-height: 140%;
        font-weight: 600;
    } 

    .container {
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
        max-width: 100vw;
    }





/*=== МЕНЮ ===*/
    .container * {
       /* outline: 1px dashed #500;  */
      
       
    }
    
    .header {
        display: none;
    }
    .header-mobile * {
        /* border: var(--bd--gray-stroke); */
    }
    .header-mobile {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
        background-color: var(--beige);
        box-shadow: 0 1px 2px -1px var(--orange);       
        
        
    }
    .nav-mobile {
        position: relative;        
        display: flex;
        height: 60px;
        border-bottom: var(--bd--gray-stroke);
        overflow-x: clip;
        
    }
    .nav-mobile__logo {
        display: block;
       flex-shrink: .6;

    }

    .nav-mobile__company-info {
        display: flex;
        align-items: center;
        flex: 1;
        max-width: 100%;
        padding: 0 28px 0 16px;
        gap: clamp(5px, 2vw, 40px)
    }
    .nav-mobile__logo-descriptor {
        font-size: 10px;
        
    }

    .header__search-mobile {
        height: 60px;
        width: 60px;
        border-left: var(--bd--gray-stroke);
    }

    .burger {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .burger:hover {
        cursor: pointer;
    }

    .burger-btn {
        position: relative;
        width: 24px;
        height: 20px;
        transition: .3s;        
    }
    .burger-btn::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 1px;        
        width: 100%;
        height: 2px;
        background-color: var(--black);
        transition: .3s; 
        transform-origin: 0 1px; /*я потратил на это час*/
    }
    .burger-btn::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;        
        width: 100%;
        height: 2px;
        background-color: var(--black);
        transition: .3s; 
        transform-origin: 0 0;
    }

    .burger-span {
        display: block;
        position: absolute;
        top: 9px;
        width: 100%;
        height: 2px;
        background-color: var(--black);
        
    }
    .burger-btn.active {
        right: -4px;
    }

    .burger-btn.active::before {
        transform: rotate(45deg) ;
        
        
    }
    .burger-btn.active .burger-span {
        height: 0;
    }
    .burger-btn.active::after {
        transform: rotate(-45deg);
        
        
    }

    .header__burger {
        position: absolute;
        right: -100%;
        background-color: var(--beige);
        top: calc(100% + 1px);
        z-index: 9;
        width: 100%;
        height: calc(100vh - 62px);
        transition: .3s;
        overflow-y: auto;
        
    }
    .header__burger.active {
        right: 0;
    }

   
    .burger__item { 
        border-bottom: var(--bd--gray-stroke);              
    }
    .burger-item__titile {
        position: relative;
        height: 58px;
        padding: var(--nav-clamp)
    }
    .burger-item__titile::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 24px;
        background-image: url(src/assets/icons/chevron-down.svg);
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        transition: .3s;
    }
    

    .burger-item__titile.active::after{
        background-image: url(src/assets/icons/chevron-up--orange.svg);
        transform: translateY(-50%) rotate(180deg);
    }
    .burger__phone {
        padding-top: 36px;
        padding-left: var(--nav-clamp);
        padding-bottom: 8px;
    }
    .nav-mobile .main-info__shedule {
        padding-left: var(--nav-clamp);
    }
    .main-info__make-order {
        display: inline-block;
        margin-top: 12px;
        margin-left: var(--nav-clamp);
        margin-bottom: 28px;
    }
    .header-mobile .messangers {
        margin-left: var(--nav-clamp);
    }
    .nav-mobile .messangers  svg:hover path{
    fill: var(--orange);
}

/* Раскрывайки на первой части*/


.burger-list {
    overflow: hidden;
    max-height: 0;
    
    
}
.burger-list.active {
    max-height: 100vh;
    
}

.burger-list a {
    display: block;    
    padding: 8px 24px;    
}
.burger-list a:hover {
    color: var(--orange);
    
}
.burger-list  a:last-child {
    padding-bottom: 24px;
}



 /*вторая часть Бургера*/
.burger-second-service {
    position: absolute;
    right: -100%;
    background-color: var(--beige);
    top: calc(100% + 2px);
    z-index: 99;
    width: 100%;
    height: calc(100vh - 62px);
    transition: .3s;
    overflow-y: scroll;

}
.burger-second-service.active {
    right: 0;
}
.second-service__back {
    position: relative;
    height: 58px;
    border-bottom: var(--bd--gray-stroke);
    padding: var(--nav-clamp);
    padding-left: 52px;
}
.second-service__back::before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
        left: var(--nav-clamp);
        background-image: url(src/assets/icons/chevron-down.svg);
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;        
    }
.second-service__summary  {
    position: relative;
    height: 58px;
    /* border-bottom: var(--bd--gray-stroke); */
    padding: var(--nav-clamp);
    
}
.second-service__summary:hover, 
.burger-item__titile:hover, 
.second-service__back:hover
  {
    cursor: pointer;
    
}


.second-service__summary::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 24px;
        background-image: url(src/assets/icons/chevron-true-down.svg);
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        transition: .3s;
    }

.second-service__summary.active {
   color: var(--orange); 
}
.second-service__summary.active::after {
    background-image: url(src/assets/icons/chevron-down--orange.svg);
    transform: translateY(-50%) rotate(180deg);
}


.second-service__list {    
    overflow: hidden;    
    transition: .3s;    
    max-height: 1px; /* для нижней границы*/
    border-bottom: var(--bd--gray-stroke);
}
.second-service__list.active {
      max-height: 100vh;
      
}

.second-service__list a {
    display: block;    
    padding: 8px 24px;    
}
.second-service__list a:last-child {
    padding-bottom: 24px;
}
.second-service__list a:hover {
    color: var(--orange);
    
}





    /*=== Главная ===*/

    .hero {
        margin-top: 0;
        height: 100vh;
    }
    .hero-main {
        height: 100vh;
    }

    .hero__container {
        flex-direction: column;
        gap: clamp(40px, 15vw, 60px);
        
    }

    .hero__info {
        max-width: 100%;
    }
    .btn-mobile {
        width: 100%;
    }

    .clients__title {
        flex-direction: column;
        gap: clamp(16px, 5vw, 24px)
    }

    .clients-grid {        
        display: grid;    
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, clamp(210px, 50vw, 232px));
    }
    .client-card {
        padding: 24px 48px 24px 24px;
    }
    .client-card::after {
    width: 28px;
    height: 42px;
    bottom: 10px;
    right: 24px;

}

.partnership-container {
    flex-direction: column;
}
.partnership {
    margin-bottom: 0;
}
.partnership-grid {
    margin-bottom: 5px;
    
}
.partnership-card { 
    position: static;   
    height: 160px;
    padding: 22px;    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--gray-stroke);
    /* background-color: var(--beige); */
   
}
.partnership__fit {
    margin-bottom: var(--margin-b-titile);
}

.form .messangers {
    margin-top: -15px;
    margin-bottom: 10px;
}
.form-container {
    flex-direction: column;
    padding: 24px;
    height: fit-content;
    margin-left: 16px;
    margin-right: 16px;
}
.main-form {
    width: 100%;
}
.input {
    width: 100%;
    font-size: 15px;
    padding-left: 20px;
}


.textarea {
    
    width: 100%;
    padding-left: 20px;
    border: 0;
    outline: 0;
    padding-top: 24px;
    resize: none;
    font-family: var(--regular-font);    
    font-size: 15px; 
}

.textarea::placeholder {
    font-size: 16px;
}
.btn-form {
    width: 100%;
    
}

.cases {
    margin-bottom: 52px;
      
}
.cases .container{
    overflow-y: visible !important; 
    overflow-x: clip
    
}

/* Адаптив слайдера с портфолио*/
.swiper-slide__my-wrapper {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    
  
}
.swiper-slide__left {
  padding: 24px;

}
.swiper-slide__right {
    max-height: 470px;
}
.cases-btn {
    width: 100%;
    max-height: 58px;
}
.cases-tags > div{  
  margin-bottom: 6px;
  padding: 6px 12px;
  margin-right: 6px;
  
}
.cases-slider {
    margin-top: 82px;
}
.swiper-button-box {       
    right: 0px;
    left: 50%;
    height: min-content;
    top: -62px;
    
    width: min-content;
    transform: translateX(-50%);
    z-index: 999;
    
}
.custom-button-prev {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid var(--black);
    }
.custom-button-next {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid var(--black);
}

/* специалисты*/

.specialists__title {
    flex-direction: column;
}
.specialists__mark {
    margin-bottom: var(--margin-b-mark);
}
.specialists__sex {    
    margin: 36px 0 20px 0;
}
.sex__wrapper .sex_empty {
    flex: initial;
    width: 0;
}
.specialists-grid {
    
    grid-template-columns: 1fr;
    max-width: 1220px;
}
.specialist-card {
    display: flex;
    height: 128px;
    outline: var(--bd--gray-stroke);
    border: none;
    background-color: var(--beige);
}

.specialist-card__photo_short {    
    flex: 0;
    height: 127px;
    overflow: hidden;
    flex-basis: 112px;
    
}
.specialist-card img {
    object-fit: cover;
    height: 100%;
    width: 101%;
     /* Жоский костыль для избежания полосок вокруг картинки*/
    
}
.specialis-all_voices {
    
    border: 1px solid var(--orange);
    
}
.specialist-card__info-wrapper {
    flex: 1;
    
}

/*=== Карточка актёра actors_card*/ 


.actor-card__about {
    align-self: stretch;    
    padding: 24px;
    flex: 1 ;
    border: var(--bd--gray-stroke);
}
.actor_card__demo-btn {
    width: 62px;
    height: 62px;
}

/* Выбирают нас*/

.why-head {
    flex-direction: column;

}
.why-head div {
   
}
.why-title {
    
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;   
   
}
.why-item {    
    padding: 24px;
    min-height: 0;
    
}
.why-item:nth-of-type(-n+3){
    border-bottom: var(--bd--gray-stroke);
}
.why-item:nth-of-type(odd){
    border-right: none;
}

.why-item__title {
    margin-bottom: 66px;
}
.why-item__text {
    color: var(--gray-text);
}




/*=== СТРАНИЦА Портфолио ===*/
.portfolio {
    margin-top: 36px;
}
.portfolio-title {
    margin-top: 56px;
}

.portfolio-details {    
    padding-top: 0px;
}
.portfolio-summary {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 72px;
    /* border-bottom: var(--bd--gray-stroke); */
}
.portfolio-summary::after {
    
    right: 18px;
    top: 50%; 
    transform: translateY(-50%);   
    width: 16px;
    height: 18px; 
    background-image: url(src/assets/icons/arrow--orange24.svg); 
    
    
}

.portfolio-info {
    flex: 1;
    
    padding: 24px;
    padding-bottom: 54px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.portfolio-info-block {
    flex-direction: column;

}
.portfolio-info__tag {    
    margin-right: 6px;
    padding: 5px 6px;    
}
.portfolio-img {
    width: 100%;
    height: 100%;
    
}

.portfolio--max-height  {
    max-height: 1300px;
}

.portfolio-summary.open-portfolio::after {
    
    transform: translateY(-50%)  rotate(-180deg);
    
}
.portfolio-audio-grid {    
    grid-template-columns: 1fr;
    
}
.actor_card__player  {
    border: 2px solid #f00;
    height: 66px;   
}


.portfolio_audio-card:nth-of-type(odd)   {  
    border-right: none;
    }

.portfolio-audio-grid .actor_card__demo-btn {
    width: 66px;
    height: 66px;
}
.portfolio-audio-grid .voices-card {    
    grid-template-columns: 1fr ; 
}
.audio-portfolio__title {
   padding: 24px 24px;
    
}

.portfolio_audio-card.voices-card  {
    grid-template-rows:  min-content min-content;
    
}
.voices-card__demo.actor_card__demo {
        border-top: none;
        
    }
    .portfolio_audio-card.voices-card {
        border-right: none;
    }


    .actor-portfolio__grid {        
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 60vw);
        gap: 4vw;
    }



    /* База голосов*/
    .voices {
        margin: 0;
    }

    .voices__title {
        
        margin: 122px 0 0 0 ;
    }
    .voices__subtitle {
        margin-top: 36px;
        
    }
    .voices-grid {
        grid-template-columns:  100%;
        

    }

    .voices-card {    
        grid-template-columns: 1fr 2fr;
        grid-template-rows: clamp(127px, 27vw, 165px);
        grid-auto-rows: 64px;
       
        border-right: var(--bd--gray-stroke);
        
        
    }
    .voices-card:nth-of-type(even) {
        border-left:none;
    }
    .voices-card:last-child {
        border-bottom:var(--bd--gray-stroke);
    }
   
    .voices-card__photo_short {    
        border-left: none;
        overflow: hidden;
    }
    .voices-card__bio {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 20px 16px 0 32px;    
        border-bottom: none;
    }
    
    .voices-card__discription_short {
        display: none;
    }
    .voices-card__link {
        display: none;
    }

    .voices-card__popup {
        display: none;
    }
    .voices-card__photo_short img {
        width: 100%;
    }
    .voices-card__demo {
        border-top: var(--bd--gray-stroke);
        
    }
    .voices-card.voices-card__kids {
        grid-template-rows: clamp(127px, 27vw, 165px);
    }

    .voices .specialis-all_voices {        
    height: 58px;
    width: 100%;
    border-top: 1px solid var(--orange); 
    
    }

    


/*===О КОМПАНИИ ===*/ 

    .about__h1 {
        margin-bottom: var(--margin-b-titile);
        margin-top: 74px;

    }
    .about-intro {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    section.boss {
        margin-top: 36px;
    }

    .boss-grid {
        display: grid;
        max-width: 100%;
        grid-template-columns: 100%;
        grid-template-rows: repeat(3, max-content);
        row-gap: 36px;
        border: none;
        
    }
    .boss-self {
        
        grid-template-rows: min-content min-content;
        border: var(--bd--gray-stroke);
        
    }
    .boss-about {       
        padding: 24px;
        height: min-content;
        border-right: none;
    }
    .boss-connect {
       gap: 0px;
        padding: 0;
    }
    .boss-connect__mark {
        margin-bottom: 20px;
    }
    .boss-connect__title {
        margin-bottom: 26px;
    }
    .boss-contacts {
        padding: 24px;
        border: var(--bd--gray-stroke);
        grid-column: 1/2;
        flex-direction: column;
        align-items: start;

    }
    .boss-contacts .messangers {
        justify-content: start;
        margin-left: 0;
        padding: 0;
        text-align: left;
    }
    .boss-contacts__mesangers {
        
    }
   
    .history-mark {
        text-align: center;
    }
    .history-title {
        text-align: center;
        margin-bottom: 108px;
    }

    .about-swiper__item {
        padding: 24px;
    }
    .about-swiper__title {
        margin-bottom: 12px;
    }
    .swiper-button-box.about {       
        right: 0px;
        left: 50%;
        top: -72px;
        width: min-content;
        transform: translateX(-50%);
        
       
    }
    .about-button-prev {
        position: relative;
        width: 44px;
        height: 44px;
        border: 1px solid var(--black);
        }
    .about-button-next {
        position: relative;
        width: 44px;
        height: 44px;
        border: 1px solid var(--black);
    }

    .about-pagination-custom {   
    height: 83px;
    width: 83px;
    
}


/*Наша команда*/

.team-mark {
    margin-bottom: var(--margin-b-mark);
}
.team-head {
    flex-direction: column;
    align-items: center;
}
.team-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(128px, 25vw) minmax(128px, 25vw) minmax(128px, 25vw) minmax(128px, 25vw) minmax(128px, 25vw)  0 0 120px;
}
.team-card {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
}
.team-card:nth-of-type(1) {
    border-top: var(--bd--gray-stroke);
}
.team-all__a::after {
   
    width: 23px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;      
    background-image: url(src/assets/icons/arrow--beige.svg);
    bottom: 50%;
    transform: translateY(50%);
    right: clamp(14px, 2vw, 28px);

}

/*=== Команда komanda===*/
.komanda-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: max(128px, 30vw);
}
.komanda-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.komanda-info {
    padding: 24px;
}
.komanda-img {
   height: max(128px, 30vw);
}
.komanda-card {
   
    border: var(--bd--gray-stroke);
    border-bottom: none;   
} 
.komanda-card:last-child {
    border-bottom: var(--bd--gray-stroke);
}
.komanda-img img {
    width: 101%;
    height: 100%;  
    object-fit: cover;
    object-position: center center;
    
}

/* Часто ищут заказывают solutions*/
.services-grid {
    grid-template-columns: 1fr; 
}
.service-card {    
    box-sizing: content-box;
    background-color: var(--beige);
    grid-template-rows: 190px fit-content 58px;   
    grid-template-columns: repeat(2, 1fr);   
    
}
.service-card:nth-child(even) {
    margin-left: 0;
}
.service-subscription {
    padding: 24px;
}

.seo-text_container {
    flex-direction: column;
    gap: 42px;

}
.form-main__subtitle {
    line-height: 1.4;
    margin-bottom: var(--margin-b-mark);
}

/* карточка актёра expert*/

/* Секция Путь реализации */

.way {    

}

.way-grid {   
    grid-template-rows: 44px 110px repeat(6, 196px);
    grid-template-columns: 1fr;
}
.way-title {
    grid-column: 1/2;
}
.way-card {
    padding: 23px;
    border: 1px solid var(--gray-stroke);
    border-bottom: none;
    
}

.way-card:nth-of-type(n+5) {   
    margin-top: 0;    
}
.way-card:nth-of-type(2){
   
    margin-right: 0;
}
.way-card:nth-of-type(3){
   
    margin-right: 0;
}
.way-card:nth-of-type(5){
     margin-right: 0;
}
.way-card:nth-of-type(6){
    margin-right: 0;
}

.way-card__number {
    font-size: var(--size--marks-28);
    font-weight: 500;
    color: var(--orange);
}

.way-card__text.biege:hover {
    cursor: pointer;
}
.card--orange {
    background-color: var(--orange);
    justify-content: center;
}

.card--orange::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 27px;
    bottom: 36px;
    right: 36px;
    background-repeat: no-repeat;
    background-image: url(src/assets/icons/arrow--beige.svg);
    

}

.hero__title.tiflo {
    font-size: 32px;
}

/*=== главная index.php ===*/

section.video video {
    width: 100%;
}
.special-offer__right {
    padding: 24px 24px 24px 24px;
    
}
button.special-offer__right-text {
    width: 100%;
}

.special-offer__my-wrapper {
    max-height: 100%;
    grid-template-columns: 1fr;
   
}
.special-offer__img-wrapper { 

    display: flex; 
    justify-content: center;
   
}
.special-offer__img-wrapper img {   
    max-width: 80%;
    margin-left: inherit;
    
}

.service-card__btn span {
    display: none;
}
.trust-grid {
    height: 804px;
}
.trust-item {
    width: 49%;
    height: 200px;
}
.u-films {
    display: none;
}



/*Блог блог blog.php*/

.blog-grid {    
    grid-template-columns: 1fr;
    column-gap: 6px;
    row-gap: 6px;
}
.blog-card {
    display: grid;
    grid-template-rows: 180px minmax(180px, auto);
}
.blog-card-wrapper {
    display: grid;
    grid-template-rows: fit-content auto;
    padding: 12px;
    border: var(--bd--gray-stroke);
    border-top: none;
}
.blog-tag {
    display: inline-block;
    padding: 4px 7px;
    border: var(--bd--gray-stroke);
}
.eye-icon {
    width: 16px;
    height: 16px;
    top: 3px;
    left: 3px;
}

.service-card__btn span {
    display: none;
}


/* блок отзывов reviews*/
.reviews-slider {
   padding-bottom: 2px;
}
.reviews__swiper-slide {
    display: flex;
    flex-direction: column;
    height: fit-content; /* не фиксируй высоту, пусть карточка растягивается */
}

.reviews-slide__tag {
    padding: 6px 12px;
}

.reviews__text {
    padding: 22px;
    flex: 1; 
    position: relative;
    margin-bottom: 0;
    transition: max-height 0.3s ease;
}


.reviews__text.collapsed {
    max-height: 220px;
}

.reviews__text.expanded {
    max-height: none;
}

.reviews__read-more {
    display: inline-block;
    margin: 0 36px 20px 36px;
    color: var(--orange);
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}
.read-more-btn {
    position: relative;
    display: block; 
    width: 100%;
    }
.read-more-btn::before{
    position: absolute;
    content: '';
    display: block;
    top: -48px;
    left: 0;
    width: 100% ;
    height: 50px;    
    background-image: linear-gradient(to top, var(--beige), #FEF9E500);
}
.read-more-btn.transparent::before {
    height: 0;
}

.reviews-button-prev {
    width: 38px;
    height: 38px;
}
.reviews-button-next {
    width: 38px;
    height: 38px;
}
.reviews-button-box {
    
}
.reviews__swiper-wrapper {
    margin-top: 72px;
}

/*=== faq ===*/
.container-faq {
    gap: 40px;
    
}
.container-faq__left {
    order: 1;
}

.faq-btn {
    width: 236px;
    height: 58px;
    margin-bottom: 32px;
}
.faq-details {
    padding: 24px 50px 24px 24px;   
}
.faq-subtitile {
    display: none;
}
.faq-subtitile.faq-subtitile-mobile {
    display: block;
}

/*=== kontakty Контакты  ===*/
.kontakty-grid {
     grid-template-columns: 1fr;
     margin-bottom: 1px;
}
.kontakty__left {
    background-color: var(--beige);
    outline: var(--bd--gray-stroke);
    border: none;
    padding: 24px;
}
.kontakty__right {
    background-color: var(--beige);
    outline: var(--bd--gray-stroke);  
    border: none;  
    padding: 24px;
}

/*=== аренда студии===*/
/*=== Аренда студии ===*/
.arenda-about {
    margin-top: 0;
}
.arenda-section {
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 60px;
    height: calc(100vh - 60px);
}
.arenda-text {
    margin-bottom: var(--margin-b-titile);
    line-height: 1.5;
}
.arenda-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em var(--margin-b-titile)
}
.arenda-button-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -62px;
    display: flex;
    z-index: 9;
    gap: 10px;
}
.arenda-swiper {
   margin-bottom: 106px;
}
.arenda-button-prev {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid var(--black);
    }
.arenda-button-next {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid var(--black);
}


/*=== Подвал footer ===*/

.footer {
    display: none;
}
.footer-mobile {
    display: block;
    margin-top: 72px;
    border-top: var(--bd--gray-stroke);
}

.footer-section-one {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
   
}
.footer-mobile .main-info__make-order {
    margin: 0;
}

.footer-mobile .messangers path {
    fill: var(--black);
}

.footer-mobile-info {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 12px;
    color: var(--gray-text);
}
/*поп-ап*/
.pop-up__form {
    width: min(100%, 378px);   
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--beige);
    padding: 24px 24px;


}

.pop-up__form > input {
    border: 1px solid var(--gray-stroke);
    margin-bottom: 16px;
    width: min(100%, 378px);
    height: 54px;
}
.pop-up__textarea {
    width: min(100%, 378px);
}

.pop-up__btn {
    width: min(100%, 378px);
}
}

@media (max-width: 768px) {
    .actor-card__container {
        flex-direction: column;
        
    }
}