/*========== Variables ==========*/

:root {
  --first-color: #eb8129;
  --first-color-light: hsl(38, 100%, 78%);
  --first-color-alt: #d06712;
  --second-color: #0078ff;
  --dark-color: #002b4e;
  --body-color: #e9e9e9;
  /* --body-color: #f6f6f6; */

  --text-color: #2a2a2a;
  --title-color: #002b4e;
  --text-white: #f6f6f6;
  --body-font: "Poppins", "Bahij Nassim", sans-serif;

  --shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --light-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  --white-shadow: 0px 0px 10px 2px #fff;
  --neu-shadow-tiny: 3px 3px 6px #c4c4c4, -3px -3px 6px #ffffff;
  --neu-shadow-sm: 10px 10px 15px #c6c6c6, -10px -10px 15px #ffffff;
  --neu-shadow-md: 17px 17px 34px #c6c6c6, -17px -17px 34px #ffffff;
  --neu-shadow-lg: 18px 18px 33px #c4c4c4, -18px -18px 33px #ffffff;
  --neu-text-shadow: 2px 2px 2px #bababa, -2px -2px 2px #ffffff;
  --neu-inset-shadow-tiny: inset 2px 2px 5px #c6c6c6, inset -3px -3px 5px #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--body-font);
  background-color: var(--body-color);
  color: var(--text-color);
}

.rtl {
  direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
  font-weight: 600;
}

a {
  color: var(--first-color);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: var(--dark-color);
  transition: all 0.2s ease-in-out;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

.text-justify {
  text-align: justify;
}

.vh-90 {
  height: 88vh !important;
}

.bg-darkblue {
  background-color: var(--dark-color);
}

.bg-body-white {
  background-color: var(--body-color);
}

.bg-orange {
  background-color: var(--first-color);
}

.bg-orange-hover:hover {
  background-color: #eb8129 !important;
  transition: color 0.2s ease-in !important;
}

.text-dark {
  color: var(--title-color) !important;
}

.text-hover:hover {
  color: var(--first-color) !important;
}

.bg-white-hover:hover {
  background-color: var(--body-color);
  transition: color 0.2s ease-in !important;
}

.neu-shadow-tiny {
  box-shadow: var(--neu-shadow-tiny);
}

.neu-shadow-sm {
  box-shadow: var(--neu-shadow-sm);
}

.neu-shadow-md {
  box-shadow: var(--neu-shadow-md);
}

.neu-shadow-lg {
  box-shadow: var(--neu-shadow-lg);
}

.neu-inset-shadow-tiny {
  box-shadow: var(--neu-inset-shadow-tiny);
}

.neu-text-shadow {
  text-shadow: var(--neu-text-shadow);
}

.page-section {
  height: 90vh !important;
}
@media screen and (max-width: 700px) {
  .page-section {
    /* height: 50vh !important; */
  }
}

/* .fixed-background {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background: fixed;
  object-fit: cover;
  object-position: center center;
  -o-object-fit: cover;
  -o-object-position: center center;
} */

.scroll-background {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  -o-object-fit: cover;
  -o-object-position: center center;
  position: absolute;
  z-index: -1;
  inset: 0;
}

.scroll-background::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
}

/********************** Nav Bar **********************/
#logo {
  /* box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.1); */
  font-weight: 400;
  box-shadow: var(--neu-shadow-tiny);
}

#logo:hover {
  box-shadow: none;
}

#logo div {
  line-height: 25px;
  font-size: 1.3rem;
}

@media screen and (min-width: 576px) {
  #logo div {
    line-height: 30px;
    font-size: 1.8rem;
  }
}

header {
  box-shadow: 0 0.1rem 0.5rem 0.1rem rgba(0, 0, 0, 0.1);
  background-color: var(--body-color);
  transition: background-color 0.2s ease;
  overflow: unset;
}

#mainNav {
  max-height: 10vh;
}

#mainNav .navbar-brand {
  font-size: 1.2rem;
  /* font-weight: 400; */
  color: var(--title-color);
}

#mainNav .nav-title {
  font-weight: 600;
  text-shadow: var(--neu-shadow-tiny);
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: var(--title-color);
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.75rem 0;
  text-shadow: var(--neu-text-shadow);
}

header .navbar-nav .nav-item .nav-link:hover,
header .navbar-nav .nav-item .nav-link:active {
  color: var(--first-color);
  transition: color 0.2s ease-in !important;
}

