
/*  
  --------------------------------------------------------------
  -----      Import 'Inter' font and apply it to body      -----
  --------------------------------------------------------------
*/

@import url('./font/inter.css');

body {
    font-family: 'Inter var', sans-serif;
    font-feature-settings: "cv02","cv03","cv04","cv11";
}





/*  
  ----------------------------------------------------------------- 
  -----      Loader animation before displaying the page      -----
  -----------------------------------------------------------------
*/

.loader-wrapper {
    z-index: 2000 !important;
}





/*  
  --------------------------------------------
  -----      Top navigation styling      -----
  --------------------------------------------
*/

.navigation {
    z-index: 1030;
}

header .nav-link.active, header .dropdown-item.active, header .dropdown-toggle.active {
    color: var(--bs-primary-text-emphasis) !important; 
    background: var(--bs-primary-bg-subtle) !important;
}

#bd-theme-light-dark-auto .dropdown-item.active, #bd-theme-light-dark-auto .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color) !important;
  background: var(--bs-dropdown-link-active-bg) !important;
}





/*  
  ------------------------------------------------  
  -----      Back-to-top button styling      -----
  ------------------------------------------------
*/

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    display: none;
    z-index: 2;
}

[dir="ltr"] .btn-back-to-top {
    right: 20px;
}

[dir="rtl"] .btn-back-to-top {
    left: 20px;
}





/*  
  -----------------------------------------------------------  
  -----      Mailchimp: Hidden input field styling      -----
  -----------------------------------------------------------
*/

.js-validate-robot {
    left: -5000px;
}





/*  
  ------------------------------------------------  
  -----      Additional classes styling      -----
  ------------------------------------------------
*/

.bg-header {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-cta {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}





/*  
  ---------------------------------------------------------------------------------------  
  -----      AOS (Animate on Scroll) library for right-to-left (RTL) languages      -----
  ---------------------------------------------------------------------------------------
*/

[dir="rtl"] [data-aos=fade-left] {
    transform: translate3d(-100px, 0, 0);
}
[dir="rtl"] [data-aos=fade-right] {
    transform: translate3d(100px, 0, 0); 
}

[dir="rtl"] [data-aos=fade-up-left] {
    transform: translate3d(-100px, 100px, 0); 
}
[dir="rtl"] [data-aos=fade-up-right] {
    transform: translate3d(100px, 100px, 0); 
}

[dir="rtl"] [data-aos=fade-down-left] {
    transform: translate3d(-100px,-100px,0); 
}
[dir="rtl"] [data-aos=fade-down-right] {
    transform: translate3d(100px, -100px, 0); 
}

[dir="rtl"] [data-aos=flip-right] {
    transform: perspective(2500px) rotateY(-100deg);
}
[dir="rtl"] [data-aos=flip-left] {
    transform: perspective(2500px) rotateY(100deg);
}
[dir="rtl"] [data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0);
}
[dir="rtl"] [data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

[dir="rtl"] [data-aos=slide-left] {
    transform: translate3d(-100%,0,0);
}
[dir="rtl"] [data-aos=slide-right] {
    transform: translate3d(100%,0,0);
}

[dir="rtl"] [data-aos=zoom-in-right] {
    transform: translate3d(100px,0,0) scale(.6);
}
[dir="rtl"] [data-aos=zoom-in-left] {
    transform: translate3d(-100px,0,0) scale(.6);
}

[dir="rtl"] [data-aos=zoom-out-right] {
    transform: translate3d(100px,0,0) scale(1.2);
}
[dir="rtl"] [data-aos=zoom-out-left] {
    transform: translate3d(-100px,0,0) scale(1.2);
}




