
  @import url('https://fonts.googleapis.com/css2?family=Bangers&family=Noto+Sans:wght@500&family=Roboto:wght@100;400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Roboto", Arial, sans-serif;
    font-family: 100;
}
.header{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.back{
    width: 24px;
}
.back a{
  color: inherit;
  text-decoration: none;
}
.company{
    flex: 2 1 100%
}
.company_name{
    width: 100%;
    display: flex;
    justify-content: center;
}
.post{
    font-size: 14px;
}
.post a{
    color: #9c9c9c;
    text-decoration: none;
    
}
.post a.blue{
    color: 	#427af4;
}
.back,.company,.post{
    color: #9c9c9c;
}


/** rating */

.rating-box {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background: #fff;
    padding: 25px 50px 35px;
    margin-top: 40px;
    border-radius: 25px;
  }
  .rating-box .stars {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .stars i {
    color: #e6e6e6;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .stars i.active {
    color: #ff9c1a;
  }

  .review{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background: #fff;
    padding: 5px 50px 35px;
    border-radius: 25px;
  }