.services__grid-all	{
display: grid;
grid-template-columns: repeat(3, 1fr);
row-gap: 50px;
column-gap: 30px;
}
.problems__list-wrap {
display: flex; flex-wrap: wrap;
row-gap: 100px;
column-gap: 30px;
}
.problem__item {
width: 100%;
}
.problem__item-no-children {
max-width: calc(33.3333% - 30px);
display: flex;
flex-direction: column;
height: auto;
}
.problem__item-no-children .problem__item-img {
flex-basis: auto;
}
.problem__item-no-children > a {
margin-top: auto;
margin-bottom: 0;
}
.problem__item:nth-child(2n+2) .problem__item-inner {
flex-direction: row-reverse;
}
.problem__item > h2 {
margin-bottom: 20px;
font-size: 44px;
font-weight: 400;
color: var(--title-color);
}
.problem__item > h2 a {
color: inherit;
font-size: inherit;
transition: var(--default-transition);
}
.problem__item > h2 a:hover {
color: var(--text-color-hover);
}
.problem__item-inner {
display: flex;
flex-direction: row;
gap: 30px;
}
.problem__item-img-link {
display: contents;
}
.problem__item-img {
max-width: 387px;
height: 406px;
width: 100%;
border-radius: 30px;
overflow: hidden;
}
.problem__item-img-wrap {
position: relative;
height: auto;
}
.problem__item-img > img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--default-transition);
}
.problem__item-img-wrap > img {
position: absolute;
}
.problem__item-img-link:hover .problem__item-img-wrap > img {
transform: scale(1.2);
}
.problem__item-content {
padding: 40px 40px;
background-color: var(--background-color-white);
border-radius: 30px;
width: 100%;
}
.problem__item-content {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 30px;
}
.problem-no-img .problem__items-list { column-count: 3;
}
.problem__items-list {
list-style: none;
padding-inline-start: 0;
margin: 0; column-count: 2;
column-gap: 30px; }
.problem__items-list > li:not(:last-child) {
margin-bottom: 16px;
}
.problem__item-link,
.problem__item-btn {
color: var(--text-color-black);
font-family: 'Inter Tight', sans-serif;
font-size: 18px;
font-weight: 300;
line-height: 140%;
}
.problem__item-link {
width: 100%;
display: inline-flex;
justify-content: space-between;
align-items: center;
transition: var(--default-transition);
}
.problem__item-link:hover {
color: var(--text-color-hover);
}
.problem__item-link::after {
content: "";
display: block;
min-width: 20px;
height: 20px;
background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="26" height="27" viewBox="0 0 26 27" fill="none"%3E%3Cpath d="M7.58301 18.9168L18.4163 8.0835" stroke="%23B62D35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cpath d="M7.58301 8.0835H18.4163V18.9168" stroke="%23B62D35" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /%3E%3C/svg%3E');
background-repeat: no-repeat;
background-size: contain;
transition: var(--default-transition);
}
.problem__item-link:hover::after {
transform: rotate(45deg);
}
.problem__item-link-parent {
font-weight: 500;
}
@media(max-width: 992px) {
.services__grid-all	{
grid-template-columns: repeat(2, 1fr);
row-gap: 40px;
column-gap: 20px;
}
.problem__item > h2 {
font-size: 30px;
}
.problem__item-inner {
gap: 20px;
}
.problem__item-img {
max-width: 100%;
height: 320px;
flex-basis: 50%;
}
.problem__item-content {
flex-basis: 50%;
padding: 30px 30px;
gap: 20px;
height: 100%;
}
.problem-no-img .problem__item-content {
flex-basis: auto;
}
.problem__items-list { column-count: 1;
row-gap: 14px;
}
.problem-no-img .problem__items-list { column-count: 2;
}
.problem__item-link {
font-size: 15px;
}
.problem__item-link::after {
min-width: 16px;
height: 16px;
}
.problem__item-no-children {
max-width: calc(50% - 30px);
}
}
@media(max-width: 600px) {
.services__grid-all	{
grid-template-columns: repeat(1, 1fr);
}
.problem__item-inner {
flex-direction: column;
}
.problem__item:nth-child(2n+2) .problem__item-inner {
flex-direction: column;
}
.problem__item-img {
flex-basis: auto;
}
.problem__item-content {
flex-basis: auto;
}
.problem-no-img .problem__items-list { column-count: 1;
}
.problem__item-no-children {
max-width: 100%;
}
}