header .navbar-nav .nav-item .nav-link.active {
  color: #eb8129 !important;
}

#mainNav .dropdown-menu {
  width: fit-content;
  position: absolute;
  top: 2rem;
  text-align: justify;
}

#mainNav .dropdown-menu .dropdown-item:hover {
  background-color: var(--body-color);
}

/* Mobile Screen Responsive */

@media screen and (max-width: 767px) {
  #mainNav .navbar-brand {
    font-size: 1rem;
  }

  #mainNav .navbar-nav {
    background-color: var(--text-white);
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
  #mainNav .dropdown-menu {
    top: 2.5rem;
    /* padding: auto; */
    /* margin: auto; */
    width: 4rem !important;
  }

  #mainNav .dropdown-menu .dropdown-item {
    font-size: 1.2rem !important;
  }
}

/* Wide Screen Responsive */

@media screen and (min-width: 768px) {
  #mainNav {
    box-shadow: none;
    background-color: var(--body-color);
    max-height: 12vh;
  }
  #mainNav .navbar-brand {
    font-size: 1.4rem;
    color: var(--first-color);
  }
  #mainNav .navbar-brand:hover {
    color: var(--dark-color);
    transition: color 0.2s ease-in !important;
  }
  #mainNav .navbar-nav .nav-item .nav-link {
    color: var(--title-color);
    padding: 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: var(--first-color);
    transition: color 0.2s ease-in !important;
  }
  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
  header.navbar-shrink {
    box-shadow: 0 0.2rem 1rem 0.2rem rgba(0, 0, 0, 0.1);
  }

  #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link {
    color: var(--title-color);
  }
  #mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: var(--first-color);
    transition: color 0.2s ease-in !important;
  }
}

.contact-us-icon {
  text-shadow: var(--neu-shadow-tiny);
}

.language-selector {
  border-radius: 1.1rem;
}

.language-selector:hover {
  box-shadow: var(--neu-inset-shadow-tiny);
}

@media screen and (max-width: 768px) {
  .language-selector {
    border-radius: 0.8rem;
  }
}

/********************** Search Box **********************/

.search-form *:focus {
  /* border-color: var(--first-color); */
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #eb802999;
}
.searchSelectContainer {
  border-left: 0.001rem solid #e7e7e7;
}
@media screen and (max-width: 568px) {
  .searchbox-option {
    font-size: 0.7rem !important;
  }

  .searchSelectContainer {
    border-left: none;
  }
  /* #searchBoxCategory {
    max-width: 220px !important;
    border: none;
  }
  .searchSelectContainer{
    width: 100% auto;
    background-color: #fff;
  } */
}

/********************** Pagination **********************/
.pagination .page-numbers {
  padding: 0.3rem 0.8rem;
  margin: 0 4px;
  background-color: var(--first-color);
  color: var(--text-white);
  box-shadow: var(--neu-shadow-tiny);
  /* box-shadow: 1px 1px 3px 0 #2a2a2a66; */
  border-radius: 0.2rem;
}
.pagination .page-numbers:hover {
  background-color: var(--first-color-alt);
}
.pagination .page-numbers.current {
  background-color: var(--title-color);
}

/* Mobile Responsive */

@media screen and (max-width: 576px) {
  .pagination .page-numbers {
    /* padding: 0.3rem 0.5rem; */
    margin: 0 3px 8px 3px;
  }

  .pagination {
    display: flex;
    flex-wrap: wrap;
  }
}

/********************** Card **********************/
.items-card {
  /* background-color: var(--body-color); */
  height: 250px;
  overflow: scroll;
  scrollbar-width: none;
}

.items-card .card-title {
  font-size: 1.2rem;
}

@media screen and (max-width: 576px) {
  .items-card {
    max-height: 200px;
    /* overflow: hidden; */
  }
  .items-card-body {
    text-overflow: ellipsis;
    /* overflow: hidden; */
    white-space: wrap;
  }
}

/********************** Tree Diagram **********************/

:root {
  --level-1: var(--dark-color);
  /* --level-1: #888888; */
  --level-2: #006c8f;
  /* --level-2: #a9a9a9; */
  --level-3: #00b3b9;
  /* --level-3: #c9c9c9; */
  /* --level-3: #fae2ba; */
  --level-4: #a1e0e1;
  /* --level-4: #74fac8; */
  /* --level-4: #e9e9e9; */
  --black: rgb(174, 174, 174);
}

