/* -- :: Header */
header {
  position: relative;
  padding: 100px 0 0;
  background: url(./../../../images/backgrounds/07.png) center no-repeat, var(--thBlue);
  background-size: cover;
  margin-bottom: 80px;
}
header h1 {
  color: #fff;
  font-size: 58px;
  font-weight: bolder;
  line-height: 85px !important;
}
header img.header-bg {
  position: relative;
  bottom: -80px;
}
/* ------------------------------- */

/* -- :: Section I */
.se-i .c-table table {
  border: none;
}
/* H Table */
.se-i .h-table {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  background: #fff;
  z-index: 9;
}
/* Table Head */
.se-i .c-table thead tr th {
  width: 35%;
  text-align: left;
  border: none;
}
.se-i .c-table .h-table thead tr td {
  border-top: 1px solid var(--thWhite3);
}
.se-i .c-table thead tr td:last-child {
  border-right: 1px solid var(--thWhite3);
}
.se-i .c-table thead tr td {
  width: 16.6%;
  text-transform: uppercase;
  font-size: 14px;
  color: #999;
  border: none;
  border-left: 1px solid var(--thWhite3);
}
.se-i .c-table .h-table thead tr td img {
  width: 20px;
}
.se-i .c-table thead tr td span {
  display: inline-block;
  vertical-align: text-top;
}
.se-i .c-table th,
.se-i .c-table td {
  padding: 25px 15px;
  vertical-align: middle;
  text-align: center;
  color: #2c2f3e;
}
/* Table Body */
.se-i .c-table tbody tr:hover {
  background: var(--thWhite2);
}
.se-i .c-table tbody tr th {
  text-align: left;
  border-left: none;
  font-size: 14px;
  color: #2c2f3e;
  border-color: var(--thWhite3);
}
.se-i .c-table tbody tr td {
  padding: 10px 15px;
  border-right: none;
  border-color: var(--thWhite3);
  cursor: default;
}
.se-i .c-table tbody tr td .name {
  display: inline;
  color: #2c2f3e;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
}
.se-i .c-table tbody tr td h6 {
  font-size: 12px;
}
/* price tab */
.se-i .c-table tbody tr td.price {
  position: relative;
}
.se-i .c-table tbody tr td.price > span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
}
.se-i .c-table tbody tr td.price .old {
  color: #b7b7b7;
  text-decoration: line-through;
}
.se-i .c-table tbody tr td.price .new {
  color: var(--thBlue);
  font-size: 18px;
}
.se-i .c-table tbody tr.hot td.price .new {
  color: var(--thRed);
}
/* progress bar */
.se-i .c-table tbody tr td .progress {
  display: -webkit-inline-box;
  display: inline-flex;
  width: 60px;
  vertical-align: middle;
  margin-left: 10px;
}
.se-i .c-table tbody tr.hot .progress-bar {
  background: var(--thRed);
}
/* ribbon */
.se-i .c-table .ribbon,
.se-i .c-table-2 .i-c .item .ribbon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.se-i .c-table .ribbon span,
.se-i .c-table-2 .i-c .item .ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: var(--thBlue);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--thBlue)), to(var(--thBlue2)));
  background: linear-gradient(var(--thBlue) 0%, var(--thBlue2) 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; right: -21px;
}
.se-i .c-table tbody tr.hot .ribbon span,
.se-i .c-table-2 .i-c .item.hot .ribbon span {
  background: var(--thRed);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--thRed)), to(var(--thRed2)));
  background: linear-gradient(var(--thRed) 0%, var(--thRed2) 100%);
}
.se-i .c-table tbody tr td:last-child {
  border-right: 1px solid var(--thWhite3);
}
/* add to cart button */
.se-i .c-table tbody tr td.price .cart-btn {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
  -webkit-transition: background .2s ease, opacity .2s ease;
  transition: background .2s ease, opacity .2s ease;
}
.se-i .c-table tbody tr:hover td.price .cart-btn {
  visibility: visible;
  opacity: 1;
}
.se-i .c-table tbody tr td.price .cart-btn a  {
  padding: 10px;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 0 4px 4px 0;
  background: var(--thBlue);
}
.se-i .c-table tbody tr td.price .cart-btn a:hover {
  background: var(--thBlue2);
}
.se-i .c-table tbody tr td.price .cart-btn a i {
  color: #fff;
  font-size: 20px;
}
.se-i .c-table tbody tr.hot td.price .cart-btn a,
.se-i .c-table-2 .item.hot td a {
  background: var(--thRed);
}
.se-i .c-table tbody tr.hot td.price .cart-btn a:hover,
.se-i .c-table-2 .item.hot td a:hover {
  background: var(--thRed2);
}
/* ------------------------------- */

