/* 
Theme Name: Strivo Main
Theme URI: https://strivo.co
Description: Official Theme for Strivo Main
Author: Patt Naguit
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.golden {
	color: #F6C72F;
}

.incorrect {
	color: #D32E14;
}

.text-dev {
  position: relative;
  display: inline-flex;
  font-style: normal;
}

.decor {
  position: absolute;
  pointer-events: none;
}

.decor02 {
  bottom: 20px;
  left: -12px;
}

.decor03 {
  right: -60px;
}

.decor04 {
  right: -50px;
  top: 0;
}

.decor05 {
  right: -120px;
  top: 0;
}

.decor07 {
  top: -12px;
  left: -30px;
  transform: scale(1.3);
  z-index: -1;
}

.decor08 {
  top: 0px;
  transform: scale(1.3);
  right: -90px;
}

.decor09 {
  bottom: 0px;
}

.decor10 {
  transform: scale(1.5);
    top: 5px;
    left: 40px;
}

.decor11 {
  top: 23px;
}

.decor12 {
	transform: scale(1.3);
	top: 20px;
    left: 10px;
}

.decor13 {
  bottom: -10px;
}

.home-marquee-swiper {
  width: 100%;
  overflow: hidden;
}

.home-marquee-wrapper {
  display: flex;
  transition-timing-function: linear !important;
}

.home-marquee-slide {
  width: auto !important;
  flex-shrink: 0;
}

.home-marquee-slide img {
  height: 50px;
  width: auto;
}

/*-----------------------------------*/

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
	display: flex;
	align-items: center;
	text-align: left;
	gap: 30px;
}

.step-number {
	flex-shrink: 0;
	background-color: #F5F5F6;
	color: #909092;
	font-size: 48px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
  	font-weight: 600;
	font-family: "Urbanist", Sans-serif;
	position: relative;
	animation: lightUp 10s linear infinite;
}

.step:not(:last-child) .step-number::after {
    content: "";
    border: 1px solid #D0D0D1;
    height: 100%;
    position: absolute;
    right: 58px;
    top: 121px;
}

.step:nth-child(1) .step-number {
  animation-delay: 0s;
}
.step:nth-child(2) .step-number {
  animation-delay: 2.5s;
}
.step:nth-child(3) .step-number {
  animation-delay: 5s;
}
.step:nth-child(4) .step-number {
  animation-delay: 7.5s;
}


/*
.step:hover .step-number {
  background-color: #ffcc00;
  color: #000;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.step:hover .step-number span {
  background: #020920;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
*/

@keyframes lightUp {
  0%, 24.99% {
    background-color: #ffcc00;
    color: #000;
  }
  25%, 100% {
    background-color: #F5F5F6;
    color: #909092;
  }
}

.step-content h3,
.step-content h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.step-content p {
  font-size: 18px;
  color: #6C6C6E;
}


@media only screen and (max-width: 600px) {
  .step-number {
    margin: 0px auto 30px;
  }

  .step {
    display: block;
  }
}


@media only screen and (max-width: 600px) {
  .step {
    display: block;
  }
}


/*_____________________________________________*/


/* Container holds the content with a fixed max-height and hidden overflow */
.unfold-container {
  position: relative;
  max-height: 680px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* The fade overlay gives a fading effect at the bottom */
.unfold-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}

/* Expanded state removes the height restriction */
.unfold-container.expanded {
  max-height: none;
}

/* Basic styling for the show more/less button */
.unfold-btn {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  background: #262626;
  padding: 15px;
  border-radius: 60px;
}

.unfold-btn:hover {
  background: #061751;
}

.unfold-btn-container {
  text-align: center;
  margin-top: 30px;
}