/* main section */
.service-facts-and-scores {
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .service-facts-and-scores {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .service-facts-and-scores {
    margin-bottom: 70px;
  }
}
@media (min-width: 992px) {
  .service-facts-and-scores {
    margin-bottom: 80px;
  }
}
@media (min-width: 1366px) {
  .service-facts-and-scores {
    margin-bottom: 90px;
  }
}
@media (min-width: 1680px) {
  .service-facts-and-scores {
    margin-bottom: 115px;
  }
}


/* Customize container width  */
@media (min-width: 1680px) {
  .service-facts-and-scores .container {
    max-width: 1350px;
  }
}

/* title */
.service-facts-and-scores--title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #0E2A72;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .service-facts-and-scores--title {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 45px;
  }
}

/* scoreboard  */
.service-scoreboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-scoreboard-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 385px;
  margin-bottom: 25px;
}
.score-percentage {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 113%;
  text-align: center;
  color: #1E266D;
  display: flex;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  background-size: 100%;
  margin-bottom: 15px;
  position: relative;
}
.score-percentage canvas {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
}


.score-content {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  color: #0E2A72;
}


@media (min-width: 768px){
  .service-scoreboard {
    justify-content: space-between;
  }
  .service-scoreboard-item {
    max-width: 33.33%;
    padding: 0 15px;
  }
  .service-scoreboard-item {
    justify-content: flex-start;
  }
  .score-percentage {
    font-size: 36px;
    height: 140px;
    width: 140px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px){
  .score-percentage {
    font-size: 50px;
    height: 170px;
    width: 170px;
    background-size: auto;
    margin-bottom: 25px;
  }
}
@media (min-width: 1366px){
  .score-percentage {
    font-size: 50px;
    height: 170px;
    width: 170px;
    background-size: auto;
    margin-bottom: 30px;
  }
}
@media (min-width: 1680px){
  .service-scoreboard-item {
    margin-bottom: 50px;
    max-width: 415px;
  }
  .score-percentage {
    font-size: 50px;
    height: 170px;
    width: 170px;
    background-size: auto;
    margin-bottom: 35px;
    top: -8px;
    left: -10px;
  }
  .score-content {
    font-size: 26px;
  }
  .score-percentage canvas {
    transform: rotate(-90deg);
   }
}


/* button area */
.service-facts-and-scores__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.service-facts-and-scores__footer .btn:nth-of-type(1) {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .service-facts-and-scores__footer {
    display: flex;
    flex-direction: row;
  }
  .service-facts-and-scores__footer .btn:nth-of-type(1) {
    margin-right: 40px;
    margin-bottom: 0;
  }
}


/* button hover effect*/
.service-facts-and-scores .btn-knowmore {
  background: transparent;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #1E266D;
  border: 2px solid #1E266D !important;  
  border-radius: 6px;
  padding: 13px 50px;  
}
.service-facts-and-scores .btn-knowmore:hover {
  background: #1E266D;
  color: var(--white);
}
.btn-check-out-service {
  background-image: linear-gradient(to right, #00DAA6, #00B3DA, #00B3DA, #00DAA6);
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF; 
  padding: 15px 30px;  
  border: none;
  background-size: 300% 100%;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.btn-check-out-service:hover {
  color: #FFFFFF; 
  background-position: 100% 0;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

@media (min-width: 992px) {
  .service-facts-and-scores__footer .btn-knowmore {
    font-size: 18px;
    padding: 21px 55px;
  }
  .btn-check-out-service {
    font-size: 18px;
    line-height: 18px;
    padding: 21px 75px;  
  }
}




