/* Default ****************--------------**/
*,
:after,
:before {
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-text-size-adjust: 100%;
}
::marker {
  font-weight: 700;
}
body {
  background: #fff;
}

body,
button,
figure,
h1,
h2,
h3,
h5,
html,
li,
ol,
p,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
}
a,
body,
li,
p {
  line-height: 1.5;
  font-size: 18px;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  line-height: 1.3;
  margin: 0;
}
button,
input {
  overflow: visible;
}
mark {
  background: #ff0;
}
hr {
  margin: 60px 0;
  border: 1px solid;
  border-color: var(--color-primary-600);
}

/* header menu section */
.header-outer,
.menu-icon,
.nav-link {
  position: relative;
}
.header-outer {
  background-color: var(--color-primary);
  padding: 6px 16px 14px;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 950px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.site-title-link {
  color: #fafafa;
  font-weight: 700;
}
span.site-title {
  font-size: 26px;
  font-weight: 700;
  display: block;
}
span.site-tagline {
  font-size: 13px;
  font-weight: 600;
  display: block;
}
@media (max-width: 580px) {
  .site-title-link {
    font-size: 23px;
  }
}
.main-nav {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}
.nav-link {
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
#menu-icon,
#cancel {
  display: none;
  color: white;
  font-size: 30px;
  float: right;
  cursor: pointer;
  line-height: 40px;
}
#check {
  display: none;
}
@media (max-width: 981px) {
  #menu-icon {
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 15px;
    gap: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: color-mix(in srgb, var(--color-primary) 90%, #000);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }
  #check:checked ~ .nav-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  #check:checked ~ label #menu-icon {
    display: none;
  }
  #check:checked ~ label #cancel,
  .nav-link {
    display: block;
  }
  .nav-link {
    padding: 15px;
    transition: background-color 0.3s, padding-left 0.3s;
  }
  .nav-link:hover {
    background-color: color-mix(in srgb, var(--color-primary) 80%, #000);
    padding-left: 20px;
    text-decoration: none;
  }
  .nav-link::after {
    display: none;
  }
}
@media (max-width: 981px) {
  .nav-link:hover {
    background-color: color-mix(in srgb, var(--color-primary) 90%, #fff);
  }
}

/* Site Content ****************--------------**/
.site-content {
  word-break: break-word;
}
.site-content {
  max-width: 950px;
  margin: 0 auto 60px;
  padding: 35px 15px;
}
.site-content a {
  color: #0026ff;
  text-decoration: underline;
  font-family: Arial, Helvetica, sans-serif;
}
.site-content a:hover {
  color: #eb0000;
  text-decoration: underline;
}
.site-content ul {
  padding-left: 22px;
  margin-bottom: 20px;
}
.site-content ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
.site-content li {
  margin-bottom: 4px;
}
.site-content p {
  margin-bottom: 25px;
}

/* Headings ****************--------------**/
.site-content h1,
.site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6 {
  font-weight: 700;
  line-height: 1.15;
  margin-top: 30px;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
}
.site-content h1 {
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: 0;
  padding-top: 0;
}
.site-content h2 {
  font-size: 22px;
  color: #2e7d32;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}
.site-content h3 {
  font-size: 20px;
}
.site-content h4 {
  font-size: 18px;
}
.site-content h5 {
  font-size: 16px;
}
.site-content h6 {
  font-size: 15px;
}

/* Table ****************-----------------**/
.wp-block-table {
  box-sizing: border-box;
  user-select: none;
  display: block;
  overflow-x: auto;
  max-width: 100%;
  width: 100%;
}
table {
  border-spacing: 0;
  margin: 0 0 20px;
  border-collapse: collapse;
  width: 100%;
}
table,
table a,
td {
  font-size: 16.5px;
  line-height: 1.4;
}
table,
table a {
  word-break: normal;
  text-decoration: none;
}
td,
th {
  word-break: initial;
  padding: 14px;
  border: 1.5px solid #ccc;
  user-select: text;
}
thead {
  background: #e6e8f1;
  color: #000;
}
th {
  font-weight: 600;
}
@media (max-width: 768px) {
  td,
  th {
    padding: 12px;
  }
  table,
  table a,
  td {
    font-size: 15.5px;
  }
}
.custom-table {
  border-collapse: separate;
  border-spacing: 5px;
  border: 1px solid #efefef;
  padding: 5px;
  border-radius: 8px;
}
.custom-table thead {
  background-color: transparent;
}
.custom-table thead > tr {
  width: 201%;
  display: grid;
  grid-template-columns: auto auto;
  background-color: #ffc059;
  border-radius: 8px;
  margin-bottom: 10px;
}
.custom-table th {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  border: 0;
  background: #ffc059;
  border-radius: 8px;
  padding: 12px 25px;
}
.custom-table td {
  width: 50%;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: 0;
}
.custom-table td:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.custom-table td a {
  color: #06f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  width: 100%;
}

/* Image ********-----------------**/
.kg-image-card,
.wp-block-image {
  text-align: -webkit-center;
  margin: 30px auto;
  z-index: 999;
  position: relative;
  background-color: #f9f9f9;
  padding: 10px;
}
img.kg-image {
  display: block;
  height: auto;
  width: 100%;
  max-width: 680px;
}
.kg-image-card.kg-width-wide img {
  max-width: 75%;
}
.kg-image-card.kg-width-full img {
  max-width: 50%;
}
figcaption,
figcaption p {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

/* (Notes) ********---------------**/
.note {
  font-size: 1.1rem;
  background: linear-gradient(
                135deg,
                #ffffff 10%,
                #fedddd 50%,
                #bdffae 100%
              );
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #4caf50;
}

/* FAQs ***********--------------**/
.schema-faq-section {
  background: #f5f7ff;
  padding: 10px 16px;
  margin: 20px 0px;
  border: 1.5px solid #dbdfef;
  font-size: 18px;
  display: flex;
  flex-direction: column;
}
.schema-faq-section a,
.schema-faq-section p {
  margin-bottom: 0;
  font-size: 17px;
}

/* Footer ***************-----------------**/
.contact,
.footer-widget-heading {
  font-family: Arial, Helvetica, sans-serif;
}
.copyright,
.footer-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 950px;
}
.footer-outer {
  background-color: #202020;
  padding: 60px 30px 90px;
}
.footer-inner {
  border-bottom: 1px solid #414141;
}
.footer-widget {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 20px;
  margin-bottom: 60px;
}
@media (min-width: 721px) {
  .about-us {
    max-width: 45%;
  }
}
.about-us,
.site-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-widget-heading {
  font-size: 23px;
  font-weight: 700;
  color: #fff;
}
p.about {
  color: #f3f3f3;
  font-size: 17px;
}
.site-links ul {
  display: block;
  list-style-type: none;
}
.site-links li {
  margin-bottom: 0;
}
.site-links a {
  color: #c6c6c6;
  text-decoration: none;
  height: 14px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}
.site-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.contact {
  background-color: #363535;
  padding: 5px 10px;
  margin-top: 25px;
  color: #f3f3f3;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  width: fit-content;
  align-items: center;
}
.copyright {
  color: #c6c6c6;
  margin-top: 50px;
}
.copyright,
.copyright a,
.copyright p {
  font-size: 15.5px;
}
.copyright span {
  color: #fff;
}
.contact > a {
  color: #fff;
  font-size: 17px;
  margin-bottom: 2px;
}
.contact > a:hover {
  text-decoration: underline;
  color: #d7d9e9;
}

/* Error Page ***************------------**/
.error .site-content {
  text-align: center;
  padding: 180px 20px;
}
@media (max-width: 600px) {
  .error .site-content {
    padding: 150px 20px;
  }
}
.error .site-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}
.p-error {
  font-size: 18px;
  color: #6d6d6d;
}
a.button-error {
  padding: 22px 30px 26px;
  background-color: #d9d9d9;
  color: #000;
  text-decoration: none;
  text-align-last: center;
  font-weight: 600;
  line-height: 0;
  border-radius: 30px;
  font-size: 17px;
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
}
a.button-error:hover {
  background-color: #cdcdcd;
  color: #000;
  text-decoration: none;
}

/* Post Date *********-------------------**/
time {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

/* Skip to content elements *********-------------------**/
.skip-to-content,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-to-content:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  z-index: 999;
  text-decoration: none;
  border-radius: 4px;
}

/* Button Design  *********-------------------**/
.home-button,
.kg-button-card {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.home-button > a,
a.kg-btn {
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  background-size: 200% auto;
  white-space: nowrap;
}
.home-button > a:hover,
a.kg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
  background-position: right center;
}

/* Different Color Buttons */
.home-button > a:nth-child(8n + 1),
a.kg-btn:nth-child(8n + 1) {
  background-image: linear-gradient(45deg, #ff6f61, #d72638);
}

.home-button > a:nth-child(8n + 2),
a.kg-btn:nth-child(8n + 2) {
  background-image: linear-gradient(45deg, #0077b6, #023e8a);
}

.home-button > a:nth-child(8n + 3),
a.kg-btn:nth-child(8n + 3) {
  background-image: linear-gradient(45deg, #52b788, #2d6a4f);
}

.home-button > a:nth-child(8n + 4),
a.kg-btn:nth-child(8n + 4) {
  background-image: linear-gradient(45deg, #8338ec, #3a0ca3);
}

.home-button > a:nth-child(8n + 5),
a.kg-btn:nth-child(8n + 5) {
  background-image: linear-gradient(45deg, #ff8800, #cc5500);
}

.home-button > a:nth-child(8n + 6),
a.kg-btn:nth-child(8n + 6) {
  background-image: linear-gradient(45deg, #14213d, #000814);
}

.home-button > a:nth-child(8n + 7),
a.kg-btn:nth-child(8n + 7) {
  background-image: linear-gradient(45deg, #6c757d, #343a40);
}

.home-button > a:nth-child(8n + 8),
a.kg-btn:nth-child(8n + 8) {
  background-image: linear-gradient(45deg, #ffb703, #fb8500);
}

/* Related Posts  ---------------------*/
.related-posts {
  border: 1px solid #efefef;
  padding: 8px 8px 12px;
  border-radius: 8px;
  margin-top: 60px;
}
.related-posts h2 {
  font-size: 24px;
  text-align: center;
  background-color: #ffc059;
  color: #000;
  border-radius: 8px;
  padding: 12px 25px;
  margin-top: 0;
}
.related-posts ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 49.6% 49.6%;
  gap: 6px;
  box-sizing: border-box;
}
.related-posts li {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.related-posts a {
  color: #06f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 14px;
}
.related-posts li:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 601px) {
  .related-posts ul {
    grid-template-columns: 100%;
    gap: 10px;
  }
}
