/*Bonezegei Web templates
  Author: Jofel Batutay (Bonezegei)
  Date: August 2023 
*/
:root {
  --cardinal: #c41e3a; /*Red Shade*/
  --cardinal1: rgba(214, 0, 64, 0.9); /*Red Shade*/

  --btn-red: var(--cardinal);
  --btn-red-border: var(--cardinal1);
  --btn-green: MediumSeaGreen;
  --btn-green-border: rgba(60, 179, 114, 0.9);
  --btn-blue: DodgerBlue;
  --btn-blue-border: rgba(30, 143, 255, 0.9);
  --btn-orange: Orange;
  --btn-orange-border: rgba(255, 166, 0, 0.9);

  --size-xs: 576; /* Extra Small < */
  --size-sm: 576; /* Small  >=     */
  --size-md: 768; /* Medium >=     */
  --size-lg: 992; /* Large  >=     */
  --size-xl: 1200; /* Large  >=    */
  --size-xxl: 1400; /* Large  >=   */

  --color-gray-f1: #f1f1f1;

  --theme-def-color-body: #fdfdfd;
  --theme-def-color-navbar: white;
  --theme-def-color-navbar-font: #333;
  --theme-def-color-navbar-btn: white;
  --theme-def-color-navbar-btn-active: #edf3ff;
  --theme-def-color-navbar-btn-font-active: #515698;

  /* body  variables*/
  --color-body: var(--theme-def-color-body);

  /* paragraph  variables*/
  --color-paragraph-font: 0;

  /* navigation bar variables*/
  --color-navbar-container: white;
  --color-navbar-links: white;
  --color-navbar-links-hover: rgba(0, 0, 0, 0.2);
  --color-navbar-links-active: var(--theme-def-color-navbar-btn-active);
  --color-navbar-links-hollow: var(--theme-def-color-navbar-btn-font-active);
  --color-navbar-links-font: var(--theme-def-color-navbar-font);
  --color-navbar-links-font-active: var(
    --theme-def-color-navbar-btn-font-active
  );
}

body {
  margin: 0;
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-body);
  padding: 0px 0px;
}

strong {
  color: #444;
  font-weight: bold;
}
/*Buttons*/
/************************************************************************************************/
.btn {
  font-size: 16px;
  color: #333;
  height: 28px;
  padding: 3px 10px;
  border-radius: 5px;
  border-width: 1px;
  border-color: #aaa;
  border-style: solid;
  background-color: white;
}

.btn:hover {
  background-color: #eee;
  cursor: pointer;
}

.btn.red {
  color: white;
  background-color: var(--btn-red);
  border-color: var(--btn-red-border);
}
.btn.red:hover {
  color: white;
  background-color: var(--btn-red-border);
  border-color: var(--btn-red);
}

.btn.green {
  color: white;
  background-color: var(--btn-green);
  border-color: var(--btn-green-border);
}

.btn.green:hover {
  color: white;
  background-color: var(--btn-green-border);
  border-color: var(--btn-green);
}

.btn.blue {
  color: white;
  background-color: var(--btn-blue);
  border-color: var(--btn-blue-border);
}

.btn.blue:hover {
  color: white;
  background-color: var(--btn-blue-border);
  border-color: var(--btn-blue);
}

.btn.orange {
  color: white;
  background-color: var(--btn-orange);
  border-color: var(--btn-orange-border);
}

.btn.orange:hover {
  color: white;
  background-color: var(--btn-orange-border);
  border-color: var(--btn-orange);
}

/*Container*/
/************************************************************************************************/
.container {
  margin: auto;
  margin-top: 0px;
  z-index: -1;
}

.container-fluid {
  margin: auto;
  margin-top: -20px;
  width: 100%;
}

/* container Split 20% and 80%*/
.container-2-8 {
  margin: auto;
  margin-top: 0px;
  z-index: -1;
  display: flex;
}

.container-2-8A {
  width: 20%;
  background-color: white;
  padding: 0px 0px;
  margin-top: 0px;
  /*
  border-width: 1px;
  border-style: solid;
  border-color: #dfdfdf;*/
}

.container-2-8A ul {
  list-style: none;
}

.container-2-8A .category {
  text-decoration: none;
  font-weight: bold;
  margin-left: -30px;
  font-size: 18px;
  margin-bottom: 5px;
}

.container-2-8A .active {
  font-weight: bold;
  text-decoration-line: underline;
}

.container-2-8A li {
  text-decoration: none;
  color: #333;
  margin-left: -20px;
  margin-bottom: 10px;
}
.container-2-8A li a {
  text-decoration: none;
  color: #333;
  margin-left: 0px;
}

.container-2-8A li a:hover {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.container-2-8B {
  width: 80%;
  background-color: white;
  /*
  border-width: 1px;
  border-style: solid;
  border-color: #dfdfdf;*/
}

/*Navigation Bar*/
/************************************************************************************************/
.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  background-color: var(--color-navbar-container);
  z-index: 100;
  border-color: #dfdfdf;
  border-bottom-style: solid;
  border-width: 1px;
}

