@charset "utf-8";
/* CSS Document */
*{ box-sizing: border-box}
.container{ width: 100%; margin: auto}
.img-100{ width: 100%; height: auto}
.img-circle{ border-radius: 50%}
.row{ display: flex; flex-wrap: wrap}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
[class*="col-"] {
  padding: 15px;
  
}
.py-50{ padding: 50px}
.p-0{ padding: 0}
.my-30{ margin-top: 30px; margin-bottom: 30px}
.mx-auto { margin-left: auto; margin-right: auto}
.text-right{ text-align: right}
.text-center { text-align: center}
.d-flex{ display: flex}
.d-block{ display:block}
.d-none{ display: none}
.justify-center{ justify-content: center}
.justify-between{ justify-content: space-between}
.justify-around{ justify-content: space-around}
.btn-fill-primary
{
    background-color:#F87503;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
     border: 2px solid #F87503;
}
.btn-fill-primary:hover{
     background-color:#Ff0;
    color: #333
}
.btn-outline-primary
{
    border: 2px solid #F87503;
    background: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase
}
.btn-outline-primary:hover{
     background-color:#F87503;
    }
.nav-link:hover{
	color: white
}
 .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
  }

  .menu ul {
    flex-direction: column;
    width: 100%;
  }

  .menu ul li a {
    padding: 12px;
    border-top: 1px solid #eee;
    font-size: 16px;
  }

  .menu ul li {
    width: 100%;
  }

  .menu .dropdown {
    position: static;
    display: none;
    width: 100%;
    background: #f7f7f7;
  }

  .menu ul li:hover .dropdown {
    display: block;
  }

  .menu-toggle {
    display: block;
    padding: 10px;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
