:root {
  --hue: 255;
  --shadow-color: hsla(var(--hue), 90%, 30%, .1);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  /* margin-inline: 1.5rem; */
}

.testimonial {
  padding: 20px;
  padding-block: 5rem 1rem;
  grid-template-columns: none;
  padding-top: 0;
}

.section__subtitle {

  margin-bottom: 2rem;
}

.main__testimonial {
  padding-top: 30px;
  overflow: hidden;
  max-width: 80vw;
}

h3.section__subtitle::after {
  content: "";
  width: 40px;
  height: 4px;
  background: var(--primary);
  position: relative;
  display: block;
  bottom: 1px;
}

h3.section__subtitle {
  padding-bottom: 10px;
}

/*=============== TESTIMONIAL ===============*/
.testimonial__container {
  position: relative;
}

.testimonial__swiper {
  padding-bottom: 2rem;
  max-width: 70vw;
}

.testimonial__card {
  background-color: var(--white-color);
  padding: 2rem 1.25rem 2.5rem 1.25rem;
  border-inline: 5px solid var(--first-color);
  box-shadow: 0 12px 24px var(--shadow-color);
  text-align: center;
  transition: background-color .4s;
  width: 80vw;
}

.testimonial__border {
  width: 100px;
  height: 100px;
  border: 6px solid var(--first-color);
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.testimonial__img {
  transition: filter .4s;
}

.testimonial__name {
  font-size: var(--h2-font-size);
  margin-bottom: .5rem;
}

.testimonial__card:hover .testimonial__img {
  filter: none
}


/* Swiper class */
.swipper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -1rem;
}

.swiper-pagination-bullet {
  background-color: var(--first-color-light);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}



/* for why work with me  */
.advantage {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  width: clamp(250px, 300px, 75vw);
  gap: 0.7rem;
}

.icon-advantage {
  display: inline-block;
  font-size: 3rem;
  color: var(--first-color);

  margin-bottom: 1rem;
}
.icon-advantage::after{
  content: '✓';
  display: block;
  font-size: large;
  position: relative;
  width: 20px;
  height: 4px;
  bottom: 4rem;
}
.advantage::before {
  content: '';
  display: block;
  position: relative;
  width: 20px;
  height: 4px;
  bottom: 3rem;
  filter: blur(2px);
  background-color: var(--primary);
  transform: translateY(0);
  transform:  translateX(0) translateY(0) rotate(0deg);
  transition: all 0.4s ease;
}

.advantage:hover::before {
  background-color: black;
  transform: translateY(10px);
  transform: translateX(10px) translateY(-20px) rotate(360deg);


 
}




.advantage .advantage-title {
  font-weight: 600;
}

.advantage .advantage-text {
  font-size: small;
}

.contract-note {
  padding-top: 3rem;
  font-size: medium;
}