@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

header {
  padding: 20px 0;
  /* background: #000; */
}

.slider_container {
  width: 50%;
  max-width: 100%;
  /* width: 100%; */
  height: 100px;
}

.slider_container .img_block {
  height: 100px;
  /* width: 100px; */
  width: 100%;
}

.slider_container .img_block img {
  height: 100%;
  width: 100%;
  /* width: 100%; */
  /* object-fit: cover; */
}

.page_wrapper {
  position: relative;
  /* background: #000; */
  /* height: calc(100vh - 140px); */
}

.page_wrapper .bg_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

body {
  background: url(../img/bg_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000, transparent);
  z-index: -1;
}

.aic {
  align-items: center;
}

.jcsb {
  justify-content: space-between;
}

i {
  color: #fff;
}

/* .page_wrapper .bg_layer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000000, transparent);
} */

.page_wrapper .bg_layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_wrapper .txt_layer {
  position: relative;
  top: 0;
  padding: 20px 0 80px;
}

.product_info {
  /* max-width: 900px; */
  width: 100%;
  margin: 0 auto;
  /* background: #ffffff96; */
  background: #021136;
  /* backdrop-filter: blur(10px); */
  padding: 16px;
  border: 2px solid #3586c5;
  box-shadow: 5px 5px 2px #0a0752;
}

.product_info table thead tr td {
  background: #3586c5;
  border: 2px solid #3586c5;
  border-bottom: 0;
}

.product_info table {
  margin: 0;
}

.product_info table thead tr td h3 {
  color: #fff;
  text-align: center;
  margin-top: 8px;
}

.product_info table tbody tr th:first-child {
  border: 2px solid #3586c5;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  width: 30%;
}

.product_info table tbody tr th,
.product_info table tbody tr td {
  color: #fff;
}

.product_info table tbody tr:last-child th:first-child {
  border-bottom: 2px solid #3586c5;
}

.product_info table tbody tr th:nth-child(2) {
  text-align: center;
  width: 50%;
}

.product_info table tbody tr:last-child th:nth-child(2) {
  text-align: center;
  border-bottom: 2px solid #3586c5;
}

.product_info table tbody tr td:last-child {
  border: 2px solid #3586c5;
  border-top: 0;
  border-left: 0;
  border-bottom: 0;
  width: 20%;
  text-align: right;
}

.product_info table tbody tr:last-child td:last-child {
  border-bottom: 2px solid #3586c5;
}

.page_img {
  width: 100%;
  background: #ffffff96;
  backdrop-filter: blur(10px);
  padding: 16px;
}

.page_img img {
  width: 100%;
}

.more_info {
  /* max-width: 900px; */
  width: 100%;
  margin: 16px auto;
  /* background: #ffffff96; */
  /* backdrop-filter: blur(10px); */
  padding: 16px;
  border: 2px solid #3586c5;
}

.more_info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.more_info ul li {
  flex: 0 0 auto;
  width: calc(calc(100% - 16px)/2);
}

.more_info ul li a {
  display: block;
  background: #3586c5;
  border: 2px solid #3586c5;
  color: #fff;
  text-align: center;
  padding: 16px;
  transition: 0.3s all;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.more_info ul li a:hover {
  background: #fff;
  color: #3586c5;
}

.important_notice {
  width: 100%;
  margin: 0 auto;
  /* background: #ffffff96; */
  background: #021136;
  /* backdrop-filter: blur(10px); */
  padding: 16px;
  border: 2px solid #3586c5;
  box-shadow: 5px 5px 2px #0a0752;
}

.notice_head {
  background: #3586c5;
  padding: 16px;
  text-align: center;
}

.notice_body {
  padding: 16px;
  border: 1px solid #3586c5;
}

.notice_body p {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}

.notice_body .btn_areas {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
}

.notice_body .btn_areas a {
  color: #fff;
  background: #3586c5;
  text-decoration: none;
  max-width: 250px;
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 50px;
  text-align: center;
}

.notice_head h1 {
  color: #fff;
  margin: 0;
}

@media only screen and (max-width: 575px) {

  .product_info table tbody tr th:first-child,
  .product_info table tbody tr th:nth-child(2) {
    font-size: 14px;
  }

  .more_info ul li a {
    font-size: 16px;
  }

  .slider_container {
    width: calc(100% - 24px);
    height: auto;
  }

  .slider_container .img_block {
    width: 100%;
  }

  .slider_container .img_block {
    height: auto;
  }
}