.header {
    border-bottom: none;
    box-shadow: 0px 0px 16px #c9dbed;
  }
  
  
  
  .termsSection {
    background: url('../images/imgterms_BG.jpg') no-repeat center top;
    background-size: cover;    
    margin-top: 72px;    
    padding-top: 36px;
    position: relative;
  }
  
  .termsSection a {
    color: #303030;
  }
  
  .termsSection .container {
    background-color:  #798a91;
  }

  .termsSection ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  }

  .termsSection ul li {
    margin-bottom: 20px;
    color: #ffffff;
  
  }

  .termsSection ul li.title {
    font-size: 24px;
    font-weight: 600;
    color: #3fcdff;
    margin-bottom: 20px;
    
  }

.termsSection table tbody tr:nth-child(even) td {
  color: #ffffff;
}

.termsSection table tbody tr:nth-child(odd) td {
  color: #444;
}


  .termsSection ol {
    padding: 0;
    margin: 0;
    counter-reset: item;
  }

  .termsSection ol li {
    margin-bottom: 20px;
    color: #ffffff;
   
    display: block;
  }

  .termsSection ol li:before { 
    content: counters(item, ".") " "; 
    counter-increment: item;
  }

  .termsSection ol li.title {
    font-size: 24px;
    font-weight: 600;
    color: #2c1407;
    margin: 40px 0 20px;
    text-shadow: 1px 1px 5px #ffffff;
  }

  
  .termsSection .instructionItem .instructionItemContainer {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  
  
  
  @keyframes showtermsItems {
      from {
        transform: translateY(-20%);
        opacity: 0;
      }
      to {
        transform: translateY(0%);
        opacity: 1;
    }
  }
  
  @media only screen
  and (max-width : 480px) {
    /* phone */
  
  }
  
  @media only screen
  and (min-width: 481px)
  and (max-width: 1023px) {
    /* tablet portrait */
  
  }
  
  @media only screen
  and (min-width: 1023px) {
    /* tablet portrait */
    .termsSection .instructionItem .textContainer .text
    {
      font-size: 17px;
    }
  
    
  }
  