@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

body {
    font-family: 'Itim', cursive;
}


/*FAQ Start*/


/*FAQ Start*/

.team-h1{
  text-align: center;
}

.collapsible{
    background-color: #849596;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.fa-lightbulb {
  padding-right: 1rem;
}

.activefaq, .collapsible:hover{
    background-color: #555;
}

.collapsible::after{
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.activefaq::after{
    content: '\2212';
}

.content{
    padding: 0 18px;
    font-size: 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}
/*faq End*/


  /* Footer section styling */
  .footer {
    padding: 10px 0;
    background-color: #f3cb2b;
    color: white;
  }
  
  .footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 0;
  }