

/* Start:/local/templates/pro_diesel/components/bitrix/news.list/projects/style.css?17781017603505*/
.section__projects-list {
  --transition-cursor: 2s cubic-bezier(0.05, 0.5, 0, 1);
  --transition: 1.2s cubic-bezier(0.2, 0.5, 0, 1);
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
  gap: var(--bnd-gap);
  

  .project {
    /* cursor: none; */
    display: flex;
    flex-direction: column;
    gap: var(--bnd-base);
    position: relative;
    text-decoration: none;

    .cursor {
      display: none;
    }

    .background {
      aspect-ratio: 4 / 3;
      border-radius: var(--bnd-border-r);
      width: auto;
      background-position: center;
      background-size: cover;
      transition:  opacity 0.5s ease;
    }

    .name {
      font-weight: 900;
    }

    .description {
      margin-top: calc(var(--bnd-base) * 2);
      margin-bottom: calc(var(--bnd-base) * 2);
    }

    .more {
      font-size: 0.75em;
      font-weight: 700;
    }

  }

}

@media (width >= 1170px) {
  .section__projects-list {
    gap: 0;
    
    .project {
      border-bottom: 5px solid var(--bnd-bkg-color);
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: calc(var(--bnd-base) * 4);
      gap: var(--bnd-base);
      padding-top: calc(var(--bnd-margin-bottom--half));
      padding-bottom: calc(var(--bnd-margin-bottom--half));

      .cursor {
        /* background-color: beige; */
        --width: 500px;
        --height: 300px;
        border: 5px solid var(--bnd-main-color);
        display: block;
        width: var(--width);
        height: var(--height);
        position: fixed;
        opacity: 0;
        transform: translate3d(var(--move-x), var(--move-y), 0);
        top: calc(var(--height) * 0.2);
        left: calc(var(--width) * -0.5);
        transition: transform var(--transition-cursor), opacity 1s ease;
        will-change: transform;
        z-index: -1;
        /* z-index: 1; */
        overflow: hidden;

        .image {
          --cursor-transform: translate3d(calc(var(--move-x) / -5), calc(var(--move-y) / -5), 0);
          background-position: center;
          background-size: cover;
          width: calc(var(--width) * 2);
          height: calc(var(--height) * 2);
          position: relative;
          transform: var(--cursor-transform) scale(1.5);
          transition: transform var(--transition);
          will-change: transform;
        }
      }

      .cloud-item {
        align-self: start;
        grid-row: 1 / 2;
        grid-column: 1 / 4;
      }

      .name {
        grid-row: 2 / 3;
        grid-column: 1 / 5;

      }

      .description {
        grid-row: 1 / 3;
        grid-column: 5 / 10; 
        margin: 0;
        /* padding: var(--bnd-base) 0; */

        p {
          text-box: auto;
          display: -webkit-box;
          margin: 0;
          -webkit-line-clamp: 4;
          -webkit-box-orient: vertical;  
          overflow: hidden;
        }
      }

      .background {
        position: static;
        width: 100%;
        height: 100%;
        grid-row: 1 / 4;
        grid-column: 11 / 13; 
      }

      .more {
        margin-top: var(--bnd-base);
        place-self: end;
        grid-row: 3 / 4;
        grid-column: 5 / 10; 
      }

      &:hover {
        transition: color var(--transition);

        .cursor {
          opacity: 1;
          z-index: 1;

          .image {
            transform: var(--cursor-transform) scale(1);
          }
        }

        .background {
          opacity: 0.6;
        }
      }
    }
  }
}
/* End */


/* Start:/local/templates/pro_diesel/components/bitrix/news.list/blog/style.css?17778913091232*/
.section__news {
  background: #eff2f7;
  border: 1px solid transparent;
  border-radius: var(--bnd-border-r);
}

.section__blog-list{
display: flex;
flex-direction: column;
gap: 16px;

}

