/**/
.guardTizersArea{
  padding: 60px 0 0;
}
.guardTizersArea .maxwidth-theme{
  background: transparent;
}
.guardTizersList{
  display: flex;
  justify-content: space-between;
}
.guardTizer{
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  width: 320px;
}
.guardTizer .img{
  height: 96px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 24px;
}
.guardTizer .info .title{
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #333;
  height: 40px;
  width:250px;
  margin:auto auto 16px;
}
.guardTizer .info .text{
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: rgba(51, 51, 51, 0.7);
  padding-bottom: 30px;
}
.guardTizer .info .text ul{
  padding: 0;
  margin: 0;
}
.guardTizer .info .text ul > li{
  display: block;
  margin-top: 2px;
}
.guardTizer .info .text ul > li::before {
  content: ".";
  position: relative;
  top: -5px;
  font-size: 20px;
  margin: 0 0 0 -12px;
  padding-right: 7px;
}
.guardTizer:nth-child(2) .info .title,
.guardTizer:nth-child(4) .info .title{
  width:200px;
}

@media(max-width: 1440px){
  .guardTizer {
    width: calc(20% - 14px);
  }
  .guardTizer:nth-child(2) .info .title,
  .guardTizer:nth-child(4) .info .title,
  .guardTizer .info .title{
    width: 100%;
    height: auto;
  }
}
@media(max-width: 992px){
  .guardTizersList {
    flex-wrap: wrap;
  }
  .guardTizer {
    flex-direction: row;
    width: 100%;
  }
  .guardTizer .img {
    height: 84px;
    width: 84px;
    min-width: 84px;
    margin-bottom: 0;
    background-size: 56px;
    background-position: top center;
  }
  .guardTizer .info .title {
    text-align: left;
    padding-left: 7px;
    font-size: 16px;
    line-height: 137%;
  }
  .guardTizer .info .text {
    padding-bottom: 0;
  }
}
@media(max-width: 450px){
  .guardTizer .img {
    height: 64px;
    width: 64px;
    min-width: 64px;
    margin-bottom: 0;
    background-size: 50px;
    background-position: top center;
  }
  .guardTizer .info .text ul > li::before {
    content: "." !important;
  }
  .guardTizer .info .text {
    line-height: 132%;
  }
  .guardTizer .info .title {
    text-align: left;
    padding-left: 19px;
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 10px;
  }
}