/*PAGE LOADING STYLES */
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s .2s ease-in-out;
  transition: all 0.4s 0.2s ease-in-out;
  background-color: #FFF;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
  background-color: #121519;
}
.page-loading.active {
  opacity: 1;
  visibility: visible;
}
.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
.page-loading.active > .page-loading-inner {
  opacity: 1;
}
.page-loading-inner > span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #6F788B;
}
[data-bs-theme="dark"] .page-loading-inner > span {
  color: #FFF;
  opacity: 0.6;
}
.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  vertical-align: text-bottom;
  background-color: #D7DDE2;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner .75s linear infinite;
  animation: spinner 0.75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
  background-color: rgba(255, 255, 255, 0.25);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/*TYPOGRAPHY*/
h1.h1-large {
  font-size: 60px;
  line-height: 68px;
  letter-spacing: -1px;
  font-weight: bold;
  color: #261A3F;
}
h1 {
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -1px;
  font-weight: bold;
  color: #261A3F;
}
h2 {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0px;
  font-weight: 600;
  color: #261A3F;
}
h3 {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
  font-weight: 600;
  color: #261A3F;
}
p.p-large {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
  color: #261A3F;
}
p {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
  font-weight: 400;
  color: #261A3F;
}
@media (max-width: 991px) {
  h1.h1-large {
    font-size: 54px;
    line-height: 62px;
  }
}
@media (max-width: 767px) {
  h1.h1-large {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  h1.h1-large {
    font-size: 36px;
    line-height: 44px;
  }
}
/*TEXT COLOURS*/
.text-grape {
  color: #261A3F !important;
}
.text-grey {
  color: #6B7280 !important;
}
/*BG COLOURS*/
.bg-trans {
  background-color: rgba(255, 255, 255, 0) !important;
}
.bg-white {
  --ar-bg-opacity: 1;
  background-color:rgba(var(--ar-white-rgb), var(--ar-bg-opacity)) !important;
}
.bg-light {
  background-color: #FCFCF1 !important;
}
.bg-grey-light {
  background-color: #EBE9DB !important;
}
.bg-grey-dark {
  background-color: #6B7280 !important;
}
.bg-yellow {
  background-color: #F9B233 !important;
}
.bg-pink {
  background-color: #F098C0 !important;
}
.bg-green {
  background-color: #99C558 !important;
}
.bg-blue {
  background-color: #75C2EB !important;
}
.bg-orange {
  background-color: #E64115 !important;
}
.bg-teal {
  background-color: #387A64 !important;
}
.bg-grape {
  background-color: #261A3F !important;
}
.bg-dark {
  --ar-bg-opacity: 1;
  background-color:rgba(var(--ar-dark-rgb), var(--ar-bg-opacity)) !important;
}
.bg-black {
  --ar-bg-opacity: 1;
  background-color:rgba(var(--ar-black-rgb), var(--ar-bg-opacity)) !important;
}
/*OTHER*/
main.page-wrapper {
  background: linear-gradient(to bottom, #EBE9DB, #FCFCF1);
}
main img {
  max-width: 100%;
  height: auto;
}
header {
}
.header-logo {
  width: auto;
  height: 96px;
}
/*QUICKLINKS*/
QUICKLINKS {
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  border-radius: 20px;
  padding: 7px 0px 7px 7px;
  -moz-box-shadow: 0 4px 3px rgba(148, 123, 139, 0.25);
  -webkit-box-shadow: 0 4px 3px rgba(148, 123, 139, 0.25);
  box-shadow: 0 4px 3px rgba(148, 123, 139, 0.25);
}
QUICKLINKS .dropdown-toggle {
  background-color: #F9B233;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  border-radius: 15px;
  border: 0px solid black;
  padding: 10px 2rem 10px 20px;
  font-weight: 700;
  color: #333;
  text-align: left;
}
QUICKLINKS .dropdown-toggle:hover, QUICKLINKS .dropdown-toggle:focus, QUICKLINKS .dropdown-toggle:active {
  background-color: #F9B233;
  border: 0px;
  color: #333;
}
QUICKLINKS .dropdown-toggle::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  content: '';
  width: 16px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
QUICKLINKS .dropdown-menu {
  border-radius: 15px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: none;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
QUICKLINKS .dropdown-item {
  padding: 0.75rem 1.25rem;
  color: #333;
  font-weight: 400;
  white-space: normal;
  word-wrap: break-word;
}
QUICKLINKS .dropdown-item:hover {
  background-color: #F8F9FA;
}
QUICKLINKS .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}
QUICKLINKS .dropdown-menu::-webkit-scrollbar-track {
  background: #F8F9FA;
  border-radius: 10px;
}
QUICKLINKS .dropdown-menu::-webkit-scrollbar-thumb {
  background: #947B8B;
  border-radius: 10px;
}
QUICKLINKS .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #7A6573;
}
/* For Firefox */
QUICKLINKS .dropdown-menu {
  scrollbar-width: thin;
  scrollbar-color: #947B8B #F8F9FA;
}