.blog__item{
    background: #ffffff;
  border: 1px solid #B6BCCD;
  border-radius:var(--bnd-border-r);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(50px);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.blog__item-img{
  border-radius:var(--bnd-border-r) var(--bnd-border-r) 0 0;
  height: 230px;
  width: 100%;
  background-size: cover;
  overflow: hidden;
}

.blog__item-content{
  border-radius:var(--bnd-border-r);
  padding: 10px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  overflow: hidden;
}

.section__blog-list .cloud-item{
left: 20px;
top: 10px;
position: absolute;
}
.blog__item-txt{
color: #4B5162;
}
.blog__item-link{
font-weight: 700;
font-size: 12px;
}

@media screen and (min-width: 600px) {

}   


@media screen and (min-width: 1170px) {
.section__blog-list{
flex-direction: row;
gap: 32px;
}
.blog__item-content{
padding: 20px 32px 32px 32px;
flex: 1;
}
}

@media screen and (min-width: 1600px) {

}


/* End */


/* Start:/local/templates/pro_diesel/include/common/map/map.css?177996694611208*/
    #contacts-map-section {
        height: auto;
    }

    #contacts-map-container {
        background: var(--bnd-gray-color);
        border-radius: var(--bnd-border-r);
        height: 280px;
    }

    .contacts-map-info {
        background-color: var(--bnd-white-color);
        display: flex;
        flex-direction: column;
        gap: var(--bnd-gap);
        top: 0;
        left: 0;
        bottom: 0;
        /* height: 318px; */
		height:auto;
		margin-top:0;
        padding: calc(var(--bnd-base) * 2);
        position: relative;
        width:100%;
    }

    .contact__left-col {
        display: flex;
        flex-direction: column;
        gap: var(--bnd-gap);
        justify-content: space-between;
    }

    .contact__left-col {
        gap: 32px;
        min-width: 350px;
    }

    .contact__info-item {
        display: flex;
        gap: var(--bnd-base);
    }

    .contact__content{
        position: relative;
    }

    .contact__social {
        display: flex;
        gap: var(--bnd-base);
        align-items: center;
    }

    #contacts-map-container .contact-map iframe {
        height: 280px;
        width: 100%;
    }

    .ymaps-2-1-79-map,
    .ymaps-2-1-79-inner-panes,
    .ymaps-2-1-79-inner-panes > ymaps {
        border-radius: 32px 32px 0px 0px;
    }

    .ymaps-2-1-79-controls__control {
        background: white;
        border-radius: 12px;
        inset: 108px 10px auto auto!important;
		width: 40px;
		height: 80px;
    }

    .ymaps-2-1-79-controls__control .ymaps-2-1-79-float-button {
        box-shadow: none;
        border-radius: 12px;
		width: 40px;
		height: 40px;
    }

    #contacts-tabs-section {
        position: relative;
    }
	
	.ymaps-2-1-79-controls__control .ymaps-2-1-79-float-button-icon {
		border: 12px solid transparent;
	}

	.ymaps-2-1-79-controls__control .ymaps-2-1-79-zoom {
		width: 40px;
		height: 21px!important;
	}

    .city {
        display: none;
        padding: 24px 12px 12px 12px;
        position: relative;
    }

    .city.active {
        display: flex;
        flex-direction: column;
    }

    .city__content {
        /* display: none; */
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .city__col-group {
        display: flex;
        gap: 8px;
    }

    .city__col-group--messengers {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: space-between;
    }

    .city__col-group--messengers a{
        display: flex;
        align-items: center;
        gap: var(--bnd-base);
    }
    .contact-item__label {
        color: var(--bnd-gray);
        font-size: 13px;
        font-style: normal;
        font-weight: 350;
        line-height: 1.23; 
        letter-spacing: 0.26px;
    }

    .city-phone a {
        color: black;
        font-weight: 500;
        line-height: 1.46; 
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

    .city-email {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        align-self: stretch;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .city-email a {
        color: #45062D;
        font-weight: 350;
        line-height: 1.46; 
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

    .city-phone a:hover, 
    .city-email a:hover {
        color: var(--bnd-green-light);
    }

    .phone-email-group {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: space-between;
    }

    .phone-email-group .city-contact-item {
        width: calc(50% - 8px);
    }

    .visit-salon-group {
        border-radius: 32px;
        background: var(--bnd-gray-super-light);
        gap: 16px;
        text-align: center;
        padding-bottom: 20px;
    }

    .visit-salon-group p {
        margin-left: 16px;
        margin-right: 16px;
    }

    .city-tabs-container {
        display: flex;
        justify-content: center;
        align-items: center;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        top: -47px;
    }

    .city-tabs {
        border-radius: 24px 24px 0px 0px;
        background: var(--bnd-white);
        display: inline-flex;
        padding: 8px 8px 0px 8px;

    }
.place-schedule-group .city-contact-item{
    flex: 1;
}
 .city__content .bnd-btn--full.with-icon{
    width: 100%;
 }
.bnd-social__txt{
    font-size: 15px;
    line-height: 22px;
}

.contact__info-txt-top{
    font-weight: 600;
}

.contact__right-col {
    display: flex;
    flex-direction: column;
    gap: var(--bnd-gap);
}



.contact__info-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: #B6BCCD solid 1px;
    border-radius: 10px;
    height: 56px;
    width: 56px;

    img {
        display: block;
        height: 24px;
        width: auto;
    }
}

.contact__social-item {
    border: #B6BCCD solid 1px;
    border-radius: 80px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        display: block;
        height: 16px;
        width: auto;
    } 
}


@media screen and (min-width:600px){
    .city__content {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    .js-tabs-container .visit-salon-group{
            margin-top: 48px;
    }
    .city__col-group.place-schedule-group, .city__col-group--messengers{
        flex-direction: column;            
    }
        .city__content .h2{
            grid-row: 1/2;
        grid-column: 1/7;
        }
    .city__content  .city__col:nth-child(2){
            grid-row: 2/3;
        grid-column: 1/7;
    }
    .city__content  .city__col:nth-child(3){
            grid-row: 3/4;
        grid-column: 1/7;
        margin-top: 12px;
    }
    .city__content  .city__col:nth-child(4){
            grid-row: 2/3;
        grid-column: 7/13;
    }
    .city__content  .city__col:nth-child(5){
            grid-row: 3/4;
        grid-column: 7/13;
    }

    #contacts-map-container {
        height: 480px;
    }

    #contacts-map-container .contact-map  iframe {
        height: 480px;
    }

    .ymaps-2-1-79-controls__control .ymaps-2-1-79-zoom {
        height: 21px!important;
    }

    .ymaps-2-1-79-controls__control .ymaps-2-1-79-zoom__scale {
        border: none;
        box-shadow: none;
    }

    .ymaps-2-1-79-controls__control .ymaps-2-1-79-float-button-icon_icon_runner,
    .ymaps-2-1-79-controls__control .ymaps-2-1-79-zoom__runner__transition {
        display: none;
    }

    .ymaps-2-1-79-controls__control {
        inset: 290px 10px auto auto!important;
    }

    .city {
        padding: 32px;
    }

    .city__content {
        flex-direction: row;
        gap: 8px;
    }

    .city__col {
        gap: 8px;
        width: unset;
        
    }

    .phone-email-group {
        flex-direction: column;
    }

    .visit-salon-group .sh-btn--full {
        width: 100%;
    }

    .phone-email-group .city-contact-item {
        width: calc(100%);
    }
.contact__col-group{
    display: flex;
}
.contact__col-group div{
    flex: 1;
}
}

@media screen and (min-width:1170px){
    /* .contacts-map-info .city__col:first-of-type{
        margin-bottom:20px;
    } */
        .js-tabs-container .visit-salon-group, .city__content .city__col:nth-child(3){
        margin-top: unset;
        }
    #contacts-map-container {
        height: 592px;;
    }

    #contacts-map-section {
        min-height: 592px;
        position: relative;
    }

    .contacts-map-info {
        flex-direction: row;
        justify-content: space-between;
        gap: 32px;
        border-radius: 24px;
        height: fit-content;
        width: 730px;
        top: 42px;
        left: 60px;
        padding: calc(var(--bnd-base) * 3);
        position: absolute;
    }   
    
    .contact__content{
        width: 100%;
    }

    .ymaps-2-1-79-map,
    .ymaps-2-1-79-inner-panes,
    .ymaps-2-1-79-inner-panes > ymaps {
        border-radius: 48px;
    }    
    
    .ymaps-2-1-79-controls__control {
        inset: 215px 10px auto auto!important;
    }

    .city {
        padding: 28px;
    }

    .city .h3 {
        margin-bottom: 20px;
    }

    .city__content {
        flex-direction: column;
        display: flex;
        gap: 20px;
    }
    .city__content .h2, .city__content .city__col:nth-child(4){
        margin-bottom: 32px;
    }
    
    .city__col {
        width: 100%;
    }

    .phone-email-group,
    .place-schedule-group {
        flex-direction: row;
    }

    .city__col-group {
        gap: 28px;
    }

    .city__col-group--messengers {
        gap: 20px;
    }
    .city__col-group.place-schedule-group, .city__col-group--messengers{
        flex-direction: row;
    }

}

