/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) { 
    
  }
  /* Tablet Layout: 768px. */
  @media only screen and (min-width: 768px) and (max-width: 991px) { 
    .privacy-section-header {
        margin-top: 16%;
    }
  
  }
  /* Mobile Layout: 320px. */
  @media only screen and (max-width: 767px) { 
    .privacy-tab .tab-content {
        width: 100%;
    }

    .tab-list {
        border-left: none;
    }

    .tab-list li {
        float: left;
    }

    .tab-list li a {
        border-bottom: 2px solid #f3f3f3;
    }

    .tab-list li.active a:after {
        width: 100%;
        height: 2px;
        content: "";
        left: 0px;
        bottom: -1px;
        transform: none;
    }

    .td-img {
        padding-top: 8%;
    }

    .privacy-section-header {
        margin-top: 120px;
    }

      
  }
  /* Wide Mobile Layout: 480px. */
  @media only screen and (min-width: 480px) and (max-width: 767px) { 
  
  }