/*
Theme Name: Ayooka
Theme URI: http://intside.com/themes/ayooka/
Author: Intside
Author URI: http://intside.com/
Description: ayooka is a startup theme for Advanced user who want to build professional WordPress theme based on Bootstrap
Version: 0.1
Tags: blue, black, white, light, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: ayooka
*/


/**
 * Table of Contents:
 *
 * 1.0 - Basic Structure
 * 2.0 - Media Queries
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

html :where(.wp-block) {
  max-width: 100% !important;
}

.site-content>*:not(div) {
  margin-left: auto;
  margin-right: auto;
}

html {
  font-size: 16px;
}

:root {

  --color-primary: #BE0316;
  --color-secondary: #1A1A2E;
  --btn-secondary: rgba(255, 255, 255, 0.051);
  --color-green: #34d399;
  --color-text: #94A3B8;

  /* --gradient-to: rgb(190, 6, 21 / 0); */

  --color-bg: rgba(255, 255, 255, 0.102);

}

::-webkit-scrollbar {
  width: .5rem;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

body {
  background-color: var(--color-secondary);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  padding-right: 0 !important;
  color: #FFF;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.875rem;
  line-height: 36px;
}

h3 {
  font-size: 1.5rem;
}

h4,
.h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

h5,
.h5 {
  font-size: 1.125rem;
}

h4,
.h4,
h5,
.h5 {
  line-height: 1.75rem;
}

h6,
.h6 {
  font-size: 1rem;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h5,
.h5,
h6,
.h6 {
  font-weight: 600;
}


p {
  font-size: 0.875rem;
  line-height: 20px;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.custom-desc p {
  font-size: 1.125rem;
  line-height: 28px;
  color: #CBD5E1;
}

.custom-desc p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 20px;
}

a,
a:hover {
  text-decoration: none;
  color: var(--color-text);
}

span {
  display: inline-block;
}

.btn,
.btn-small {
  font-weight: 600;
  border: 1px solid;
  border-radius: 12px;
  /* box-shadow: rgb(190, 6, 21 / .25); */
  color: #FFF;
}

.btn {
  padding: 1rem 2rem;
  line-height: 24px;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-small {
  padding: .625rem 1.25rem;
  line-height: 18px;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFF;
}

.btn-primary:hover,
.btn-primary:focus,
:not(.btn-check)+.btn:active.btn-primary,
.btn:first-child:active.btn-primary,
.btn:focus-visible.btn-primary {
  background-color: #E0071A;
  border-color: #E0071A;
  color: #FFF;
}

.btn-secondary {
  background-color: var(--btn-secondary);
  border-color: var(--color-bg);
  color: #FFF;
}

.btn-secondary:hover,
.btn-secondary:focus,
:not(.btn-check)+.btn:active.btn-secondary,
.btn:first-child:active.btn-secondary,
.btn:focus-visible.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-testiary,
.btn-testiary:hover,
.btn-testiary:focus,
:not(.btn-check)+.btn:active.btn-testiary,
.btn:first-child:active.btn-testiary,
.btn:focus-visible.btn-testiary {
  font-size: 1rem;
  background-color: #FFF;
  border-color: #FFF;
  color: var(--color-primary);
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.logo {
  max-width: 9.375rem;
  max-height: 2.5rem;
  width: auto;
  height: auto;
}

.navbar-toggler {
  background-color: #FFF;
  border-color: #FFF;
  color: #FFF;
}

.navbar-toggler:focus {
  box-shadow: none;
}

nav .navbar-nav .menu-item a {
  display: block;
  margin: 0 0 0.875rem;
  color: var(--color-secondary);
}

nav .navbar-nav .menu-item-has-children {
  position: relative;
  margin-right: 0;
}

nav .navbar-nav .menu-item-has-children>a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(assets/images/down.svg) no-repeat;
  background-position: center;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease-in-out;
}

nav .navbar-nav .menu-item .open {
  margin: 0 !important;
}

nav .navbar-nav .menu-item-has-children>a[aria-expanded=true]::before {
  transform: rotate(-180deg);
}

nav .navbar-nav .menu-item .sub-menu .menu-item a {
  font-size: 0.875rem;
  padding: 0.5rem;
  margin: 0;
  color: var(--color-secondary);
}

nav .navbar-nav .menu-item a:hover,
nav .navbar-nav .current-menu-ancestor a,
nav .navbar-nav .menu-item a[aria-current=page] {
  color: var(--color-primary);
}

nav .navbar-nav .menu-item .sub-menu .menu-item a:hover,
nav .navbar-nav .menu-item .sub-menu .menu-item a[aria-current=page] {
  color: var(--color-primary);
}


.the-lead {
  background-image: linear-gradient(135deg, rgb(26, 26, 46), rgb(61, 2, 8), rgb(107, 4, 14));
}


.welcome {
  overflow: hidden;
  min-height: 680px;
  height: calc(-80px + 100vh);
}

.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-color: var(--color-bg);
  padding: .25rem .75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-bg);
  border-radius: 100px;
}

.badge-dot {
  background-color: var(--color-green);
  width: .5rem;
  height: .5rem;
  border-radius: 100px;
  animation: pulse-animate 2s cubic-bezier(0.4, 0, 0.6, 1) 0s infinite;
}

@keyframes pulse-animate {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.badge-text {
  font-size: .75rem;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .025em;
  text-transform: uppercase;
  color: #D1FAE5;
}

.content-title h1,
.content-title h2,
.content-title h3,
.content-title h4,
.content-title h5,
.content-title h6 {
  line-height: 1;
  margin-bottom: 0;
}

.content-title h1 strong,
.content-title h2 strong,
.content-title h3 strong,
.content-title h4 strong,
.content-title h5 strong,
.content-title h6 strong {
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #BE0316, #FB923C);
  color: transparent;
}


.content-desc p:last-child {
  margin-bottom: 0;
}

.content-link li:first-child {
  margin-bottom: .5rem;
}

.content-link li a {
  display: block;
}

.features li {
  display: block;
  margin: 0 0 .5rem;
}

.features li span {
  font-size: .875rem;
  margin-left: .5rem;
  color: var(--color-text);
}


.dashboard {
  background-color: hsla(240, 28%, 14%, 0.6);
  height: 400px;
  border: 1px solid var(--color-bg);
  border-radius: 16px;
  overflow: hidden;
}

.dashboard-bar {
  display: flex;
  align-items: center;
  height: 3rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--color-bg);
}

.dashboard-bar .dots span {
  display: inline-block;
  width: .75rem;
  height: .75rem;
  margin-right: .5rem;
  border-radius: 100px;
  opacity: .6;
}

.dashboard-bar .dots span:nth-child(1) {
  background: rgba(239, 68, 68, 0.502);
}

.dashboard-bar .dots span:nth-child(2) {
  background: rgba(245, 158, 11, 0.502);
}

.dashboard-bar .dots span:nth-child(3) {
  background: rgba(16, 185, 129, 0.502);
}

.fake-input {
  background: var(--color-bg);
  width: 8rem;
  height: .5rem;
  margin-left: .5rem;
  border-radius: 100px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.dashboard-header .title .label {
  font-size: .75rem;
  color: var(--color-text);
}

.dashboard-header .title .value {
  display: flex;
  align-items: end;
  gap: .5rem;
  margin-top: .25rem;
}

.dashboard-header .title .value span {
  font-weight: 700;
  line-height: 32px;
}

.dashboard-header .title .value span:first-child {
  font-size: 1.5rem;
}

.dashboard-header .title .value span:last-child {
  font-size: .875rem;
  color: var(--color-green);
}

.dashboard-header .filters {
  display: flex;
  gap: .5rem;
}

.dashboard-header .filters span {
  font-size: 14px;
  padding: .25rem .5rem;
  border-radius: 4px;
}

.dashboard-header .filters span:first-child {
  background-color: rgba(190, 6, 21, 0.2);
  color: #FF6B6B;
}

.dashboard-header .filters span:last-child {
  background-color: rgba(239, 68, 68, 0.2);
  color: #FCA5A5;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 8rem;
}

.dashboard-chart span {
  flex: 1;
  background: linear-gradient(to top, rgba(190, 6, 21, .25), #BE0615);
  width: 2.75rem;
  border-radius: 2px 2px 0 0;
}

.dashboard-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-right .stat {
  background: var(--btn-secondary);
  padding: .75rem;
  border: 1px solid var(--btn-secondary);
  border-radius: 8px;
}

.dashboard-right .stat span {
  display: block;
  font-size: .75rem;
  margin-bottom: .25rem;
  color: var(--color-text);
}

.dashboard-right .stat .bar {
  overflow: hidden;
  background: rgb(51 65 85);
  height: .5rem;
  border-radius: 100px;
}

.dashboard-right .stat .bar i {
  display: block;
  height: 100%;
}

.dashboard-right .stat:nth-child(1) .bar i {
  background-color: #BE0615;
}

.dashboard-right .stat:nth-child(2) .bar i {
  background-color: #10B981;
}

.dashboard-right .stat:nth-child(3) .bar i {
  background-color: #F59E0B;
}


.welcard {
  background: rgba(30, 41, 59, 0.8);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  color: #FFF;
}

.donors {
  width: 12rem;
}

.icon-box {
  background: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  color: var(--color-green);
}

.donors .label {
  font-size: .75rem;
  color: var(--color-text);
}

.donors .value {
  font-size: .875rem;
  font-weight: 700;
  line-height: 20px;
  color: #FFF;
}

.avatars {
  display: flex;
}

.avatars span {
  background: #475569;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: -8px;
  border: 2px solid #1E293B;
  border-radius: 100px;
}

.avatars span:first-child {
  margin-left: 0;
}

.donors .trend {
  font-size: .75rem;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-green);
}


.prediction {
  width: 14rem;
}

.icon-box-red {
  background: rgba(190, 6, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  color: #FF6B6B;
}


.prediction .label {
  font-size: .75rem;
  line-height: 16px;
  color: var(--color-text);
}

.prediction .value {
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
  color: #FFF;
}


.progress-bar {
  overflow: hidden;
  background: #334155;
  width: 100%;
  height: 4px;
  margin-top: .75rem;
  border-radius: 100px;
}

.progress-fill {
  background: #BE0615;
  width: 85%;
  height: 100%;
}

.confidence {
  font-size: 10px;
  text-align: right;
  color: #94a3b8;
}


.card-item {
  width: auto;
  height: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 16px;
  transform: none;
  transition: all cubic-bezier(.4, 0, .2, 1) .3s;
}


.item-header {
  background-color: rgba(var(--color-opacity), 0.102);
  text-align: center;
  border-radius: 12px;
}

.item-header img {
  max-width: 1.5rem;
  min-height: 1.5rem;
  width: auto;
  height: auto;
}

.item-text {
  margin-bottom: 0;
}


.card-figure {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 40px;
  color: #FFF;
}


.item-img {
  width: 2rem;
  height: 2rem;
  line-height: 32px;
  margin-bottom: 1rem;
}

.item-img img {
  max-width: 2rem;
  max-height: 2rem;
  width: auto;
  height: auto;
}


.modules .card-item {
  background-color: var(--btn-secondary);
  padding: 1.5rem;
  border-color: var(--color-bg);
}

.modules .card-item:hover {
  background-color: var(--color-bg);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.modules .card-item .item-header {
  width: 3rem;
  height: 3rem;
  line-height: 48px;
  margin-bottom: 1rem;
}

.modules .card-item:hover .item-header {
  transform: scale(1.1);
}

.modules .card-item:hover .item-text {
  color: rgb(203, 213, 225);
}


.measures {
  position: relative;
}

.measures .badge-custom {
  background-color: rgba(190, 6, 21, 0.1);
  border: 1px solid rgba(190, 6, 21, 0.2);
}

.measures .badge-text {
  font-size: .875rem;
  text-transform: capitalize;
  color: #FF6B6B;
}


.action-item {
  position: relative;
  padding-left: 2.5rem;
}

.action-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.action-item li:last-child {
  font-size: 0.875rem;
  color: var(--color-text);
}

.action-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(assets/images/green-check.svg), rgba(16, 185, 129, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100px;
  width: 1.5rem;
  height: 1.5rem;
}

.stat-content .card-item {
  background-color: var(--color-bg);
  padding: 2rem;
  border-color: var(--color-bg);
}

.stat-content .col-md-6:not(:first-child) {
  padding-top: 1.5rem;
}


.measures-circle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
  background-color: rgba(190, 6, 21, 0.2);
  filter: blur(120px);
  width: 600px;
  height: 600px;
  border-radius: 1000px;
}

.measures .card-item {
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s;
}

.measures .card-item:hover,
.progress-modal:hover {
  transform: scale(1.02);
}

.progress-modal {
  background-image: linear-gradient(to right, rgba(190, 6, 21, 0.2), rgba(234, 88, 12, 0.2));
  padding: 2rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.1);
  transform: none;
  transition: all cubic-bezier(.4, 0, .2, 1) .3s;
  transition-duration: .15s;
}

.progress-value p {
  margin-bottom: 0;
  color: var(--color-green);
}

.mea-progress-wrapper {
  background: rgba(51, 65, 85, 0.5);
  width: 100%;
  height: 8px;
  border-radius: 100px;
  overflow: hidden;
}

.mea-progress {
  background: linear-gradient(to right, #BE0615, #F97316);
  width: 0;
  height: 100%;
  border-radius: inherit;
  transition: width 1.2s ease-out;
}

.card-container {
  position: relative;
}


.int-circle {
  background: linear-gradient(to bottom right, #BE0615, #EA580c);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  margin: auto;
  border-radius: 100px;
  box-shadow: 0 0 50px rgba(190, 6, 21, .5);
  color: #FFF;
}

.int-circle div {
  font-weight: 700;
  font-size: 1.25rem;
}

.int-content .card-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #1E293B;
  backdrop-filter: blur(6px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.int-content .card-item:last-child {
  margin-bottom: 1rem;
}

.int-content .card-item .item-header {
  width: 2.25rem;
  height: 2.25rem;
  line-height: 36px;
}

.int-content .card-item .item-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #FFF;
}

.int-content .card-item .item-text {
  font-size: .75rem;
}

.sect {
  overflow: hidden;
} 

.content-img img {
  border-radius: 16px;
}

.sect .card-item {
  background-color: rgba(255, 255, 255, 0.051);
  padding: 2rem;
  border-color: rgba(255, 255, 255, 0.102);
}

.sect .card-item ul li {
  line-height: 1.8;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: #CBD5E1;
}

.sect .card-item ul li:last-child {
  margin-bottom: 0rem;
}

.sect .card-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  background-color: var(--color-primary);
  width: .375rem;
  height: .375rem;
  border-radius: 100px;
}

.card-item.avantage {
  position: relative;
  background-color: rgba(190, 6, 21, 0.1);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  border-color: #be061533;
}

.card-item.avantage::before {
  content: "";
  position: absolute;
  left: 3%;
  background-image: url(assets/images/red-check.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.card-item.avantage .custom-desc p {
  font-size: 1rem;
}

.request-contain {
  background-image: linear-gradient(to bottom right, #BE0615, #8a0410);
  position: relative;
  padding: 3rem;
  border-radius: 24px;
}

.request-contain::before {
  content: '';
  position: absolute;
}

.request-contain .custom-desc p {
  color: #FEE2E2;
}


.logo-footer img {
  max-width: 7.625rem;
  max-height: 2rem;
  width: auto;
  height: auto;
}


footer section:first-child {
  border-top: 1px solid var(--color-bg);
}

footer section:first-child a:hover {
  color: var(--color-primary);
}

footer section:first-child ul li:not(:last-child) {
  margin-bottom: .5rem;
}

footer section:last-child .copyright {
  text-align: center;
  border-top: 1px solid var(--color-bg);
}

footer section:last-child .copyright a,
footer section:last-child .copyright p {
  color: #64748B;
}


/**
 * 2.0 Media Queries
 * ----------------------------------------------------------------------------
 */

/* WordPress Media Queries */
@media (max-width: 600.98px) {}

@media (min-width: 601px) and (max-width: 782.98px) {}

@media (min-width: 783px) {}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .site-content>*:not(div) {
    max-width: calc(100% - 24px);
  }
}

@media (min-width: 576px) {
  .site-content>*:not(div) {
    max-width: 540px;
  }

  .features li {
    display: inline-block;
  }

  .features li:first-child {
    margin-left: 0;
  }

  .features li {
    margin: 0 .5rem;
  }

}

/* Small devices (landscape phones, 576px, up to 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 576px) and (max-width: 991.98px) {}

@media (min-width: 768px) {
  .site-content>*:not(div) {
    max-width: 720px;
  }

  .content-link li {
    display: inline-block;
    margin: 0;
  }

  .content-link li:last-child {
    margin-left: 1rem;
  }

  .content-link li a {
    display: inline-block;
  }

  .stat-content .col-md-6:not(:first-child) {
    padding-top: 3rem;
  }


}

/* Medium devices (tablets, 768px, up to 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {}

@media (max-width: 991.98px) {}

@media (min-width: 992px) {
  .site-content>*:not(div) {
    max-width: 960px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3,
  .h3 {
    font-size: 1.875rem;
  }

  .int-content .card-content {
    position: absolute;
    margin-bottom: 0;
  }

  .int-content .card-content:nth-of-type(1) {
    top: 10%;
    left: 10%;
  }

  .int-content .card-content:nth-of-type(2) {
    top: 10%;
    right: 10%;
  }

  .int-content .card-content:nth-of-type(3) {
    bottom: 10%;
    left: 10%;
  }

  .int-content .card-content:nth-of-type(4) {
    bottom: 10%;
    right: 10%;
  }

  .integrations {
    position: relative;
    z-index: 2;
  }

  .integrations::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url(assets/images/cross.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: 0;
    width: 100%;
    height: 38%;
  }



}

/* Large devices (desktops, 992px, up to 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (max-width: 1199.98px) {}

@media (min-width: 1200px) {
  .site-content>*:not(div) {
    max-width: 1140px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3,
  .h3 {
    font-size: 2.25rem;
  }

  .navbar {
    padding: 1.5rem 0;
  }

  .navbar.scrolled {
    position: fixed;
    z-index: 100;
    background-color: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(16px);
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-bg);
  }

  .menu-navigation-menu-container {
    margin-left: auto;
  }

  nav .navbar-nav .menu-item {
    padding: 0.625rem 1rem;
  }

  nav .navbar-nav .menu-item a {
    margin: 0;
    color: #CBD5E1;
  }

  nav .navbar-nav .menu-item .sub-menu .menu-item {
    padding: 0;
    color: #CBD5E1;
  }

  nav .navbar-nav .menu-item-has-children>a::before {
    background-image: url(assets/images/down-line.svg);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  nav .navbar-nav .menu-item-has-children:hover>a::before {
    transform: translateY(-50%) rotate(-180deg);
  }

  nav .navbar-nav .menu-item .sub-menu {
    overflow: hidden;
    background-color: #FFF;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 12.5rem;
    border-radius: 8px;
    box-shadow: 1px 1px 6px rgba(34, 51, 102, 0.1);
  }

  nav .navbar-nav .menu-item-has-children:hover>.sub-menu {
    display: block;
  }

  nav .navbar-nav .menu-item a:hover,
  nav .navbar-nav .current-menu-ancestor a,
  nav .navbar-nav .menu-item a[aria-current=page] {
    color: #FFF;
  }


  nav .navbar-nav .menu-item .sub-menu .menu-item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(50%);
    z-index: 10;
  }

  .donors {
    position: absolute;
    top: 10%;
    right: 0;
    z-index: 20;
  }

  .prediction {
    position: absolute;
    bottom: 15%;
    left: 0;
    z-index: 20;
  }

  .sect-img-left::before,
  .sect-img-right::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    width: 720px;
    height: 480px;
    border-radius: 16px;
  }

  .sect-img-left::before {
    left: -14rem;
  }

  .sect-img-right::before {
    right: -14rem;
  }

}

@media (min-width: 1300px) {

  .features li {
    margin: 0 1rem;
  }

}


/* X-Large devices (large desktops, 1200px, up to 1400px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .site-content>*:not(div) {
    max-width: 1320px;
  }
}