/* -- :: Section II */
.se-ii .content > ul li {
  width: 80px;
  height: 80px;
  padding: 15px;
  border: 1px solid var(--thWhite2);
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.se-ii .content > ul li.active {
  border-color: var(--thWhite3);
  box-shadow: 0 0 15px rgba(47, 85, 212, .07);
}
.se-ii .content > ul li img {
  -webkit-filter: saturate(0);
          filter: saturate(0);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.se-ii .content > ul li.active img {
  -webkit-filter: saturate(1);
          filter: saturate(1);
}
.se-ii .box:not(:first-child) {
  display: none;
}
.se-ii .box {
  max-width: 900px;
  background: #fff;
  padding: 60px 40px;
  border: 1px solid var(--thWhite3);
  border-radius: 20px;
}
.se-ii .box h4 {
  font-size: 18px;
  font-weight: bolder;
  color: var(--thBlack);
}
.se-ii .box p {
  font-size: 14px;
  font-weight: normal;
  color: var(--thGray);
}
.se-ii .box ul {
  margin-bottom: 7px;
}
.se-ii .box ul li {
  font-size: 14px;
  font-weight: normal;
  color: var(--thGray);
}
.se-ii .box ul li:not(:last-child) {
  margin-bottom: 7px;
}
/* ------------------------------- */

/* -- :: Section IV */
.se-iv {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--thBlue)), to(var(--thBlue2)));
  background: linear-gradient(to bottom, var(--thBlue), var(--thBlue2));
}
.se-iv h2 {
  color: #fff;
  font-weight: bold;
}
.se-iv p {
  color: var(--thWhite3);
  font-size: 16px;
}
/* ------------------------------- */

/* -- :: Media Query */
@media (max-width: 1199.98px) {
  /* -- :: Header */
  header h1 {
    font-size: 48px;
    line-height: 68px !important;
  }
}
@media (max-width: 991.98px) {
  /* -- :: Header */
  header {
    padding: 70px 0 0;
    margin-bottom: 60px;
  }
  header h1 {
    font-size: 40px;
    line-height: 63px !important;
  }
  header img.header-bg {
    position: relative;
    bottom: -60px;
  }
  /* -- :: Section I */
  .se-i .c-table-2 .i-c .item {
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px 0 rgba(3, 27, 78, 0.06);
  }
  .se-i .c-table-2 .i-c .item .ribbon span {
    top: 12px;
    right: -30px;
  }
  .se-i .c-table-2 tr {
    width: 100%;
  }
  .se-i .c-table-2 td {
    padding: 8px;
    width: 50%;
    text-align: center;
    border: 1px solid #e4eaec;
  }
  .se-i .c-table-2 td h6 {
    margin-bottom: 5px;
    color: var(--thBlack);
    font-size: 14px;
    text-transform: capitalize;
  }
  .se-i .c-table-2 td p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--thGray);
  }
  .se-i .c-table-2 td span {
    font-size: 12px;
    display: inline-block;
    color: var(--thGray);
  }
  .se-i .c-table-2 td a {
    display: inline-block;
    background: var(--thBlue);
    border: none;
    color: #fff;
    padding: 7px 10px;
    width: 100%;
    border-radius: 2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
  }
  .se-i .c-table-2 td a:hover {
    background: var(--thBlue2);
  }
}
@media (max-width: 767.98px) {
  /* -- :: Header */
  header {
    padding: 70px 0;
    margin-bottom: 0;
  }
  header h1 {
    font-size: 32px;
    line-height: 51px !important;
  }
  /* -- :: Section II */
  .se-ii .box {
    padding: 40px 30px;
  }
  /* -- :: Section IV */
  .se-iv h2 {
    font-size: 22px;
    line-height: 35px !important;
  }
  .se-iv p {
    font-size: 14px;
  }
}
/* ------------------------------- */