@media screen and (min-width:1660px){
    .city__content .h2, .city__content .city__col:nth-child(4){
        margin-bottom: 14px;
    }
    .bnd-social__txt{
font-size: 17px;
line-height: 24px;
}
    #contacts-map-container {
        height: 808px;;
    }

    #contacts-map-section {
        min-height: 808px;
        position: relative;
    }

    .contacts-map-info {
        left: calc( (100vw - var(--bnd-max-content-width)) / 2 );
        padding: calc(var(--bnd-base) * 4);
        width: 800px;
    }

    .ymaps-2-1-79-map,
    .ymaps-2-1-79-inner-panes,
    .ymaps-2-1-79-inner-panes > ymaps {
        border-radius: 64px;
    } 

    .ymaps-2-1-79-controls__control {
        inset: 326px 10px auto auto!important;
    }

    .city {
        padding: 64px;
    }

    .city .h3 {
        font-size: 26px;
        line-height: 1.4;
        letter-spacing: 0.52px;
        margin-bottom: 28px;
    }

    .city__content {
        gap: 28px;
    }

    .city__col {
        gap: 28px;
    }

    .contact-item__label {
        font-size: 15px;
        line-height: 1.46;
    }

    .city-phone a {
        line-height: 1.55; 
    }

    
    .city__col-group {
        gap: 40px;
    }

    .city__col-group > div {
        width: calc(50% - 20px);
    }

    .city__col-group--messengers {
        gap: 40px;
    }

    .visit-salon-group {
        border-radius: 40px;
        background: var(--bnd-gray-super-light);
        gap: 24px;
        text-align: center;
        padding-bottom: 24px;
    }

    .visit-salon-group p {
        margin-left: 64px;
        margin-right: 64px;
    }

    .city-tabs-container {
        top: -57px;
    }

    .city-tabs {
        border-radius: 32px 32px 0px 0px;
        padding: 12px 12px 0px 12px;
    }

    /* .city-tabs__item {
        padding: 12px 20px;
    }

    .city-tabs__item.active {
        border-radius: 32px;

    } */

}

@media (width < 587px) {
    .ymaps-2-1-79-balloon.ymaps-2-1-79-balloon_layout_panel.ymaps-2-1-79-islets_balloon_layout_panel {
        bottom: 100px;
    }

    .sh-modal .simple-form.section__boxed {
        /* border-radius: 32px 32px 0 0; */
        border-radius: 32px;
        margin: 24px 0 0;
    }

    #contacts-map-section {
        overflow: hidden;
    }
    .city-tabs {
        overflow: scroll;
    }
}
/* End */
/* /local/templates/pro_diesel/components/bitrix/news.list/projects/style.css?17781017603505 */
/* /local/templates/pro_diesel/components/bitrix/news.list/blog/style.css?17778913091232 */
/* /local/templates/pro_diesel/include/common/map/map.css?177996694611208 */
