html {
    margin: 0px;
    padding: 0px;
}

body {
  margin: 0;
  font-family: 'Merriweather';
  background-color: #f3f6f6;
}

.header{
    background-color: #ECBDC4;
    height: 100px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    flex-wrap: wrap;
    margin: 0;
  }
  
  .header-title {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    color: white;
   }
   
   .header-title img {
     height: 83px;
     padding: 10px;
   }
   
   .header-title h1{
     padding: 10px;
   }

  .nav a{
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
  }
  
  .nav a:hover{
    color: #ffe4e8;
    transform: scale(0.9,0.9);
    transition: all 0.3s;
  }
  
  .nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    
  }
  
  .nav li {
    margin-left: 25px;
    font-size: 25px;
  }
  
  /* end of header */ 
  
  .faq {
    
    min-height: 100vh;
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 140%;
    opacity: 0.3;
    opacity: 1;
    display: grid;
    place-items: center;

}

.card {
    background: #fff;
    color: #333;
    margin: 15rem auto;
    width: 90%;
    max-width: 1200px;
    min-height: 30rem;
    border-radius: 2rem;
    margin-top: 50px;
}


.card:hover .img {
    filter: drop-shadow(0rem 2.5rem rgba(0,0,0,0.1));
}


.title {
    text-align: center;
    font-size: 5rem;
    padding: 1rem;
    margin-top: 50px;
}

.acc-container {
    padding: 4rem 2rem;
}

.acc-btn {
    width: 100%;
    padding: 1.6rem 2rem;
    font-size: 1.6rem;
    cursor: pointer;
    background: inherit;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.5s linear;
    font-family: 'Trebuchet MS';
}

.acc-btn:after {
    content: "\27A4";
    color: #ECBDC4;
    float: right;
    transition: all 0.3s linear;
}

.acc-btn.is-open:after {
    transform: rotate(90deg);
}

.acc-btn:hover, .acc-btn.is-open {
    color: #000;
    font-weight: bold;
}

.acc-content {
    max-height: 0;
    color: rgba(0,0,0,0.75);
    font-size: 1.5rem;
    margin: 0 2rem;
    padding-left: 1rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    border-bottom: 1px solid #ccc;
}

/* footer */

.footer{
    background-color: #ffe4e8;
    padding: 20px;
    overflow: auto;
   
  }
  
  .footer-items {
    display: flex;
    justify-content: left;
    color: #6a6e75;
  }
  
  .footer-items a {
    padding: 40px;
    color: #6a6e75;
    text-decoration: none;
  }
  
  
  .footer-items a:hover{
    color: #FFF;
    transform: scale(0.9,0.9);
    transition: all 0.3s;
  }
