.component__design-v2-service-indications{
  background:#fff;
}

.design-v2-service-indications__header{
  margin-bottom:30px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__header{
    margin-bottom:40px;
  }
}

.design-v2-service-indications__title{
  color:#252525;
  font-family:var(--font-medium);
  font-size:22px;
  line-height:26px;
  margin:0 0 12px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__title{
    font-size:40px;
    line-height:48px;
  }
}

.design-v2-service-indications__description{
  color:#515458;
  font-size:14px;
  line-height:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__description{
    font-size:16px;
    line-height:22px;
  }
}

.design-v2-service-indications__list{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__list{
    -moz-column-gap:24px;
         column-gap:24px;
    grid-auto-rows:auto auto;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    row-gap:0;
  }
}

.design-v2-service-indications__item{
  background:#f4f8fd;
  border:1px solid #d7e7f6;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__item{
    display:grid;
    grid-row:span 2;
    grid-template-rows:subgrid;
    row-gap:0;
  }
  .design-v2-service-indications__item:nth-child(n+3){
    margin-top:24px;
  }
}

.design-v2-service-indications__item-main{
  background:#fff;
  display:grid;
  gap:12px;
  grid-template-columns:40px 1fr;
  padding:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__item-main{
    gap:12px;
    grid-row:1;
    grid-template-columns:44px 1fr;
    padding:24px;
  }
}

.design-v2-service-indications__icon{
  align-items:center;
  background:#eef4fb;
  border-radius:50%;
  color:#15a8f1;
  display:inline-flex;
  height:40px;
  justify-content:center;
  width:40px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__icon{
    height:44px;
    width:44px;
  }
}

.design-v2-service-indications__number{
  align-items:center;
  background:#f4f8fd;
  border-radius:50%;
  color:#15a8f1;
  display:inline-flex;
  font-family:var(--font-medium);
  font-size:14px;
  height:40px;
  justify-content:center;
  line-height:20px;
  width:40px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__number{
    font-size:16px;
    height:44px;
    line-height:22px;
    width:44px;
  }
}

.design-v2-service-indications__icon-image{
  display:block;
  height:20px;
  -o-object-fit:contain;
     object-fit:contain;
  width:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__icon-image{
    height:24px;
    width:24px;
  }
}

.design-v2-service-indications__item-title{
  color:#252525;
  font-family:var(--font-medium);
  font-size:16px;
  line-height:22px;
  margin:0 0 8px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__item-title{
    font-size:18px;
    line-height:24px;
  }
}

.design-v2-service-indications__item-description{
  color:#515458;
  font-size:14px;
  line-height:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__item-description{
    font-size:16px;
    line-height:22px;
  }
}

.design-v2-service-indications__item-body{
  background:#f4f8fd;
  color:#515458;
  flex:1;
  font-size:14px;
  line-height:20px;
  padding:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-indications__item-body{
    flex:initial;
    font-size:16px;
    grid-row:2;
    line-height:22px;
  }
}

.design-v2-service-indications__item-body p{
  margin:0;
}