:root {
  --white-text: #ffffff;
  --blue-txt: #00197e;
  --light-blue: #263238;
  --black-bg: #000000;
  --blue-bg: #00197e;
  --yellow-bg: #fee823;
  --alltyDark-blue-yellow: #2f6dff;
  --allty-black-text: #000000;
  --allty-yellow-txt: #fee823;
  --blue-border: #00197e;
  --yellow-border: #fee823;
  --standerd-white: #ffffff;
  --standerd-black: #000000;
  --standerd-grey: #4a4a4a;
}

body.theme-yellow .page-head::after,
body.theme-yellow .page-head::before,
body.theme-cyan .page-head::after,
body.theme-cyan .page-head::before,
body.theme-red .page-head::after,
body.theme-red .page-head::before,
body.theme-dark .page-head::after,
body.theme-dark .page-head::before {
  display: none;
  content: none;
}
.page-head {
  position: relative;
  width: 100%;
  background-color: var(--blue-bg);
  display: flex;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
  background: radial-gradient(
    circle,
    rgba(47, 109, 255, 1) 0%,
    rgb(34, 86, 208, 0.3) 10%
  );
  border-radius: 40%;
  filter: blur(60px);
  top: 0;
  left: 0;
  z-index: 0;
  overflow-y: hidden;
  pointer-events: none;
}
.page-head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
  background: radial-gradient(
    circle,
    rgba(47, 109, 255, 1) 0%,
    rgb(34, 86, 208, 0.3) 10%
  );
  border-radius: 40%;
  filter: blur(60px);
  right: 0;
  top: 0;
  overflow-y: hidden;
  pointer-events: none;
}
.page-txt-wrapper {
  position: relative;
  z-index: 3;
  margin: 73px auto;
  width: auto;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.page-desk {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.abt-txt {
  color: var(--white-text);
  font-weight: 500;
  padding: 10px;
}

.root-page-name {
  height: auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-txt-wrapper h1 {
  color: var(--allty-yellow-txt);
}

.root-page-name p {
  font-weight: 500;
  font-size: 1.112rem;
  color: var(--allty-yellow-txt);
}

.hm-icon {
  color: var(--allty-yellow-txt);
}
.arrw-icon {
  color: var(--allty-yellow-txt);
}
@media (max-width: 1024.98px) {
  .page-txt-wrapper h1 {
    font-size: 2.715rem;
    line-height: 1.37;
  }
  .abt-txt {
    font-size: 1.286rem;
  }
  .root-page-name p {
    font-size: 1.286rem;
  }
  .page-head::before {
    max-width: 300px;
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .page-txt-wrapper h1 {
    font-size: 34px;
  }
  .abt-txt {
    font-size: 16px;
  }
  .root-page-name p {
    font-size: 16px;
  }
  .page-head::before {
    max-width: 300px;
    max-height: 200px;
  }
  .page-head::after {
    max-width: 300px;
    max-height: 200px;
  }
}
