

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/


@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf'); 
  }
  

  /* ------------------------------------ */
  a {
      margin: 0px;
      transition: all 0.4s;
      -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  
  a:focus {
      outline: none !important;
  }
  
  a:hover {
      text-decoration: none;
  }
  
  /* ------------------------------------ */
  h1,h2,h3,h4,h5,h6 {margin: 0px;}
  
  p {margin: 0px;}
  
  ul, li {
      margin: 0px;
      list-style-type: none;
  }
  
  
  /* ------------------------------------ */
  input {
    display: block;
      outline: none;
      border: none !important;
  }
  
  textarea {
    display: block;
    outline: none;
  }
  
  textarea:focus, input:focus {
    border-color: transparent !important;
  }
  
  /* ------------------------------------ */
  button {
      outline: none !important;
      border: none;
      background: transparent;
  }
  
  button:hover {
      cursor: pointer;
  }
  
  iframe {
      border: none !important;
  }
  
  
  /*//////////////////////////////////////////////////////////////////
  [ Table ]*/
  
  @media only screen and (max-width: 600px)
  {
    .container-table100{
      margin-left: -0.10px;
    }
  } 
  
  .container-table100 {
    width: 101%;
    min-height: 10vh;
    background:   #f0c186;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 20px;
    border-radius: 10px;
  }
  
  .wrap-table100 {
    width: 1250px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .table {
    width: 100%;
    display: table;
    margin: 0;
  }
  
  @media screen and (max-width: 768px) {
    .table {
      display: block;
      padding-left: -100px;
    }
  }
  
  .row1 {
    display: table-row;
    background: #fff;
  }
  
  .row1.header {
    color: #666666;
    background: #711e0c;
    font-weight: bold;
   
  }
  
  @media screen and (max-width: 768px) {
    .row1 {
      display: block;
    }
  
    .row1.header {
      padding: 0;
      height: 0px;
    }
  
    .row1.header .cell {
      display: none;
    }
  
    .row1 .cell:before {
      font-family: Poppins-Bold;
      font-size: 12px;
      color: #666666;
      line-height: 1.2;
      text-transform: uppercase;
      font-weight: unset !important;
  
      margin-bottom: 13px;
      content: attr(data-title);
      min-width: 98px;
      display: block;
    }
  }
  
  .cell {
    display: table-cell;
  }
  
  @media screen and (max-width: 768px) {
    .cell {
      display: block;
    }
  }
  
  .row1 .cell {
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #666666;
    line-height: 1.2;
    font-weight: unset !important;
  
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
  }

 
  .row1.header .cell {
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    font-weight: unset !important;
  
    padding-top: 19px;
    padding-bottom: 19px;
  }
  
  .row1 .cell:nth-child(1) {
    width: 360px;
    padding-left: 40px;
  }
  
  .row1 .cell:nth-child(2) {
    width: 160px;
  }
  
 .cell:nth-child(3) {
    width: 250px;
  }
  
 .cell:nth-child(4) {
    width: 190px;
  }
  
  
  .table, .row1 {
    width: 100% !important;
  }
  
  
  
  @media (max-width: 768px) {
    .row1 {
      border-bottom: 1px solid #f2f2f2;
      padding-bottom: 18px;
      padding-top: 30px;
      padding-right: 15px;
      margin: 0;
    }
    
    .row1 .cell {
      border: none;
      padding-left: 30px;
      padding-top: 16px;
      padding-bottom: 16px;
    }
    .row1 .cell:nth-child(1) {
      padding-left: 30px;
    }
    
    .row1 .cell {
      font-family: Poppins-Regular;
      font-size: 18px;
      color: #555555;
      line-height: 1.2;
      font-weight: unset !important;
    }
  
    .table, .row1, .cell {
      width: 100% !important;
    }
  }