/* services intro */
.services-intro {
    display: flex;
    gap:80px;
}
.services-intro-ls {
    padding-top: 53px;
    width: calc(100% - 626px - 80px);

}
.services-intro-ls .title {
    line-height: 110%;
}
.services-intro-ls .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    margin-bottom: 120px;
    opacity: .6;
}
.services-intro-ls .description > *:first-child {
    margin-top: 0;
}
.services-intro-ls .description > *:last-child {
    margin-bottom: 0;
}
.services-intro-ls .btns-rows {
    display: flex;
    gap: 8px;
}
.services-intro-ls .btns-rows > * {
    width: auto;
    white-space: nowrap;
}
.services-intro-ls .btns-rows .email::before {
    content: '';
    display: block;
    width: 15px;
    height: 12px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 2.65141V9.75023C15 10.3241 14.7808 10.8764 14.387 11.2939C13.9933 11.7115 13.4549 11.9628 12.882 11.9965L12.75 12.0003H2.25C1.67609 12.0003 1.12386 11.781 0.706304 11.3873C0.288745 10.9936 0.0374194 10.4552 0.00375009 9.88223L0 9.75023V2.65141L7.08375 7.37421L7.17075 7.42371C7.27328 7.47381 7.38589 7.49985 7.5 7.49985C7.61411 7.49985 7.72672 7.47381 7.82925 7.42371L7.91625 7.37421L15 2.65141Z' fill='white'/%3E%3Cpath d='M12.75 0C13.56 0 14.2702 0.427504 14.6662 1.07026L7.49999 5.84781L0.33374 1.07026C0.521834 0.764875 0.780208 0.50888 1.08732 0.32362C1.39443 0.13836 1.74138 0.0292032 2.09924 0.00525003L2.24999 0H12.75Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.services-intro-rs {
    width: 626px;
    height: 495px;
    border-radius: 32px;
    background-color: #262A35;
    overflow: hidden;
}
.services-intro-rs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media(max-width:1200px) {
    .services-intro {
        gap:32px;
    }
    .services-intro-rs {
        width: 426px;
        height: 395px;
    }
    .services-intro-ls {
        padding-top: 24px;
        width: calc(100% - 426px - 32px);
    }
    .services-intro-ls .title {
        margin-bottom: 24px;
    }
    .services-intro-ls .description {
        margin-bottom: 48px;
    }
}
@media(max-width:992px) {
    .services-intro {
        flex-direction: column;
    }
    .services-intro-ls {
        padding-top: 0px;
        width: 100%;
    }
    .services-intro-rs {
        width: 100%;
    }
}
@media(max-width:576px) {
    .services-intro-rs {
        height: 320px;
    }    
}
/* end */

/* section portfolio */
.portfolio .title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:12px;
    margin-bottom: 40px;
}
.portfolio .title-wrap .title {
    margin: 0;
    line-height: 100%;
}
.portfolio .link {
    text-decoration: none;
    opacity: 1;
    padding-right: 19px;
    position: relative;
}
.portfolio .link::after {
    content:'';
    display: block;
    width: 9px;
    height: 16px;
    position: absolute;
    right: 0;
    top:50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.530273 0.530334L7.53027 7.53033L0.530273 14.5303' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.portfolio .link:hover::after {
    transform: translateY(-50%) translateX(10px);
}
.portfolio .container > .link {
    display: none;
}
.portfolio-list {
    display: flex;
    flex-wrap: wrap;
    gap:60px 24px;;
}
/* slider */
.portfolio-list.slider {

}
.portfolio-list.slider > .slick-list {
    margin: 0 -12px;
    width: 100%;
}
.portfolio-list.slider > .slick-list > .slick-track {
    display: flex;
    margin-left: 0;
}
.portfolio-list.slider > .slick-list > .slick-track::before {
    display: none;
}
.portfolio-list.slider > .slick-list > .slick-track::after {
    display: none;
}
.portfolio-list.slider > .slick-list > .slick-track >.slick-slide {
    margin:0 12px;
    height: auto;
}
.portfolio-list.slider > .slick-list > .slick-track > .slick-slide > div {
    height: 100%;
}
.portfolio-list.slider > .slick-list > .slick-track > .slick-slide .portfolio-item {
    height: 100%;
}
/* end */
.portfolio-item {
    width: calc(100% / 3 - 16px);
    display: flex;
    flex-direction: column;
    border: 1px solid #333742;
    background-color: #262A35;
    border-radius: 32px;
    overflow: hidden;
}
.portfolio-item-imgs {
    height: 355px;
    position: relative;
}
.portfolio-item-imgs.slick-dotted.slick-slider {
    margin: 0;
}
.portfolio-item-imgs .slick-list {
    height: 100%;
}
.portfolio-item-imgs .slick-track {
    height: 100%;
}
.portfolio-item-imgs .slick-slide {
    height: 100%;
}
.portfolio-item-imgs .slick-slide > div {
    height: 100%;
}
.portfolio-item-imgs .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.portfolio-item-imgs .slick-prev {
    position: absolute;
    left: 14px;
    top:50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 39px;
    height: 39px;
    border: 0;
    backdrop-filter: blur(14px);
    background-color: #FFFFFF99;
    border-radius: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.06055 0.530331L1.06055 7.53033L8.06055 14.5303' stroke='%23191A1F' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.portfolio-item-imgs .slick-prev:hover,
.portfolio-item-imgs .slick-prev:focus {
    background-color: #1F5FFF!important;
    border:0;
    box-shadow: unset;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.06055 0.530331L1.06055 7.53033L8.06055 14.5303' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.portfolio-item-imgs .slick-next {
    position: absolute;
    right: 14px;
    top:50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 39px;
    height: 39px;
    border: 0;
    backdrop-filter: blur(14px);
    background-color: #FFFFFF99;
    border-radius: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.530273 0.530331L7.53027 7.53033L0.530273 14.5303' stroke='%23191A1F' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.portfolio-item-imgs .slick-next:hover,
.portfolio-item-imgs .slick-next:focus {
    background-color: #1F5FFF!important;
    border:0;
    box-shadow: unset;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.530273 0.530331L7.53027 7.53033L0.530273 14.5303' stroke='%23FFFFFF' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.portfolio-item-imgs .slick-dots {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
}
.portfolio-item-content {
    padding:24px 28px 28px;
    height: calc(100% - 355px);
    display: flex;
    flex-direction: column;
}
.portfolio-item-name {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1%;
    margin: 0;
    margin-bottom: 16px;
    word-wrap: break-word;
}
.portfolio-item-excerpt {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    margin: 0;
    /* margin-bottom: 16px; */
    margin-bottom: 72px;
    opacity: .6;
}
.portfolio-item-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}
.portfolio-item-tags_tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    border-radius:16px;
    backdrop-filter: blur(14px);
    background-color: #333742;
    color:#ffffffcc;
    transition: .3s;
    margin: 0;
}
@media(max-width:1400px) {
    .portfolio-item-name {
        font-size: 28px;
    }
}
@media(max-width:992px) {
    .portfolio .title-wrap {
        margin-bottom: 32px;
    }
    .portfolio .title-wrap .link {
        display: none;
    }
    /* slider */
    .portfolio-list.slider > .slick-list {
        padding-right: 73px;
        margin: 0 -8px;
    }
    .portfolio-list.slider > .slick-list > .slick-track > .slick-slide {
        margin: 0 8px;
    }
    .portfolio-list {
        gap:32px 16px;
    }
    .portfolio-item {
        width: calc(100% / 2 - 8px);
    }
    .portfolio-item-imgs {
        height: 252px;
    }
    .portfolio-item-imgs .slick-prev {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }
    .portfolio-item-imgs .slick-next {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }
    .portfolio-item-content {
        padding: 24px;
        height: calc(100% - 252px);
    }
    .portfolio-item-name {
        font-size: 24px;
        word-wrap: break-word;
    }
    .portfolio-item-excerpt {
        font-size: 14px;
        margin-bottom: 48px;
    }
    .portfolio-item-tags {
        gap:9px;
    }
    .portfolio-item-tags_tag {
        padding: 10px 12px;
        font-size: 12px;
    }
    .portfolio .container > .link {
        display: inline-flex;
        margin-top: 32px;
    }
}
@media(max-width:576px) {
    .portfolio-item {
        width: 100%;
    }
    .portfolio-list {
        gap: 24px;
    }
}
@media(max-width:420px) {
    .portfolio-list.slider > .slick-list {
        margin-right: -20px;
        width: auto;
    }
}
/* end */

