@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&amp;family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&amp;display=swap");
body{
  background-color: #f3f3f4;
}
.logo_header{
  background-color: #ffffff;
  box-shadow: 0 -12px 12px 12px rgba(0, 0, 0, 0.5);  
}
.logo_header .logo_bx{
  padding: 15px 0;
}
.top_title{
  margin: 0;
  text-align: center;
  padding: 30px 0px 20px 0px;
  font-size: 22px;
  font-weight: 600;
  color: #444444;
}
.info_bx_view{
  margin: 0 auto 30px;
  background-color: #fff;
  padding: 15px 15px 15px 20px;
  border-radius: 5px;
  box-shadow: 0 0px 12px 0px rgba(0, 0, 0, 0.2);  
}

.info_bx_view ol { 
  counter-reset: item; 
  padding-left: 10px; 
}
.info_bx_view ol li { 
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
 }
.info_bx_view ol li:before { 
  content: counters(item, ".") " "; 
  counter-increment: item ;
}
.info_bx_view ol li ol li { 
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
}

.footer_bx{
  background-color: #1f1f33;
}
.footer_bx .container_bx{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.footer_bx .container_bx .bx_links{
  color: #ffffff;
  display: flex;
  align-items: center;
}
.footer_bx .container_bx .bx_links a{
  color: #ffffff;
  text-decoration: none;
  outline: none;
  padding: 0 20px;
}
.footer_bx .container_bx .bx_links a + a{
  border-left: 1px solid #ffffff;
}
.footer_bx .container_bx p{
  margin: 0;
  color: #ffffff;
}
.footer_bx .container_bx p a{
  text-decoration: none;
  color: #ffffff;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer_bx .container_bx{
    flex-direction: column;
  }
  .footer_bx .container_bx p{
    font-size: 13px;
  }
  .footer_bx .container_bx .bx_links a{
    padding: 0 8px;
    font-size: 12px;
  }
  .footer_bx .container_bx .bx_links{
    margin-bottom: 12px;
  }
}