/* СТИЛИ ДЛЯ БЛОКА SWIPER */

.swiper {
    width: 100%;
    height: 100%;
    bottom: 90px;
    border-bottom: 1px solid #44444429;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper__content {
    height: 600px;
    width: 50%;
    display: flex;
    align-items: center;
    text-align: left;
}

.swiper__inner {
    max-width: 1350px;
    margin: 0 auto;
}

.swiper__title {
    font-size: 56px;
    font-weight: bold;
    text-transform: uppercase;
    color: #257985;
}

.swiper__container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 10px;
}

.swiper__title_red {
    color: #FF4447;
}

.swiper__subtitle {
    margin: 15px 0;
}

.swiper__link {
    font-size: 16px;
    font-weight: bold;
    color: #5EA8A7;
    text-transform: uppercase;
    border-bottom: 3px solid #5EA8A7;
    transition: border-bottom .3s ease-out;
}

.swiper__link:hover {
    border-bottom: 3px solid #FF4447;
}

.swiper__bg {
    height: 600px;
    width: 50%;
}

.swiper__bg_first {
    background: url("https://servom.ru/wa-data/public/shop/themes/servom/0487105bb773abc95fbd.png") center no-repeat;
    background-size: cover;
}

.swiper__bg_second {
    background: url("https://servom.ru/wa-data/public/shop/themes/servom/bg2.png") center no-repeat;
    background-size: cover;
}

.swiper__bg_third {
    background: url("https://servom.ru/wa-data/public/shop/themes/servom/bg3.png") center no-repeat;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    display: flex;
    flex-direction: column;
    right: 30px;
    bottom: 32%;
    position: absolute;
}

.swiper-pagination-bullet {
    margin: 10px !important;
    background: #FFFFFF !important;
    opacity: 1 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #FF4447 !important;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА SWIPER */

@media (max-width: 900px) {
    
    .swiper__content {
        height: 450px;
    }
  
    .swiper__bg {
        height: 450px;
    }
    
    .swiper__container {
        margin-left: 1em;
    }
    
    .swiper__link {
        font-size: 12px;
    }
    
    .swiper__title {
        font-size: 18px;
        width: 45%;
    }
    
    .swiper__subtitle {
        font-size: 12px;
        width: 45%;
    }
}

/* СТИЛИ ДЛЯ БЛОКА SEARCH-WIDGET */

.search-widget {
    z-index: 2;
    width: 100%;
    position: relative;
    margin-top: -190px;
}

.search-widget__container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5rem rgba(0, 0, 0, 0.2);
    background: #fff;
    position: relative;
}

.search-widget__question .search-widget__inner {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 5px 5px 10px;
    display: flex;
    justify-content: space-between;
}

.search-widget__field {
    border: none;
    background: 0 0;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    outline: none;
    font-size: 17px;
}

