*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* border: 1px dashed red; */
}

body {
  font-family: 'Roboto Mono', monospace;
  line-height: 2;
}

h1{
  font-size: 40px;
}

h2{
  font-size: 30px;
}

h3{
  font-size: 25px;
}

h4{
  font-size: 20px;
}

a {
  text-decoration: none;
  color: cornflowerblue;
}

a:hover {
  color: black;
}

:root{
  --rgbcolor: rgb(45, 45, 45);
  --rgbcolorneg: rgb(210, 210, 210);
}

header{
  z-index: 1;
  position: fixed;
}

.navbar{
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  transition: top 0.3s ease-in-out;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

svg{
  height: 40px;
  object-fit: contain;
  cursor: pointer;
  overflow: visible;
}

#burgericon{
  pointer-events: visiblePainted;
}

#burgericon:hover > path:nth-of-type(even){
  transform-origin: center;
  animation: shake .5s linear;
  -webkit-animation: shake .5s linear;
  animation-iteration-count: infinite;
}

#burgericon:hover > path:nth-of-type(odd){
  transform-origin: center;
  animation: shakereverse .5s linear;
  -webkit-animation: shakereverse .5s linear;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0%{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }25%{
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
  }50%{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }75%{
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
  }100%{
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  }
}

@keyframes shakereverse {
  0%{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }25%{
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
  }50%{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }75%{
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
  }100%{
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  }
}

path{
  transform-origin: center;
}

.navbaricon{
  transition: .5s;
}

.navbariconneg{
  transition: .5s;
}

.container{
  position: absolute;
  height: 100vh;
  width: 100vw;
  display: none;
  top: 0;
  justify-content: center;
  align-items: center;
}

@keyframes grow {
  from{
    scale: 50%;
  }to{
    scale: 100%;
  }
}

.background{
  position: absolute;
  width: 100vw;
  height: 100vh;
  color: white;
  background-color: black;
  transition: color 1s, background-color .5s, opacity 1s;
  -webkit-transition: color 1s, background-color .5s, opacity 1s;
  -o-transition: color 1s, background-color .5s, opacity 1s;
  -moz-transition: color 1s, background-color .5s, opacity 1s;
  -ms-transition: color 1s, background-color .5s, opacity 1s;
}

.center_text{
  font-size: min(15vw, 15vh);
  letter-spacing: 1vw;
  padding-left: 1.5vw;
  user-select: none;
  animation: grow .6s linear;
  -webkit-animation: grow .6s linear;
}

.foreground{
  position: absolute;
  width: 100vw;
  height: 100vh;
  color: black;
  background-color: white;
  transition: color 1s, background-color .5s, opacity 1s;
  -webkit-transition: color 1s, background-color .5s, opacity 1s;
  -o-transition: color 1s, background-color .5s, opacity 1s;
  -moz-transition: color 1s, background-color .5s, opacity 1s;
  clip-path: polygon(110% -10%, 50% 100%, 0 100%, 0 50%);
  -webkit-clip-path: polygon(110% -10%, 50% 100%, 0 100%, 0 50%);
  animation: open;
  animation-duration: 1s;
  pointer-events: none;
  z-index: 2;
  -ms-transition: color 1s, background-color .5s, opacity 1s;
}

@keyframes open{
  from{
    clip-path: polygon(110% -10%, 0 100%, 0 100%, 0 100%);
    -webkit-clip-path: polygon(110% -10%, 0 100%, 0 100%, 0 100%);
  }to{
    clip-path: polygon(110% -10%, 50% 100%, 0 100%, 0 50%);
    -webkit-clip-path: polygon(110% -10%, 50% 100%, 0 100%, 0 50%);
  }
}

.center{
  display: flex;
  justify-content: center;
  align-items: center;
}

h1{
  
}

.downarrow{
  width: 100px;
  position: absolute;
  top: 90vh;
  left: calc(50vw - 50px);
  stroke: var(--rgbcolor);
  fill: var(--rgbcolor);
}

.wipe{
  position: absolute;
  display: none;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 100vh;
  animation: wipein .33s 2;
  -webkit-animation: wipein .33s 2;
  animation-timing-function: ease-out;
  z-index: 3;
}

