nav{
      background: #fff;
      height: 80px;
      width: 100%;
  }
  
  label.logo {
      padding-left: 5px;
  }
  
  img.logo1{
    height: 60px;
    padding-top: 20px;
    width: 144px; 
  }
  nav ul{
      float: right;
      margin-right: 20px;
  }
  
  nav ul li{
      display: inline-block;
      line-height: 80px;
      margin: 0 5px;
      color: #565656;
      font-weight: bold;
      font-size: 20px;
  }
  
 
  nav ul li a {
      color: #565656;
      font-size: 17px;
      padding: 7px 13px;
      border-radius: 3px;
  }
  
  nav a.active, nav a:hover{
      color: #0B5694;
      font-weight: bold;
      transition: .5s;
      font-size: 20px;
      
      border-radius: 3px;
  }
  
  .checkbtn{
      font-size: 30px;
      color: black;
      float: right;
      line-height: 80px;
      margin-right: 40px;
      cursor: pointer;
      display: none;
    }
  
    #check{
      display: none;
    }

.primer-heading h2 {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 2em;
    padding: 2% 20%;
    font-weight: 700;
    color: #2B313F;
    padding-bottom: 5%;
}

.primer-questions {
    padding: 0 4vw;
    margin-bottom: 3%;
}

.question-heading {
    width: 100%;
    height: auto;
    font-family: 'Jacques Francois';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 28px;
    color: #000;
}

.question-ans {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    font-size: 18px;
    text-align: justify;
    line-height: 28px;
    color: #000000;
}

.ans-sub {
    font-weight: 700;
}

ul.ans-list {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    font-size: 18px;
    text-align: justify;
    line-height: 28px;
    color: #000000;
    padding-left: 20px;
}

ul.ans-list1 {
    width: 100%;
    height: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100;
    font-size: 18px;
    text-align: justify;
    line-height: 28px;
    color: #000000;
    padding-left: 40px;
}

.primer-contact {
  padding: 2% 4%;
  width: 100%;
  height: auto;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.primer-contact-mail {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.primer-contact-mail a {
  text-decoration: none;
}

.primer-contact-mail a:hover {
  color: black;
  font-size: 24px;
  padding: 0;
}

@media (max-width: 952px){
    label.logo{
      height: 60px;
      width: 144px; 
      padding-left: 5px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  
  @media (max-width: 858px){
   

    .checkbtn{
      display: block;
    }
    
    nav ul{
      position: fixed;
      width: 100%;
      padding-left: 0;
      background: #FFFf;
      top: 80px;
      z-index: 1;
      left: -100%;
      text-align: center;
      transition: all .5s;
      
    }
    
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 10px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover, a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }    
  }
  
@media screen and (max-width: 480px) {
    .primer-heading h2 {
        font-size: 1.5em;
        padding: 2% 3%;
        font-weight: 700;
    }

    .question-heading {
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
    }
    
    .question-ans {
        font-weight: 100;
        font-size: 18px;
        text-align: justify;
        line-height: 24px;
    }
    
    .ans-sub {
        font-weight: 600;
    }
    
    ul.ans-list {
        font-size: 18px;
        line-height: 24px;
        padding-left: 20px;
    }
    
    ul.ans-list1 {
        font-weight: 100;
        font-size: 18px;
        text-align: justify;
        line-height: 24px;
        padding-left: 40px;
    }
}