.tree * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.tree ol {
  list-style: none;
}

.tree a {
  text-decoration: none;
  color: var(--text-color);
}

.tree a:hover {
  color: var(--first-color);
}

.rectangle {
  position: relative;
  padding: 20px;
  box-shadow: var(--neu-shadow-tiny);
  /* box-shadow: 0 5px 15px rgba(41, 41, 41, 0.1); */
  border-radius: 5px;
  color: var(--text-color);
}

.rectangle:hover {
  box-shadow: 0 0px 10px #29292980;
}

.tab-button {
  width: 15rem;
  font-size: 1.5rem;
  background-color: var(--text-white);
  /* background-color: #ababab; */
}

.tab-arrow {
  width: 500px;
  position: relative;
  margin: 0 auto;
  padding: 0 auto;
  /* background: var(--level-1); */
}

/* LEVEL-1 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-1 {
  width: 80%;
  position: relative;
  margin: 0 auto 20px;
  background: var(--level-1);
  color: var(--text-white);
}

/* .level-1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
} */

/* .level-1 {
  width: 50%;
  position: relative;
  margin: 0 auto 40px;
  background: var(--level-1);
}

.level-1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
} */

/* LEVEL-2 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.level-2-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: calc(100% - 10px);
  background: var(--black);
}

.level-2-wrapper li + li {
  margin-top: 20px;
}

.level-2 {
  font-weight: normal;
  background: var(--level-2);
  color: var(--text-white);
}

.level-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* .level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.level-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--black);
}

.level-2-wrapper::after {
  display: none;
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: calc(100% + 20px);
  height: 2px;
  background: var(--black);
}

.level-2-wrapper li {
  position: relative;
}

.level-2-wrapper > li::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-2 {
  width: 70%;
  margin: 0 auto 40px;
  background: var(--level-2);
}

.level-2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-2::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
} */

/* LEVEL-3 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.level-3-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-top: 20px;
}

.level-3-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: calc(100% - 10px);
  background: var(--black);
}

.level-3-wrapper li + li {
  margin-top: 20px;
}

.level-3 {
  font-weight: normal;
  background: var(--level-3);
}

.level-3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* .level-3-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  width: 90%;
  margin: 0 auto;
}

.level-3-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: calc(25% - 5px);
  width: calc(50% + 10px);
  height: 2px;
  background: var(--black);
}

.level-3-wrapper > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 2px;
  height: 20px;
  background: var(--black);
}

.level-3 {
  margin-bottom: 20px;
  background: var(--level-3);
} */

/* LEVEL-4 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-4-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-top: 20px;
}

.level-4-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: calc(100% - 10px);
  background: var(--black);
}

.level-4-wrapper li + li {
  margin-top: 20px;
}

.level-4 {
  font-weight: normal;
  background: var(--level-4);
}

.level-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* .level-4-wrapper {
  position: relative;
  width: 80%;
  margin-left: auto;
}

.level-4-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 2px;
  height: calc(100% + 20px);
  background: var(--black);
}

.level-4-wrapper li + li {
  margin-top: 20px;
}

.level-4 {
  font-weight: normal;
  background: var(--level-4);
}

.level-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--black);
} */

/* Tree Responsive 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 700px) {
  #classifications h1 {
    font-size: 1.5rem;
  }

  .rectangle {
    padding: 20px 10px;
  }

  .tab-button {
    width: 7rem;
    font-size: 1rem;
  }

  .tab-arrow {
    width: 220px;
  }

  .level-1,
  .level-2 {
    width: 100%;
  }

  .level-1 {
    margin-bottom: 20px;
  }

  .level-1::before,
  .level-2-wrapper > li::before {
    display: none;
  }

  .level-2-wrapper,
  .level-2-wrapper::after,
  .level-2::after {
    display: block;
  }

  .level-2-wrapper {
    width: 90%;
    margin-left: 10%;
  }

  .level-2-wrapper > li:not(:first-child) {
    margin-top: 50px;
  }
}

@media (min-width: 701px) and (max-width: 991px) {
  .rectangle {
    padding: 20px 10px;
  }

  .tab-button {
    width: 10rem;
    font-size: 1.2rem;
  }

  .tab-arrow {
    width: 330px;
  }
}

/********************** BREADCRUMB **********************/

