@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700|Open+Sans:400,600,700&display=swap);
/*** COLOURS ***/
/*** SIZES ***/
/*** DOTDOTDOT ***/
/*** FONTS ***/
.checklistBlock {
  margin: 100px 0;
  background: #f8f8f8;
  position: relative;
}
.checklistBlock.aos-animate .checks {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}
.checklistBlock .checks {
  text-align: center;
  width: calc(100% + 40px);
  margin-left: -20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0.45s, visibility 0.3s 0.45s, transform 0.3s 0.45s;
  -moz-transition: opacity 0.3s 0.45s, visibility 0.3s 0.45s, transform 0.3s 0.45s;
  -ms-transition: opacity 0.3s 0.45s, visibility 0.3s 0.45s, transform 0.3s 0.45s;
  -o-transition: opacity 0.3s 0.45s, visibility 0.3s 0.45s, transform 0.3s 0.45s;
  transition: opacity 0.3s 0.45s, visibility 0.3s 0.45s, transform 0.3s 0.45s;
}
.checklistBlock .checks .check {
  text-align: left;
  padding: 0 20px;
  width: 25%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
}
.checklistBlock .checks .check .checkIcon {
  height: 50px;
  width: 50px;
  border: 2px solid #fbbc43;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 50px;
  color: #fbbc43;
}
@media all and (max-width: 950px) {
  .checklistBlock .checks .check {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 768px) {
  .checklistBlock {
    margin: 50px 0;
  }
}
@media all and (max-width: 550px) {
  .checklistBlock .checks .check {
    width: 100%;
  }
}
/*# sourceMappingURL=checklist_block.css.map */