/*       MAIN            */

#boss_cont{
  width: 100%;
}
#name_of_faq{
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-family: BaufraMedium;
  margin: 5% 0 0 0;
}
#main_cont{
  width: 100%;
  margin: 5% 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.btn_cont{
  width: 35%;
  margin: 40px 50px;
  padding: 50px;
  border-radius: 25px;
  flex-direction: column;
  text-align: center;
  background: rgb(0,165,255);
  background: linear-gradient(45deg, rgba(0,165,255,1) 0%, rgba(0,132,204,1) 100%);
  webkit-box-shadow: 0px 10px 50px 1px rgba(0,143,221,0.8);
  box-shadow: 0px 10px 50px 1px rgba(0,143,221,0.8);
}

.btn_cont p{
  margin: 0 0 80px 0;
  font-size: 30px;
  color: white;
  font-family: BaufraMedium;
}
.btn_cont a{
  width: 50%;
  padding: 15px 0;
  border-radius: 25px;
  border: 0;
  font-size: 22px;
  font-family: BaufraMedium;
  outline: none;
  color: rgba(0,120,255,1);
  webkit-box-shadow: 0px 0px 20px 2px rgba(255,255,255,0.6);
  box-shadow: 0px 0px 20px 2px rgba(255,255,255,0.6);
  transition: 0.4s;
  cursor: pointer;
  background-color: white;
  text-decoration: none;
}

.btn_cont a:hover{
  width: 60%;
}

/*         REPEAT CODE        */

.display_flex{
  display: flex;
  justify-content: center;
  align-items: center;
}
.baufra_demi_bold_fm{
  font-family: BaufraDemiBold;
}
.color_999999{
  color: #999999;
}