@keyframes wipein{
  0%{
    width: 0vw;
    left: calc(50% - 0vw);
  }100%{
    width: 100vw;
    left: calc(50% - 50vw);
  }
}

@keyframes wipeout{
  0%{
    column-gap: 0vw;
  }50%{
    column-gap: 0vw;
  }100%{
    column-gap: 100vw;
  }
}

.leftdivider{
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--rgbcolor) 50%, var(--rgbcolorneg) 0 50%);
  background-size: 201% 100%;
  background-position: 100% 100%;
  animation: colorslideleft .99s;
  -webkit-animation: colorslideleft .99s;
  animation-timing-function: linear;
}

@keyframes colorslideleft {
  0%{
    background-position: 0% 100%;
  }33%{
    background-position: 0% 100%;
  }66%{
    background-position: 100% 100%;
  }100%{
    background-position: 100% 100%;
  }
}

.rightdivider{
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, var(--rgbcolor) 50%, var(--rgbcolorneg) 0 50%);
  background-size: 201% 100%;
  background-position: 0% 100%;
  animation: colorslideright .99s;
  -webkit-animation: colorslideright .99s;
  animation-timing-function: linear;
}

@keyframes colorslideright {
  0%{
    background-position: 100% 100%;
  }33%{
    background-position: 100% 100%;
  }66%{
    background-position: 0% 100%;
  }100%{
    background-position: 0% 100%;
  }
}

.cardindexcon{
  animation: grow .6s linear;
  -webkit-animation: grow .6s linear;
  max-width: 50vw;
  font-size: 1.5rem;
  text-align: center;
}


/* 08/23/2003 */

.divider1{
  background-color: black;
  height: 1px;
  max-width: 100%;
  margin: 20px 0 10px;
}

.b-1-s-black {
  border: 1px solid black;
}

.bl-1-s-black{
  border-left: 1px solid black;
}

.bs1{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.lh-2p5{
  line-height: 2.5;
}

.lh-2{
  line-height: 2;
}

.lh-1p5{
  line-height: 1.5;
}

.lh-1p2{
  line-height: 1.2;
}

.m-0-auto{
  margin: 0 auto;
}

.mtb-10{
  margin: 10px 0;
}

.mt-100{
  margin-top: calc(90px + 5vw);
}

.mt-20{
  margin-top: 20px;
}

.mb-100{
  margin-bottom: 5vw;
}

.t-a-c{
  text-align: center;
}

.t-a-j{
  text-align: justify;
}

.p-30{
  padding: 30px;
}

.plr-30{
  padding-left: 30px;
  padding-right: 30px;
}

.plr-20{
  padding-left: 20px;
  padding-right: 20px;
}

.d-b-m{
  display: none;
}

.d-f {
  display: flex;
}

.a-i-c{
  align-items: center;
}

.gap-10{
  gap: 10px;
}

.f-0-0-35p {
  flex: 0 0 35%;
}

.mx-w-1100{
  max-width: 1100px;
}

.mx-w-24{
  max-width: 24px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul > ul{
  list-style-type: circle;
}

li {
  margin: 5px 0;
}

.dl-pdf-btn{
  align-self: center;
}

@media screen and (max-width: 768px) {
  .d-b-m{
    display: block;
  }
  .d-n-m{
    display: none;
  }
  .b-n-m{
    border: none;
  }
  .t-a-c-m{
    text-align: center;
  }

  .p-30{
    padding: 3vw;
  }

  .plr-30 {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  h1{
    font-size: clamp(28px, 5.2vw, 40px);
  }
  
  h2{
    font-size: clamp(24px, 3.9vw, 30px);
  }
  
  h3{
    font-size: clamp(22px, 3.2vw, 25px);
  }
  
  h4{
    font-size: clamp(18px, 2.6vw, 20px);
  }
  body{
    font-size: clamp(15px, 2vw, 16px);
  }
  .navbar {
    padding: 3vw;
  }
}

@media screen and (max-width: 425px) {
  .plr-20 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* 18-03-2026 */

.prtfl-imgprv {
  width: 100%;
  border: solid 1px lightgray;
  margin-bottom: 20px;
}
