:root {
  --primary-color: #39b549;
  --bg-grey: #f5f7f6;
  --bg-black: #201f1d;
  --bg-white: #ffffff;
  --text-color: #212529;
  --text-color-white: #ffffff;
  --font-color: #676767;
  --heading-color: #343a40;
  --border-color: #39b549;
}
.blockquote_section{
    padding: 0px 100px;
}
blockquote{
    font-family: 'Pinyon Script', cursive;
   
	color: #262223;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    font-size: 2.5rem; /* Default font size, adjust as needed */
    line-height: 1.6;
    padding: 1rem;
}


cite {
	line-height: 3;
	text-align: left;
}
/* Initial state for the text */
.animated-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

/* Visible state when animation is triggered */
.animated-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.services .card {
  position: relative;
  z-index: 1;
  border-top: 3px solid var(--primary-color);
  margin-bottom: 35px;
  
}

.services i {
  color: var(--primary-color);
}

.services .card > .anim-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: height 0.3s ease;
}

.services .card:hover .anim-layer {
  height: 100%;
}

.services .card:hover h3,.services .card:hover i,.services .card:hover p {
  position: relative;
  z-index: 1;
  color: var(--text-color-white);
}

.services .card:hover img{
 filter: brightness(0) invert(1); /* Makes the image white */
  background-color: rgba(0, 0, 0, 0.1); /* Optional: Add a background tint */
}

.services .card i {
  background-color: var(--bg-white);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.services .card:hover i {
  color: var(--primary-color);
}

.services .card:hover h3 {
  color: var(--text-color-white);
}
.title_div{ height: 50px;}
.title_desc{ height:50px;;}
.process,
.process::before,
.process::after {
  box-sizing: border-box;
}
.process {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
.process__item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  position: relative;
  padding: 15px 35px;
  transition: 0.4s ease-in-out;
}
.process__item:hover {
  background: #f2f2f2;
}
.process__item:hover .process__number {
  transform: translateY(5px);
  color: #39b549;
}
.process__number {
  font-size: 90px;
  -webkit-text-stroke: 1px #39b549;
  display: block;
  color: transparent;
  /*font-family: "Roboto Condensed";*/
  font-weight: 700;
  transition: 0.4s ease-in-out;
  margin-top: 30px;
}
.process__title {
  display: block;
  /*font-family: "Roboto Condensed";*/
  font-weight: 50;
  letter-spacing: 1.5px;
  font-size: 30px;
  color: #39b549;
  text-transform: uppercase;
  margin-top: 30px;
  line-height: 1.5;
}
.process__subtitle {
  display: block;
  /*font-family: "Josefin Slab";*/
  font-size: 18;
  color: #262223;
  margin-top: 30px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .process {
    display: inline-block;
  }
  .process__item {
    width: 49%;
    display: inline-block;
  }
 
}
@media (min-width: 1200px) {
  .process {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .process__item {
    width: 100%;
  }
  .process__item:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 75%;
    background: #8c8c8c;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 0.2;
    transform: translateY(-50%);
  }
}

  @media screen and (max-width: 487px) {
   
        .title_div{ height:auto;}
        .title_desc{ height:auto;}
        
        .marquee div{
            padding: 6px;
        }
        .marquee {
            height: 9vw;
        }
       
   }
 .Box {
            position: relative;
            width: 100%;
            height: 550px;
            transform-style: preserve-3d;
            perspective: 800px;
            transition: 1s;
            margin: 15px 0;
        }
        .FlipBox {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: 1s;
            transform-style: preserve-3d;
            box-shadow: 0 0 10px 2px rgba(0, 0, 0, .3);
        }
        .Front,
        .Back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            transition: .5s;
            backface-visibility: hidden;
        }
        .Front img {
            width: 100%;
            height: 100%;
        }
        .Back {
            background-color: #081a25;
            color: #fff;
            display: table;
            transform: rotateY(180deg);
        }
        .Back div {
            display: table-cell;
            vertical-align: middle;
            text-align: center;
            padding: 20px;
        }
        .Back h3 {
            font-size: 22px;
            color:#fff !important;
        }
        .Back p {
            font-size: 17px;
            margin-top: 10px;
            color:#fff !important;
        }
        .Back a {
            color: #fff;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            width: 120px;
            height: 45px;
            background-color: #fff;
            color: #222;
            line-height: 45px;
            box-shadow: 0 0 10px rgba(0, 0, 0, .5);
            transition: .5s;
            font-weight: bold;
        }
        .Back a:hover {
            background-color: #081a25;
            color: #fff;
        }
        .Box:hover .FlipBox {
            transform: rotateY(180deg);
        }
        .Box:hover {
            transform: translateY(-10px);
            z-index: 2;
        }

/* Styles specific to the ID 'why-kapiva' */


#why-kapiva .number {
    color: #39b549 ; /* Orange color for numbers */
    font-size: 4rem;
    margin-bottom:50px;
    margin-top:10px;
}


blockquote:before {
  content: '“';
  font-size: 3rem; /* Larger than text */
  color: #262223; /* Slightly different color for styling */
  position: absolute;
  top: 0; /* Adjust to align with your text */
  left: -1rem; /* Adjust spacing */
}

blockquote:after {
  content: '”';
  font-size: 3rem; /* Larger than text */
  color: #262223; /* Slightly different color for styling */
  position: absolute;
  bottom: 0; /* Adjust to align with your text */
  right: -1rem; /* Adjust spacing */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blockquote_section {
      padding: 0px 30px;
    }
  blockquote {
    font-size: 1.8rem;
    padding: 0.5rem;
  }

  blockquote:before, 
  blockquote:after {
    font-size: 1.2rem;
  }
  .padding_10{
      padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .blockquote_section {
      padding: 0px 30px;
    }
  blockquote {
    font-size: 1.5rem;
    padding: 0.6rem;
  }

  blockquote:before, 
  blockquote:after {
    font-size: 1.5rem;
  }
  
  .padding_10{
      padding: 10px 0 !important;
  }
}