.nav-container {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  height: 62px;
}

.navbar .nav-container li {
  list-style: none;
  padding-left: 5px;
}

.navbar .nav-container a {
  text-decoration: none;
  color: var(--color-navbar-links-font);
  font-weight: 500;
  font-size: 18px;
  padding: 7px 10px;
  border-radius: 5px;
}

.navbar .nav-container a:hover {
  background-color: var(--color-navbar-links-active);
  color: var(--color-navbar-links-font-active);
}

.navbar .nav-container li:hover .submenu-items {
  display: block;
}

.navbar .nav-container a.active {
  background-color: var(--color-navbar-links-active);
  color: var(--color-navbar-links-font-active);
}

.navbar .nav-container a.hollow {
  border-style: solid;
  border-width: 1px;
  border-color: var(--color-navbar-links-hollow);
  color: var(---color-navbar-links-hollow);
}

.nav-container {
  display: flex;
  position: relative;
  height: 60px;
  z-index: 1;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 10px;
  right: 10px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 20px;
  width: 26px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.1s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.05s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.1s ease-in-out;
}

.navbar .menu-items {
  position: relative;
  display: flex;
  background-color: var(--color-navbar-container);
  text-align: left;
  animation-timing-function: ease-in-out;
  margin-left: 20px;
}

@keyframes nav-menu-items {
  from {
    top: 0px;
  }
  to {
    top: 62px;
  }
}

@keyframes nav-menu-items-orig {
  0% {
    margin: auto;
    display: block;
    top: 62px;
    width: 100%;
    color: #ffffff00;
  }
  50% {
  }
  100% {
    top: -170px;
    width: 100%;
    height: auto;
    color: #ffffff00;
  }
}

.navbar .menu-items {
  position: relative;
  display: flex;
  background-color: var(--color-navbar-container);
  text-align: left;
  animation-timing-function: ease-in-out;
  margin-left: 20px;
}

.navbar .menu-items li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar .menu-items li:hover a {
  background-color: var(--color-navbar-links-active);
  color: var(--color-navbar-links-font-active);
}

