@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');

:root {

    /* font typography  */

    --sm-font: 16px;
    --md-font: 18px;
    --lg-font: 20px;
    --xl-font: 22px;
    --xxl-font: 25px;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none !important;
}

.un-list{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0;
    margin-top: 10px;
}

.un-list li {
  font-size: 18px;
  font-weight: 500;
  color: #14132B;
  position: relative;
  padding: 6px 7px 6px 48px;
}

.un-list li i::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  color: #000;
  box-shadow: 0px 0px 9px rgba(44, 71, 164, 0.1);
  content: "\f138";
  font-weight: 400;
  font-size: 14px;
  font-family: "Font Awesome 5 Pro";
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.blink{
  animation: blinker 0.5s linear infinite;
}
@keyframes blinker {
  from{
    color: red;
  }
  to{
    color: #204703;
  }
}

 .blink-1 {
  font-weight: 500;
   animation: bllinker 0.5s linear infinite;
}

@keyframes bllinker {
  from {
    color: #f00;
  }
  to{
    color: #000;
  }
}