/* Section */
.sg-glass{
  padding: 100px 0;
  background: #ffffff;
}

/* Header */
.sg-glass .section-head{
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.sg-glass .section-label{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0063A6;
}

.sg-glass h2{
  margin: 0 0 16px;
  font-size: 40px;
  color: #123257;
}

.sg-glass p{
  margin: 0;
  font-size: 18px;
  color: #5b6673;
}

/* Table wrapper */
.sg-glass-table-wrap{
  margin-top: 40px;
  overflow-x: auto;
}

/* Table */
.sg-glass-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

/* Head */
.sg-glass-table thead{
  background: linear-gradient(135deg, #0063A6 0%, #0b5f9a 100%);
}

.sg-glass-table th{
  color: #fff;
  text-align: left;
  padding: 18px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Body */
.sg-glass-table td{
  padding: 16px 20px;
  font-size: 15px;
  color: #334150;
  border-bottom: 1px solid #eef1f4;
}

/* Zebra */
.sg-glass-table tbody tr:nth-child(even){
  background: #f8fafc;
}

/* Hover */
.sg-glass-table tbody tr:hover{
  background: rgba(0,99,166,.04);
}

/* Responsive */
@media (max-width: 767px){

  .sg-glass{
    padding: 70px 0;
  }

  .sg-glass h2{
    font-size: 30px;
  }

  .sg-glass p{
    font-size: 16px;
  }

  .sg-glass-table th,
  .sg-glass-table td{
    padding: 12px 14px;
    font-size: 14px;
  }
}