.container {
    max-width: 1440px;
    margin: 50px auto;
   
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 12px;
    margin-top: 50px;
    margin-left: 10px;
    margin-right: 10px; */

    margin-top: 150px;
    
  
}
.faq-row {
    grid-column: 1/3;
    margin: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 12px;
    padding: 30px;

}

.title {
    text-align: center;
    font-size: 3rem;
    font-family: "Oswald", sans-serif;
    grid-column: 1/3;
   
}

.faq-row h2 {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
   

}
.faq-row h4 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.3rem;
    margin-top: 30px;

}

.faq-row p {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.3rem;
    margin-top: 30px;
    line-height: 2;
    
   
}


.faq-list {
    margin: 0px;
    padding: 0px;
    

}

.faq-list-item {
    list-style: none;
    margin-left: 30px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.3rem;
    
    line-height: 2;

}

.bullet {
    color: black;
    font-size: 1rem;

}




.faq-header {
    
    display: flex;
    justify-content: space-between;
  
    width: 100%;
}

.arrow{
    min-width: 35px;
    max-width: 35px;
    cursor: pointer;
}
.up {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .inactive {
    display: none;
  }

  .faq-header ~ p, .faq-header ~ div, .faq-header ~ ul{
    animation: fade_in 1s

  }

  .overview-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  
  }

  .overview-wrapper svg {
    color: red;
    width: 40px;
    margin-top: 30px;
  }
  .test-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 30px;
  }

  @keyframes fade_in {
    0% {
         opacity: 0;
        
    }

    100% {
         opacity: 1;
         
    }
}
  

@media (max-width: 768px) {
    .faq-row h2 {
        font-size: 1.4rem;
    }
    .faq-row p {
        font-size: 1.2rem;
    }
    
}

/* .schedule-today, .schedule-today-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.schedule-today {
    border: red solid 1px
}
.schedule-today-content {
    border: green solid 1px
}
.schedule-today-content * {
    margin: 20px 100px ;
    text-align: center;
 
    
}
.schedule-today-content h1 {
    font-size: 3.6rem;
    line-height: 1.2;

    
}

.schedule-today-content p {
    font-size: 1.4rem;
    line-height: 1.6;

} */



/* END SCHEDULE TODAY */