.search-widget__sections {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.search-widget__section {
    line-height: 30px;
    border-radius: 5px;
    padding: 0 10px;
    border: 2px solid #257985;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 10px 0 0;
    display: inline-block;
    transition: all .3s ease-out;
}

.search-widget__section:hover {
    color: #FFFFFF;
    background: #257985;
}

.search-widget__link,
.search-widget__text {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.search-widget__inner--unavailable {
    position: relative;
    display: inline-block;
}

.search-widget__inner--unavailable::after {
    content: "Сервис временно не доступен";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ff6b6b;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    font-size: 26px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-out;
    z-index: 1000;
}

.search-widget__inner--unavailable:hover::after {
    opacity: 1;
    visibility: visible;
}

.search-widget__btn {
    font-size: 18px;
    font-family: inherit;
    text-wrap: nowrap;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #257985;
    padding: 10px 15px;
    opacity: 0.9;
    color: #FFFFFF;
    background-image: -webkit-linear-gradient(145deg, #257985 50%, transparent 50%);
    background-image: linear-gradient(145deg, #257985 50%, transparent 50%);
    background-size: 400%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.search-widget__btn:hover {
    background-position: 100%;
    color: #257985;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА SEARCH-WIDGET */

@media (max-width: 1150px) {
    
    .search-widget__field {
        font-size: 15px;
    }
    
    .search-widget__section {
        font-size: 12px;
        margin: 10px 5px 0 0;
        padding: 0 5px;
    }
    
    .search-widget__btn {
      font-size: 16px;
      padding: 10px 5px;
    }
}

/* СТИЛИ ДЛЯ БЛОКА CATALOG */

.catalog__container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 10px;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.catalog__cell {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    min-height: 200px;
    position: relative;
}

.catalog__divider {
    width: 1px;
    background: #ccccccba;
    height: 150px;
    position: absolute;
    right: 0;
}

.catalog__image {
    width: 100%;
    min-width: 140px;
}

.catalog__image-wrapper {
    margin-right: 20px;
}

.catalog__head {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.catalog__head a {
    color: #257985;
    line-height: 138%;
    transition: border-bottom .3s ease-out;
    border-bottom: 3px solid transparent;
}

.catalog__head a:hover {
    border-bottom: 3px solid #FF4447;
}

.catalog__sub {
    color: #000;
}

.catalog__link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.catalog__link a {
    display: flex;
    align-items: center;
    color: #257985;
    margin-top: 10px;
}

.catalog__link a:hover span {
    border-bottom: 2px solid #FF4447;
}

.catalog__link span {
    border-bottom: 2px solid #257985;
    transition: all .3s ease-out;
}

.catalog__cell--first {
    align-items: start;
    flex-direction: column;
    background: #257985;
}

.catalog__cell--first .catalog__head {
    font-size: 30px;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-weight: bold;
}

.catalog__cell--first .catalog__sub {
    color: #FFFFFF;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА CATALOG */

@media (max-width: 1150px) {
    
    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog__divider {
        display: none;
    }
}

@media (max-width: 800px) {
    
    .catalog__grid {
        grid-template-columns: 1fr;
    }

    .catalog__cell {
        padding: 10px;
    }
  
    .catalog__image-wrapper {
        margin-right: 5px;
    }
}

/* СТИЛИ ДЛЯ БЛОКА INDIVIDUAL-ORDER */

.individual-order__container {
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
}

.individual-order__left {
    width: 50%;
    background: linear-gradient(-68deg, transparent 117px, #257985 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.individual-order__left-inner {
    padding: 0;
}

.individual-order__head {
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 100%;
}

.individual-order__sub {
    color: #FFFFFF;
    margin-top: 10px;
    font-size: 17px;
}

.individual-order__btn {
    font-family: inherit;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #257985;
    padding: 10px 15px;
    opacity: 0.9;
    color: #FFFFFF;
    background-image: -webkit-linear-gradient(145deg, #257985 50%, transparent 50%);
    background-image: linear-gradient(145deg, #257985 50%, transparent 50%);
    background-size: 400%;
    background-position: 0%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    margin: 20px 0 5px 0;
    background-origin: border-box;
}

.individual-order__btn:hover {
    background-position: 100%;
    color: #257985;
}

.individual-order__btn--reverse {
    border: 2px solid #FFFFFF;
    color: #257985;
    background-image: -webkit-linear-gradient(145deg, #FFFFFF 50%, #257985 50%);
    background-image: linear-gradient(145deg, #FFFFFF 50%, #257985 50%);
}

.individual-order__btn--reverse:hover {
    color: #FFFFFF;
}

.individual-order__right {
    width: 50%;
    height: 290px;
    display: flex;
    align-items: center;
}

.individual-order__image {
    width: 100%;
}

.individual-order {
    background: linear-gradient(to right, #257985 30%, #fff 30%);
}

.individual-order__left {
    padding-left: 25px;
}

.individual-order__sub {
    margin-right: 130px;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА INDIVIDUAL-ORDER */

@media (max-width: 1150px) {
    
    .individual-order {
        background: #257985;
    }
  
    .individual-order__container {
        flex-direction: column;
    }
  
    .individual-order__left {
        width: 100%;
        height: 100%;
        position: relative;
        background: #257985;
        padding-left: 0;
    }
  
    .individual-order__left-inner {
        padding: 25px;
    }
  
    .individual-order__sub {
        margin-right: 0;
    }
  
    .individual-order__right {
        width: 100%;
        justify-content: center;
        background: #fff;
    }
  
    .individual-order__image {
        width: auto;
    }
}

@media (max-width: 600px) {
    
    .individual-order__image {
        width: 100%;
        height: auto;
    }
}

/* СТИЛИ ДЛЯ БЛОКА INDIVIDUAL-ORDER-MODAL */

.individual-order-modal {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    overscroll-behavior: contain;
    z-index: 1000;
}

.individual-order-modal__box {
    margin: 0px auto;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.52);
    position: relative;
    height: 100%;
}

.individual-order-modal__content {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.individual-order-modal__header {
    flex: 0 0 45%;
    background: #257985;
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
}

.individual-order-modal__body {
    flex: 0 0 55%;
    background: #fff;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    padding: 20px 20px 20px 65px;
    position: relative;
    overflow-y: auto;
}

.individual-order-modal__close {
    font-weight: 700;
    font-size: 28px;
    color: #5ea8a7;
    cursor: pointer;
    justify-self: end;
    align-self: start;
    z-index: 1001;
}

.individual-order-modal__close:hover {
    transform: scale(1.15);
}

.individual-order-modal__title {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    position: relative;
    margin-left: 75px;
    margin-top: 30px;
    display: inline-block;
    max-width: 700px;
    padding-left: 20px;
}

.individual-order-modal__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #fff;
}

.individual-order-modal__description {
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    color: #514f4f;
    margin-left: auto; 
}

.individual-order-modal__text {
    max-width: 950px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 20px;
}

.individual-order-modal__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
}

.individual-order-modal__images .img-big {
    grid-column: span 2;
}

.individual-order-modal__images img {
    object-fit: contain;
    margin: 0 auto;
    width: 100%;
    transition: transform .3s ease;
}

.individual-order-modal__images img:hover {
  transform: scale(1.05);
}

@media (max-width: 1150px) {
    
    .individual-order-modal__images {
        grid-template-columns: auto;
    }
}

@media (max-width: 900px) {
    
    .individual-order-modal__content {
        flex-direction: column;
        min-height: 100vh;
    }
    
    .individual-order-modal__header {
        flex: 0 0 auto;
        padding: 20px;
    }
    
    .individual-order-modal__body {
        flex: 1 1 auto;
        padding: 20px;
        grid-template-rows: auto auto auto auto;
        overflow-y: visible;
    }
    
    .individual-order-modal__title {
        margin-left: 0;
        margin-top: 0;
        padding-left: 15px;
        font-size: 24px;
    }
    
    .individual-order-modal__close {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .individual-order-modal__description {
        font-size: 14px;
        text-align: left;
    }
    
    .individual-order-modal__images .img-big {
        grid-column: span 1;
    }
}

@media (max-width: 620px) {
    
    .individual-order-modal__body {
        padding: 15px;
    }
    
    .individual-order-modal__title {
        font-size: 20px;
        padding-left: 12px;
    }
    
    .individual-order-modal__description {
        font-size: 13px;
    }
    
    .individual-order-modal__images {
        gap: 15px;
    }
}

/* СТИЛИ ДЛЯ БЛОКА SERVICE */

.service {
    margin-top: 80px;
}

.service__container {
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
}

.service__content {
    width: 50%;
    padding-left: 20px;
}

.service__title {
    font-size: 56px;
    color: #5EA8A7;
    font-weight: bold;
    margin-bottom: 40px;
}

.service__title-accent {
    color: #FF4447;
}

.service__description {
    position: relative;
    padding: 30px;
}

.service__description::before {
    content: open-quote;
    left: 0;
    top: -40px;
    line-height: 30px;
    font-weight: 700;
    font-size: 130px;
    height: 20px;
    opacity: 0.1;
    position: absolute;
}

.service__description::after {
    content: close-quote;
    right: 0;
    bottom: 0;
    line-height: 30px;
    font-weight: 700;
    font-size: 130px;
    height: 20px;
    opacity: 0.1;
    position: absolute;
}

.service__image-block {
    width: 50%;
    display: flex;
    justify-content: center;
}

.service__image {
    height: 500px;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА SERVICE */

@media (max-width: 1150px) {
    
    .service__image-block {
        width: 100%;
    }
  
    .service__title {
        font-size: 40px;
    }
  
    .service__container {
        flex-direction: column;
    }

    .service__content {
        width: 100%;
        padding: 0;
    }

    .service__inner {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    
    .service__image {
        height: 250px;
    }
}

/* СТИЛИ ДЛЯ БЛОКА ADVANTAGES */

.advantages {
    background: url("https://servom.ru/wa-data/public/shop/themes/servom/ba765466b1a383aa3558.png") repeat-x left bottom;
    padding-bottom: 30px;
}

.advantages__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
    padding-top: 70px;
}

.advantages__item {
    height: 200px;
    transition: all .3s ease-out;
    position: relative;
}

.advantages__description {
    margin: 20px;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    position: absolute;
    bottom: 0;
    transition: all .3s ease-out;
}

.advantages__item:hover {
    margin-top: -125px;
    height: 310px;
}

.advantages__item:hover .advantages__description {
    max-height: 6rem;
    opacity: 1;
}

.advantages__figure {
    background-size: cover;
    height: 185px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.advantages__figure:before {
    content: '';
    background: #003861;
    background: linear-gradient(135deg, #257985 0, #5EA8A7 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    transition: all .3s ease-out;
}

.advantages__figure:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, #000 100%);
    height: 60%;
    z-index: 0;
    opacity: 0.2;
    transition: all .3s ease-out;
}

.advantages__figure--1 {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/dcf0505b9aa9086405ec.png");
}

.advantages__figure--2 {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/c7db6384ebbc521c5730.png");
}

.advantages__figure--3 {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/0707eef967fc760b8c97.png");
}

.advantages__figure--4 {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/6bf7ed9e7b1201681223.png");
}

.advantages__title {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 1rem #000;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА ADVANTAGES */

@media (max-width: 1150px) {
    
    .advantages__list {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }
}

@media (max-width: 620px) {
    
    .advantages__list {
        grid-template-columns: 1fr;
    }
}

/* СТИЛИ ДЛЯ БЛОКА NEWS */

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.news__cell {
    padding: 45px;
    border-bottom: 1px solid transparent;
    position: relative;
}

.news__cell:nth-child(2),
.news__cell:nth-child(5) {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    background: #f5f5f5;
    border-bottom: 1px solid #FFFFFF;
}

.news__cell:nth-child(2):hover,
.news__cell:nth-child(5):hover {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    background: none;
}

.news__cell::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: contain;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#news-cell-1:before {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/news1.png");
}

#news-cell-2:before {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/newss2.png"); 
}

#news-cell-3:before {
    background-image: url("https://servom.ru/wa-data/public/shop/themes/servom/newsss3.png");
}

.news__cell:hover::before {
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    opacity: 0.17;
}

.news__head {
    font-size: 30px;
    color: #257985;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease-out;
    padding-bottom: 5px;
}

.news__head:hover {
    text-decoration: underline solid #FF4447 3px;
}

.news__sub-container {
    height: 90px;
}

.news__sub {
    margin: 20px 0;
    opacity: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news__link {
    border: 2px solid #257985;
    border-radius: 3px;
    display: inline-block;
    padding: 5px;
    line-height: 100%;
    color: #257985;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.news__link:hover {
    background: #257985;
    border-color: #257985;
    color: #FFFFFF;
}

.news__date {
    text-align: center;
}

.news__day {
    font-size: 30px;
    color: #257985;
    font-weight: bold;
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА NEWS */

@media (max-width: 1150px) {
    
    .news__grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 770px) {
    
    .news__cell {
        padding: 30px 25px;
    }

    .news__head {
        font-size: 24px;
    }

    .news__sub-container {
        height: auto;
        min-height: 90px;
    }
}

/* СТИЛИ ДЛЯ БЛОКА SOLUTIONS */

.solutions {
    background-size: cover;
    background: url("https://servom.ru/wa-data/public/shop/themes/servom/6438ca4a583cf7adfb14.png") center;
    position: relative;
}

.solutions__intro {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 400px;
    bottom: 65px;
    left: 275px;
    color: #FFFFFF;
}

.solutions__inner {
    padding: 0;
}

.solutions__head {
    font-size: 56px;
    margin-bottom: 20px;
}

.solutions__sub {
    margin-left: 2px;
}

.solutions-honeycomb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    align-items: center;
    padding: 25px 300px 0 300px;
    margin: 0 auto;
    transform: translateY(27.5px);
    max-width: 1350px;
    box-sizing: content-box;
}

.solutions-honeycomb__cell {
    flex: 0 1 200px;
    max-width: 200px;
    height: 110px;
    margin: 52.38095px 25px 50px;
    position: relative;
    padding: 0.5em;
    text-align: center;
    z-index: 1;
    box-sizing: content-box;
}

.solutions-honeycomb__cell-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    hyphens: auto;
    word-break: break-word;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 18px;
    transition: opacity 350ms;
    opacity: 0;
    box-sizing: content-box;
}

.solutions-honeycomb__cell-title > small {
    font-weight: 300;
    margin-top: 0.25em;
}

.solutions-honeycomb__cell-image {
    object-fit: cover;
    object-position: center;
    box-sizing: content-box;
}

.solutions-honeycomb__cell::before,
.solutions-honeycomb__cell::after {
    content: '';
    box-sizing: content-box;
}

.solutions-honeycomb__cell::before,
.solutions-honeycomb__cell::after,
.solutions-honeycomb__cell-image {
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    display: block;
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    box-sizing: content-box;
}

.solutions-honeycomb__cell::before {
    background: #FFFFFF;
    transform: scale(1.055);
}

.solutions-honeycomb__cell::after {
    background: #5EA8A7;
    opacity: 0;
    transition: opacity 350ms;
}

.solutions-honeycomb__cell:hover .solutions-honeycomb__cell-title {
    opacity: 1;
}

.solutions-honeycomb__cell:hover::before {
    background: #5EA8A7;
}

.solutions-honeycomb__cell:hover::after {
    opacity: 0.5;
}

.solutions {
    height: 100%;
    padding-bottom: 60px;
}

.solutions__intro {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    width: 95%;
    left: 0;
    bottom: 0;
    padding-bottom: 30px;
}

.solutions-honeycomb {
    padding: 0;
    transform: translateY(19.25px);
}

/* АДАПТИВНЫЕ СТИЛИ ДЛЯ БЛОКА SOLUTIONS */

@media (min-width: 1150px) {
    
    .solutions-honeycomb__cell:nth-child(5n) {
        margin-left: 290px;
    }
}

@media (max-width: 1150px) {
    
    .solutions {
        height: 100%;
        padding-bottom: 60px;
    }

    .solutions__intro {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .solutions__inner {
        padding: 25px;
    }

    .solutions__head {
        font-size: 40px;
    }

    .solutions-honeycomb {
        padding: 0;
        transform: translateY(19.25px);
    }

    .solutions-honeycomb__cell {
        flex: 0 1 140px;
        max-width: 140px;
        height: 77px;
        margin: 70px 25px 70px 25px;
    }
}