/* section price service */
.services-price .title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 40px;
}
.services-price .title-wrap .title {
    margin: 0;
    line-height: 100%;
}
.services-price .link {
    text-decoration: none;
    opacity: 1;
    padding-right: 19px;
    position: relative;
}
.services-price .link::after {
    content: '';
    display: block;
    width: 9px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' viewBox='0 0 9 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.530273 0.530334L7.53027 7.53033L0.530273 14.5303' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.services-price .link:hover::after {
    transform: translateY(-50%) translateX(10px);
}
.services-price-block {
    margin-bottom: 32px;
}
.services-price-block-head {
    display: flex;
    gap:12px;
    align-items: center;
    font-weight: 400;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -1%;
    margin-bottom: 24px;
}
.services-price-block-head .icon {
    display: block;
    width: 33px;
    height: 33px;
}
.services-price-block-head .icon img {
    width: 100%;
    height: 100%;
}
.services-price-block-head .name {
    margin: 0;
    width: calc(100% - 33px - 12px);
}
.services-price-block-content ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 150%;
}
.services-price-block-content ul li::marker {
    color: #1F5FFF;
    font-size: 21px;
    line-height: 16px;
}
.services-price-block-content table {
    overflow: auto;
    display: block;
}
.services-price-block-content table > * {
    min-width: 760px;
    display: block;
}
.services-price-block-content table::-webkit-scrollbar {
    width: 0;
    height: 4px;
}
.services-price-block-content table::-webkit-scrollbar-track {
    background-color: #ffffff99;
    border-radius: 2px;
}
.services-price-block-content table::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 2px;
}
.services-price .container > .link {
    display: none;
}
@media(max-width:992px) {
    .services-price-block-head {
        font-size: 18px;
    }
    .services-price-block-head .icon {
        display: block;
        width: 28px;
        height: 28px;
    }
    .services-price-block-head .name {
        width: calc(100% - 28px - 12px);
    }
    .services-price .title-wrap .link {
        display: none;
    }
    .services-price .container > .link {
        display: inline-flex;
        margin-top: 32px;
    }
}
/* end */

