@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");
:root {
  --jk-blue: #1672fd;
  --jk-blue-hover: #025ce4;
  --text-color: white;
  --jk-gray: grey;
  --jk-gray-hover: rgb(114, 114, 114);
  --jk-green: #1b8b57;
  --jk-green-hover: #147045;
  --jk-red: #ca2d3dee;
  --jk-red-hover: #b32432ee;
  --jk-yellow: #ff9900;
  --jk-yellow-hover: #ff9900e3;
  --jk-lightblue: #54b4d3;
  --jk-lightblue-hover: #54b3d3ea;
  --jk-purple: #A020F0;
  --title-font-family: "Poppins", sans-serif;
  --jk-site-font: "Poppins", sans-serif;
  --jk-heading: rgb(36, 36, 36);
  --jk-display-1: 5rem;
  --jk-display-2: 4.5rem;
  --jk-display-3: 4rem;
  --jk-display-4: 3.5rem;
  --jk-display-5: 3rem;
  --jk-display-6: 2.5rem;
  --alert-blue: #9bbef3;
  --alert-blue-font: rgb(35, 35, 252);
  --alert-gray: rgb(185, 185, 185);
  --alert-gray-font: rgb(255, 255, 255);
  --alert-green: #aae7cb;
  --alert-green-font: #2e805a;
  --alert-red: #fabfc5ee;
  --alert-red-font: #7a2a32ee;
  --alert-yellow: #f1d6ac;
  --alert-yellow-font: #856535;
  --alert-info: #b0e1f1;
  --alert-info-font: #346677;
}

.jkbtn {
  padding: 15px 25px;
  transition: 0.4s;
  border-radius: 5px;
}

.jkbtn:hover {
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.jkbtn-sm {
  padding: 8px 20px;
  transition: 0.4s;
  border-radius: 5px;
}

.jkbtn-sm:hover {
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.jkbtn-lg {
  padding: 20px 30px;
  transition: 0.4s;
  border-radius: 5px;
}

.jkbtn-lg:hover {
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.alertjk {
  padding: 20px 40px;
  margin: 0 20px;
  border-radius: 2px;
  font-size: 20px;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-even {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.justify-right {
  justify-content: right;
}

.justify-left {
  justify-content: left;
}

.justify-center {
  justify-content: center;
}

.mx-2 {
  margin: 0 2rem;
}

.mx-4 {
  margin: 0 4rem;
}

.mx-6 {
  margin: 0 6rem;
}

.mx-8 {
  margin: 0 8rem;
}

.mx-12 {
  margin: 0 12rem;
}

.mx-16 {
  margin: 0 16rem;
}

.mx-20 {
  margin: 0 20rem;
}

.mx-24 {
  margin: 0 24rem;
}

.mx-30 {
  margin: 0 30rem;
}

.mx-36 {
  margin: 0 36rem;
}

.mx-40 {
  margin: 0 40rem;
}

.px-2 {
  padding: 0 2rem;
}

.px-4 {
  padding: 0 4rem;
}

.px-6 {
  padding: 0 6rem;
}

.px-8 {
  padding: 0 8rem;
}

.px-12 {
  padding: 0 12rem;
}

.px-16 {
  padding: 0 16rem;
}

.px-20 {
  padding: 0 20rem;
}

.px-24 {
  padding: 0 24rem;
}

.px-30 {
  padding: 0 30rem;
}

.px-36 {
  padding: 0 36rem;
}

.px-40 {
  padding: 0 40rem;
}

footer {
  background-color: var(--jk-purple);
  margin: 20px 0;
  padding: 40px 0;
  font-family: var(--jk-site-font);
}

.content {
  padding: 50px 0;
}

hr {
  margin: 15px 0;
}

.menu-list, .in-element-list {
  list-style-type: none;
}

.menu-list li, .in-element-list li {
  display: inline-block;
  margin-right: 10px;
}

.menu-list li a, .in-element-list li a {
  text-decoration: none;
}