.header-top {
  background-image: linear-gradient(90deg,#258837,#39b54a);
}

.dashboard__slider-heading {
  color: white;
}

.dashboard__slider-floatee {
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  width: 20.9375rem;
  opacity: .15;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.header-top__toggle {
  display: block;
  width: 100%;
  text-align: left;
  color: white;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 600;
  padding: 25px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top__toggle:hover,
.header-top__toggle:focus {
  cursor: pointer;
}

.header-top__toggle-arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  background-color: transparent;
  transform: translateY(-5px) rotate(135deg);
  transition: all 0.5s ease-out;
}
.header-top__toggle.active .header-top__toggle-arrow {
  transform: translateY(0) rotate(-45deg);
}

.dashboard__slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  transition: 0.5s all ease;
  background-image: linear-gradient(90deg,#258837,#39b54a);
}


.dashboard__slider .grid-x {
  position: relative;
  justify-content: center;
  margin-top: 30px;
}


.dashboard__slider-content {
  display: flex;
}
@media (max-width: 768px) {
  .dashboard__slider-content {
    flex-direction: column;
  }
}

.dashboard__slider-img {
  flex: 0 255px;
  padding-right: 30px;
}

.dashboard__slider-content-wrap {
  flex: 1;
}

.dashboard__slider-title {
	margin: 0 0 15px 0;
	color: white;
	font-size: 18px;
  font-weight: 700;
}

.dashboard__slider-text {
	margin: 0 0 25px 0;
}

.dashboard__slider-text p {
	color: white;
	font-size: 16px;
	line-height: 24px;
}

.button.dashboard__slider-button {
  background: white;
  color: #1f702e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  padding: 12px 25px;
  transition: all 0.5s ease-out;
}

.button.dashboard__slider-button:hover,
.button.dashboard__slider-button:focus {
  background-color: #ddd;
  color: #383838;
}

.dashboard__slider-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  transform: translateY(-50%);
  transition: all 0.5s ease-out;
  cursor: pointer;
}
.dashboard__slider-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #1f702e;
  font-size: 14px;
  font-family: 'Font Awesome 5 Pro';
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out;
}
.dashboard__slider-arrow.prev {
  left: 0;
}
.dashboard__slider-arrow.prev:before {
  content: '\f060';
}
.dashboard__slider-arrow.next {
  right: 0;
}
.dashboard__slider-arrow.next:before {
  content: '\f061';
}