/* equipment section */
.equipment-wrapper {
    display: flex;
    justify-content: space-between;
}
.equipment-ls {
    width: 553px;
    display: flex;
    flex-direction: column;
}
.equipment-ls > .title {
    margin-bottom: 40px;
    line-height: 100%;
}
.equipment-content-item-cats {
    display: flex;
    flex-wrap: wrap;
    gap:8px;
    width: 100%;
    margin-bottom: 32px;
}
.equipment-content-item-cats .cat-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333742;
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -1%;
    color:#ffffffcc;
    text-align: center;
    margin: 0;
    text-decoration: none;
    transition: .3s;
}
.equipment-content-item-cats .cat-item.active {
    background-color: #1F5FFF;
    box-shadow: 0px 0px 15px 0px #1F5FFF80;
    color:#fff;
}
.equipment-content-item_full-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    margin: 0;
    margin-bottom: 10px;
    color:#ffffff99;
}
.equipment-content-item .title {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1%;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 32px;
}
.equipment-content-item .link {
    font-weight: 500;
    line-height: 100%;
    padding-right: 15px;
    position: relative;
    margin-bottom: 48px;
}
.equipment-content-item .link::after {
    content:'';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 9.5L9.5 0.5M9.5 9.5V0.5H0.5' stroke='%23F5F5F5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.equipment-content-item .link:hover::after {
    transform: translateY(-50%) rotate(45deg);
}
.equipment-content-slider-arrows {
    display: flex;
    align-items: center;
    gap:12px;
    margin-top: auto;
}
.equipment-content-slider-arrows .sl-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -1%;
    text-align: center;
    width: 34px;
}
/* Обёртка — обязательно position: relative */
.equipment-rs {
    width: 700px;
    height: 400px;
    margin-top: 24px;
}
.equipment-shema.slider {
    width: 100%;
    height: 100%;
    overflow: unset!important;
}
.equipment-shema.slider .slick-list {
    overflow: unset;
    width: 100%;
    height: 100%;
}
.equipment-shema.slider .slick-track {
    /* width: 100%!important; */
    height: 100%;
}
.equipment-shema.slider .slick-slide {
    width: 100%;
    height: 100%;
}
.equipment-shema.slider .slick-slide > div {
    width: 100%;
    height: 100%;
}
.equipment-image-wrapper {
    position: relative;
    display: inline-block;
    width: 700px!important;
    height: 400px;
}
.equipment-main-image {
    width: 100%;
    height: 100%;
    display: block;
}
/* Метка */
.equipment-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}
/* Точка */
.marker-dot {
    width: 24px;
    height: 24px;
    background: #fff;
    box-shadow: 0px 0px 10px 2px #101D3E66;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Пульсирующая анимация */
    animation: pulse 2s infinite;
}
/* Подпись */
.marker-label-wrap {
    position: absolute;
    bottom: 43px;
    left:-9px;
    width: 312px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.marker-label {    
    width: auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    color:#ffffff99;
    text-align: start;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    border: 1px solid #333742;
    background-color: #262A35;
    border-radius: 24px;
    padding: 19px;
    transition: .3s;
}
.marker-label:hover {
    background-color: #1F5FFF;
    border-color:#1F5FFF;
    color:#fff;
}
/* Пульсация */
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(31, 95, 255, 0.8); }
    70%  { box-shadow: 0 0 0 9px rgba(31, 95, 255, 0.8);   }
    100% { box-shadow: 0 0 0 0   rgba(31, 95, 255, 0.8);   }
}
.equipment-image-wrapper .equipment-marker:nth-child(2) .marker-label-wrap {
    /* width: 240px; */
    left: unset;
    bottom: unset;
    top: calc(100% + 19px);
    right: -9px;
    justify-content: flex-end;
}
.equipment-image-wrapper .equipment-marker:nth-child(3) .marker-label-wrap {
    /* width: 240px; */
    left: -9px;
    bottom: calc(100% + 19px);
    top: unset;
    right: unset;
}
.equipment-image-wrapper .equipment-marker:nth-child(4) .marker-label-wrap {
    /* width: 190px; */
    left: calc(100% + 19px);
    bottom: unset;
    top: -9px;
    right: unset;
}
.equipment-content.slider .slick-list {
    overflow: unset;
}
.equipment-ls > .title {
    margin-bottom: 24px;
}
/* .equipment-content-item-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: auto;
    margin-bottom: 0;
    position: absolute;
    bottom: calc(100% + 43px);
    left: 360px;
} */
@media(max-width:1400px) {
    .equipment-ls {
        width: 453px;
    }
    .equipment-rs {
        width: 500px;
    }
    .equipment-image-wrapper {
        width: 500px !important;
        height: 400px;  
    }
    .equipment-image-wrapper .equipment-marker:nth-child(4) .marker-label-wrap {
        left: unset;
        bottom: unset;
        top: calc(100% + 19px);
        right: -9px;
        justify-content: flex-end;
    }
}
@media(max-width:1200px) {
    .equipment-content-item_full-name {
        max-width: 300px;
    }
    .equipment-content-item .title {
        max-width: 300px;
    }
    .marker-label {
        padding: 15px 20px;
        border-radius: 24px;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: -1%;
    }
}
@media(max-width:992px) {
    .equipment-wrapper {
        flex-direction: column;
    }
    .equipment-ls {
        width: 100%;
        position: relative;
    }
    .equipment-rs {
        width: 100%;
        height: 100%;
        margin: 0;
        display: flex;
    }
    .equipment-content-item-cats .cat-item {
        padding:12px 14px;
    }
    .equipment-content-item_full-name {
        max-width: 100%;
        font-size: 14px;
    }
    .equipment-content-item .title {
        max-width: 100%;
        font-size: 24px;
        margin-bottom: 32px;
        padding-right: 86px;
    }
    .equipment-content-item .link {
        margin-bottom: 32px;
    }
    .equipment-content-slider-arrows {
        gap:8px;
        position: absolute;
        right: 0;
        bottom: 37px;
    }
    .equipment-content-slider-arrows .slick-next:not(.link) {
        width: 24px;
        height: 24px;
        border-radius: 10px;
        background-size: 5px 9px;
    }    
    .equipment-content-slider-arrows .slick-prev:not(.link) {
        width: 24px;
        height: 24px;
        border-radius: 10px;
        background-size: 5px 9px;
    }
    .equipment-content-slider-arrows .sl-count {
        font-size: 14px;
        width: 22px;
    }
    .equipment-image-wrapper {
        width: 100% !important;
        height: auto;
    } 
    .equipment-image-wrapper img {
        height: 216px;
        width: 100%;
        margin-bottom: 32px;
        object-fit: contain;
        object-position: center;
    }
    .equipment-marker {
        position: unset;
        transform: unset;
        margin-bottom: 8px;
    }
    .equipment-marker .marker-dot {
        display: none;
    }
    .marker-label-wrap {
        position: unset;
        width: 100%;
        justify-content: flex-start!important;
    }
    .equipment-image-wrapper > *:last-child {
        margin-bottom: 0;
    }
    .marker-label {
        width: 100%;
        justify-content: flex-start;
    }
    .equipment-shema:not(.slider) {
        width: 100%;
    }
    .equipment-shema.slider {
        height: auto;
        display: flex;
    }
    .equipment-shema.slider .slick-list {
        height: auto;
    }
    .equipment-shema.slider .slick-track {
        height: auto;
    }
    .equipment-shema.slider .slick-slide {
        height: auto;
    }
    .equipment-shema.slider .slick-slide > div {
        height: auto;
    }
}
/* end */