.breadcrumb a {
  color: var(--text-color);
  font-size: 1.1rem;
}
.breadcrumb li {
  font-size: 1.1rem;
  margin-right: 0.5rem;
  color: var(--text-color);
  /* margin-left: 0.1rem; */
}
.breadcrumb a:hover {
  color: var(--first-color);
}

@media screen and (max-width: 700px) {
  .breadcrumb a {
    /* font-size: 1rem; */
  }
  .breadcrumb li {
    /* font-size: 1rem; */
  }
}

/* Contact Form */
.contact-form {
  max-width: 900px;
}

/********************** Footer **********************/

.footer-line {
  height: 2px;
  border: #ffffff 3px solid;
  box-shadow: var(--neu-shadow-tiny);
  background-color: #fff;
}

.footer-title {
  text-shadow: var(--neu-shadow-tiny);
}

.footer-links a:hover {
  color: #eb8129 !important;
  transition: color 0.2s ease-in !important;
}

.footer-links p {
  font-size: 1.2rem !important;
}

@media screen and (min-width: 768px) {
  .footer-links p {
    text-align: justify;
  }
}

.social-icons a {
  font-size: 2.3rem;
  color: var(--first-color);
  padding: 0 0.5rem;
  transition: color 0.3s ease-in;
  text-shadow: var(--neu-shadow-tiny);
}

.social-icons a:hover {
  color: var(--body-color) !important;
  transition: font-size 0.1s ease;
}

#btn-back-to-top {
  position: fixed;
  bottom: 8%;
  /* right: 2%; */
  z-index: 100;
  background-color: #eb8029bb;
  border: none;
  box-shadow: var(--neu-shadow-tiny);
}

/********************** Subscribe Popup **********************/

.subscribe-popup {
  bottom: 8%;
  /* left: 0; */
  z-index: 200;
}

.subscribe-popup-button {
  /* opacity: 0.8; */
  border: 0;
  /* transition: opacity 0.35s ease-in-out; */
}

/* .subscribe-popup-button i {
  font-size: 2.5rem;
  color: var(--first-color);
  text-shadow: var(--neu-shadow-tiny);
  transition: color 0.35s ease-in-out;
} */

.subscribe-popup-button img {
  width: 2.5rem;
  filter: drop-shadow(1px 1px 2px #35353583);
}

.subscribe-popup-button i:hover {
  color: var(--dark-color);
}

.subscribe-popup-button:focus,
.subscribe-popup-button:hover {
  /* opacity: 1; */
  filter: drop-shadow(0 0 0 #5a5a5a);
  transition: filter 0.35s ease-in-out;
}

.subscribe-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.subscribe-content {
  width: 360px;
  height: 100%;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 60px;
  overflow: hidden;
}

.subscription-popup {
  position: relative;
  width: 100%;
  height: 100%;
}

.subscription-popup .subscribe-email {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 20px;
}

.subscription-popup .subscribe-submit-email {
  position: absolute;
  top: 0;
  /* right: 0; */
  height: calc(100% - 2px);
  width: 100px;
  border: none;
  border-radius: 60px;
  outline: none;
  margin: 1px;
  padding: 0 20px;
  cursor: pointer;
  background: var(--dark-color);
  color: var(--text-white);
  transition: width 0.35s ease-in-out, background 0.2s ease-in-out;
}

.subscription-popup .subscribe-submit-email:hover {
  background-color: var(--first-color);
}

.subscription-popup.done .subscribe-submit-email {
  width: calc(100% - 2px);
  background: var(--first-color);
}

.subscription-popup .subscribe-submit-email .subscribe-before-submit,
.subscription-popup .subscribe-submit-email .subscribe-after-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 38px;
  transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

.subscription-popup.done .subscribe-submit-email .subscribe-before-submit,
.subscription-popup:not(.done) .subscribe-submit-email .subscribe-after-submit {
  visibility: hidden;
  opacity: 0;
}

.subscription-popup .subscribe-submit-email .subscribe-after-submit {
  transition-delay: 0.35s;
}

.subscription-popup:not(.done) .subscribe-submit-email .subscribe-before-submit,
.subscription-popup.done .subscribe-submit-email .subscribe-after-submit {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 700px) {
  .subscribe-content {
    width: 80vw;
  }
  .subscribe-popup-button img {
    /* width: 2rem; */
  }
}