.navbar .menu-items li:hover .submenu-items a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.navbar .menu-items li:hover .submenu-items a:hover {
  color: green;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.navbar .menu-item-button {
  position: relative;
  display: flex;
  background-color: var(--color-navbar-container);
  text-align: left;
  animation-timing-function: ease-in-out;
  margin-left: 20px;
  right: 0px;
}

.submenu-items {
  display: none;
  position: relative;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  z-index: 1;
}
.submenu-items a {
  color: black;
  padding: 30px 16px;
  text-decoration: none;
  display: block;
}

.submenu-items a:hover {
  background-color: #ddd;
}

.logo {
  position: relative;
  top: 0px;
  font-size: 1rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  display: block;
  position: absolute;
  margin-top: auto;
  top: 62px;
  width: 100%;
  margin: auto;
  animation: nav-menu-items 0.1s;
}
.nav-container input[type="checkbox"]:checked ~ .menu-items li {
  margin-top: 10px;
}
/*
.nav-container input[type="checkbox"]:not(checked) ~ .menu-items {
  animation: nav-menu-items-orig 0.5s;
}*/

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo {
  display: block;
}

.arrow {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* contents */
/************************************************************************************************/
h2.title {
  color: #333;
  font-weight: 600;
  margin-left: 15px;
  margin-top: 0px;
  padding-top: 10px;
}

h3.title {
  color: #444;
  font-weight: 600;
  margin-left: 15px;
  margin-top: 0px;
  padding-top: 10px;
  margin-bottom: 10px;
}

/*Paragraph*/
.p-center {
  text-align: justify;
  text-justify: inter-word;
  color: #555;
  font-weight: normal;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 150%;
  margin-bottom: 10px;
  margin-top: 0px;
}

/*Image*/
.img-center {
  width: 96%;
  display: block;
  margin-left: auto;
  margin-right: 2%;
}

.img-title {
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  text-align: center;
  color: #444;
}

.img-center-50 {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*Horizontal Line*/
.hr-line {
  color: #dfdfdf;
  background-color: #dfdfdf;
  height: 1px;
  border-style: none;
  margin-left: 15px;
  margin-right: 15px;
}

/*Table*/
.table-content {
  border-collapse: collapse;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 16px;
  line-height: 150%;
}

.table-content a {
  text-decoration: none;
  color: teal;
  /*font-weight: bold;*/
}

.table-content th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
  color: #555;
}

.table-content td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  color: #444;
}

.table-content td:nth-child(2) {
  min-width: 120px;
}

.table-content tr:nth-child(even) {
  background-color: #f4f4f4;
}

/*Heading*/
/*Intro for site*/
.head1 {
  display: flex;
}

/*Left*/
.head1 .div1 {
  min-width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
/*Right*/
.head1 .div2 {
  min-width: 50%;
  display: block;
  padding-left: 10px;
}

/*Home Summary of featured contents*/
.summary {
  /*display: flex;*/
  min-width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
}

.summary ul {
  min-width: 20%;
  margin-left: -10px;
}

.summary li {
  list-style-type: none;
  font-size: 14px;
  margin-top: 5px;
}

.summary a {
  text-decoration: none;
  color: #333;
}

.summary a:hover {
  font-weight: bold;
}

.summary .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.note {
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #dddddd;
  margin-left: 20px;
  margin-right: 20px;
  /*background-color: #f1c40f36;*/
}

.yellow {
  background-color: #fcf3cf;
}
.green {
  background-color: #d5f5e3;
}

.blue {
  background-color: #d6eaf8;
}

.note .title {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
  font-weight: bold;
}

.note .details {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 150%;
  text-align: justify;
  text-justify: inter-word;
}

/* footer */
/************************************************************************************************/
.footer {
  color: #333;
  display: block;
  padding-left: 15px;
  display: none;
}

.footer li {
  padding: 0px 5px;
}

.footer ul {
  display: flex;
  list-style-type: none;
  padding-left: 0px;
}

.footer a {
  text-decoration: none;
  color: #333;
}

.footer a:hover {
  font-weight: bold;
}

.footer a img {
  text-decoration: none;
  width: 30px;
}
.footer a img:hover {
  width: 32px;
}

.footer p {
  font-size: 14px;
}
.footer p img {
  width: 32px;
  margin-top: 10px;
  margin-right: 10px;
  margin-left: 5px;
}

/**/
/************************************************************************************************/
.loading {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c41e3a;
  z-index: 100;
  animation-timing-function: ease-in-out;
}

/*Screen*/
/************************************************************************************************/

/*XS Extra Small*/
@media screen and (max-width: 576px) {
  p {
    font-size: 16px;
  }

  .container {
    width: 100%;
  }
  .nav-container .menu-items {
    display: none;
  }
  .nav-container .menu-item-button {
    right: 60px;
  }

  .submenu-items {
    position: relative;
  }

  .container-2-8 {
    display: block;
  }
  .container-2-8A {
    display: none;
  }
  .container-2-8B {
    width: 100%;
  }
  .head1 .div2 {
    display: none;
  }
  .summary {
    /*display: block;*/
    grid-template-columns: auto auto;
  }
}

/*S Small*/
@media screen and (min-width: 576px) {
  p {
    font-size: 16px;
  }
  .container {
    width: 100%;
  }

  .nav-container .menu-items {
    display: none;
  }
  .nav-container .menu-item-button {
    right: 60px;
  }

  .submenu-items {
    position: relative;
  }
  .container-2-8 {
    display: block;
  }
  .container-2-8A {
    display: none;
  }
  .container-2-8B {
    width: 100%;
  }

  .head1 .div2 {
    display: none;
  }
  .summary {
    /*display: block;*/
    grid-template-columns: auto auto auto;
  }
}

/*M Medium*/
@media screen and (min-width: 768px) {
  p {
    font-size: 20px;
  }
  .container {
    width: 720px;
  }
  .nav-container .menu-items {
    display: flex;
  }
  .nav-container .hamburger-lines {
    display: none;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .menu-item-button {
    right: 0px;
  }
  .submenu-items {
    position: absolute;
  }
  .container-2-8 {
    display: flex;
  }
  .container-2-8A {
    display: block;
  }
  .container-2-8B {
    width: 80%;
  }

  .head1 .div2 {
    display: block;
  }
  .summary {
    display: flex;
  }
}

/*LG Large*/
@media screen and (min-width: 992px) {
  p {
    font-size: 20px;
  }
  .container {
    width: 960px;
  }
  .nav-container .menu-items {
    display: flex;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .hamburger-lines {
    display: none;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .menu-item-button {
    right: 0px;
  }

  .submenu-items {
    position: absolute;
  }
  .container-2-8 {
    display: flex;
  }
  .container-2-8B {
    width: 80%;
  }
}

/*XL Extra Large*/
@media screen and (min-width: 1200px) {
  p {
    font-size: 20px;
  }
  .container {
    width: 1140px;
  }
  .nav-container .menu-items {
    display: flex;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .hamburger-lines {
    display: none;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .menu-item-button {
    right: 0px;
  }

  .submenu-items {
    position: absolute;
  }

  .container-2-8 {
    display: flex;
  }
  .container-2-8B {
    width: 80%;
  }
}

/*XXL Extra Extra Large*/
@media screen and (min-width: 1400px) {
  p {
    font-size: 20px;
  }
  .container {
    width: 1320px;
  }
  .menu-items {
    display: flex;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .hamburger-lines {
    display: none;
  }
  .nav-container .checkbox {
    display: none;
  }
  .nav-container .menu-item-button {
    right: 0px;
  }

  .submenu-items {
    position: absolute;
  }

  .container-2-8 {
    display: flex;
  }
  .container-2-8B {
    width: 80%;
  }
}
