/*
Theme Name: online-learning-lms-child
Template: online-learning-lms
*/
.header-logo {
  width: 20%;
}
.header-menu {
  width: 80%;
}
.header-center {
  background: linear-gradient(90deg, var(--global-color) 22%, #fff 7%);
}
body {
  color: #000;
}
.site-logo {
  text-align: center;
}
.site-logo .custom-logo-link img {
  max-width: 80px;
}
.site-navigation .primary-menu {
  justify-content: flex-end;
}
.numb-list {
  counter-reset: num;
  list-style: none;
  margin: 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #00214b 0%, #19123ce5 100%);
  border-radius: 14px;
  color: #f0f0f0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.numb-list li {
  counter-increment: num;
  margin-bottom: 16px;
  padding-left: 48px;
  position: relative;
  line-height: 1.6;
}
.numb-list li::before {
  content: counter(num);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #754fff;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.numb-list li:hover {
  color: #04d97e;
  transition: color 0.3s ease;
}
.check-list {
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  background: linear-gradient(135deg, #00214b 0%, #19123ce5 100%);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #eaeaea;
}
.check-list li:last-child {
  margin-bottom: 0;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #754fff;
}
.check-list strong {
  color: #ffffff;
  font-weight: 700;
}
.check-list a {
  color: #04d97e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.check-list a:hover {
  color: #0375e8;
  text-decoration: underline;
}
.block-cstm {
  background: linear-gradient(135deg, #00214b 0%, #19123ce5 100%);
  border-radius: 14px;
  padding: 20px;
  color: #eaeaea;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block-cstm:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.block-cstm h3 {
  margin: 0 0 12px;
  color: #754fff;
  border-bottom: 2px solid #754fff;
  padding-bottom: 6px;
  display: inline-block;
}
.block-cstm p {
  margin: 0;
  color: #cfcfcf;
}
.my-table {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #00214b 0%, #19123ce5 100%);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.my-table:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.my-num {
  font-size: 22px;
  font-weight: 700;
  color: #754fff;
  margin: 0 15px 0 0;
  min-width: 28px;
  text-align: center;
}
.my-img {
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-img img {
  max-width: 90px;
  height: auto;
  display: block;
}
.my-info {
  flex: 1;
  color: #f0f0f0;
  padding-right: 15px;
  text-align: center;
}
.my-info .title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.my-info .bonus {
  font-size: 14px;
  margin: 0;
  color: #c7c7c7;
  line-height: 1.4;
  font-weight: 600;
}
.my-button {
  background: #754fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.my-button:hover {
  background: #5e3bcc;
  transform: translateY(-2px);
}
.my-button .my-link {
  color: #fff;
  text-decoration: none !important;
  font-weight: 700;
  display: block;
  padding: 12px 20px;
}
@media (max-width: 767px) {
  .navbar-controls {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 700px) {
  .my-table {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 15px;
  }
  .my-num {
    margin-bottom: 10px;
  }
  .my-img {
    margin: 10px auto;
  }
  .my-info {
    padding-right: 0;
    margin-bottom: 12px;
    width: 100%;
  }
  .my-button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-center {
    display: flex;
  }
}
