*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", serif;
}



/* content start */
.parent{
  background-color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px  0px;
}
.child{
  background-color: #007ab3;
  border-radius: 25px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-child{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
}
.sub-child p{
  margin-bottom: 0;
}
#site-map{
  font-size: 24px;
  font-weight: 600;
  color: white;
}
.sub-child ul li{
  color: white;
  list-style: none;
}
.sub-child ul li a{
  text-decoration: none;
  color: white;
}
.list-of {
  font-size: 15px;
}
.home-btn{
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
}
.headings {
  margin-top: 10px;
}



@media screen and (min-width: 320px) and (max-width: 768px){
  .parent{
    padding: 20px 10px;
  }
  .child{
    width: 100%;
  }
  .sub-child{
    padding: 20px 10px;
  }
  .sub-child ul{
    padding-left: 20px;
  }
  .list-of{
    font-size: 14px;
  }
}
/* content end */