@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import "reset.css";
/* RESULTS SECTION CSS START */

.results-section {
  position: relative;
  overflow-x: clip;
  background-image: var(--radial-gradient1);
  background-position: center;
}

.results-section::before {
  content: "";
  position: absolute;
  top: -7rem;
  left: 0;
  width: 50rem;
  height: 85rem;
  background-image: url("../images/results-bg-leaf-left.svg");
  background-repeat: no-repeat;
  z-index: 1;
}

.results-section::after {
  content: "";
  position: absolute;
  width: 104rem;
  height: 94.6rem;
  top: 9.5rem;
  right: -12rem;
  background-image: url("../images/results-bg-leaf-right.svg");
  background-repeat: no-repeat;
  opacity: 0.9;
}

.results-section .img-container {
  position: relative;
  padding-block-end: 26.25%;
}

.results-section .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-section .results-section-inner {
  position: relative;
  z-index: 1;
  padding-block: 9.26rem 10.26rem;
}

.results-section h2 {
  color: var(--color-purple-light);
  font-weight: 700;
  font-size: 4.8rem;
  margin-block-end: 4.56rem;
}

.results-section p {
  font-size: 2rem;
  color: var(--color-white);
}

.results-section h2 + p {
  margin-block-end: 5.3rem;
  line-height: 1.278;
}

.results-section .results-card-grid {
  display: flex;
  margin-inline: -1.625rem;
  margin-block-end: 7.16rem;
}

.results-section .results-card-wrapper {
  flex: 0 0 20%;
  max-width: 20%;
  padding-inline: 1.625rem;
}

.results-section .results-card-wrapper[data-aos] {
  transition-delay: calc(var(--i) * 150ms);
}

.results-section .results-card {
  padding: 2.94rem 2.5rem 2.5rem 2.3rem;
  border: solid 1px var(--color-light-pink);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 100%;
}

.results-section .results-card img {
  max-width: 4rem;
  object-fit: cover;
  margin-block-end: 2.2rem;
}

.results-section .results-card h3 {
  font-size: 2.4rem;
  color: var(--color-off-pink);
  margin-block-end: 1.08rem;
}

.results-section .results-card p {
  font-size: 2rem;
  color: var(--color-white);
}

.results-section h4 {
  font-size: 3rem;
  color: var(--color-purple-light);
  margin-block-end: 3.6rem;
}

.results-section h4 + p {
  position: relative;
  padding-block-end: 6.1rem;
  margin-block-end: 6.5rem;
  line-height: 1.3;
}

.results-section h4 + p::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px var(--color-light-pink);
}

.results-section .results-highlights-grid {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-inline-start: 8.47rem;
  padding-inline-end: 11.47rem;
  padding-block-end: 6.2rem;
}

.results-section .results-highlights-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: solid 1px var(--color-light-pink);
}

.results-section .results-highlights-grid .results-highlights-wrapper {
  flex: 0 0 43.7rem;
  max-width: 43.7rem;
  padding-inline: 2rem;
}

.results-section .results-highlights-grid .results-highlights-item h5 {
  font-size: 2.4rem;
  text-align: center;
  color: var(--color-purple-light);
  margin-block-end: 0.82rem;
}

.results-section .results-highlights-grid .results-highlights-item p {
  font-size: 1.6rem;
  text-align: center;
  color: var(--color-white);
}

/* RESULTS SECTION CSS END */

/* GET IN TOUCH SECTION CSS START */

.in-touch-section {
  padding: 9.6rem 0 7.9rem;
}

.in-touch-section h2 {
  color: var(--color-purple-light);
  font-weight: 700;
  font-size: 4.8rem;
  margin-block-end: 4.56rem;
}

.in-touch-section h2 + p,
.in-touch-section p + p {
  font-size: 2rem;
  color: var(--color-text);
}

.in-touch-section h2 + p {
  margin-block-end: 2.35rem;
}

.in-touch-section h2 + p + p {
  margin-block-end: 2.6rem;
}

.in-touch-section h2 + p + p + p {
  margin-block-end: 4rem;
}

.in-touch-section p span {
  font-weight: 700;
}

.in-touch-section .get-in-touch-grid .get-in-touch-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-light-pink);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.in-touch-section .get-in-touch-grid .get-in-touch-item-wrapper[data-aos] {
  transition-delay: calc(var(--i) * 150ms);
}

.in-touch-section .get-in-touch-item .head-container {
  flex: 1;
  position: relative;
  padding: 3rem 3.7rem;
  background-image: var(--linear-primary-white-gradient);
}

.in-touch-section .get-in-touch-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
}

.in-touch-section .get-in-touch-item p {
  flex: 1;
  font-size: 2rem;
  color: var(--color-text);
  min-height: 13.2rem;
  padding: 2.4rem 3.45rem;
}

.in-touch-section .get-in-touch-item .img-container {
  position: relative;
  padding-block-end: 83.799%;
}

.in-touch-section .get-in-touch-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in-touch-section .swiper {
  overflow: auto;
  overflow-x: clip;
  overflow-y: visible;
  margin-inline: -3.18rem;
}

.in-touch-section .swiper-slide {
  height: auto;
}

.in-touch-section .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 19px) !important;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 14px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 14px));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, #e0cce2);
  -webkit-tap-highlight-color: transparent;
}

.in-touch-section .swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, #b27fb7);
}

.in-touch-section .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, -60px);
}

.in-touch-section .swiper-pagination {
  width: 100%;
}

/* GET IN TOUCH SECTION CSS START */

/* CONTACT FORM SECTION START */

.contact-form-section {
  position: relative;
  padding: 8.9rem 0 9.4rem;
  background-color: var(--color-light-pink);
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: -6.5rem;
  right: 25.85rem;
  width: 15.55rem;
  height: 18rem;
  background-image: url("../images/flower3.svg");
  background-repeat: no-repeat;
  scale: 0.7;
  opacity: 0;
  transition: opacity 0.2s ease, scale 0.9s ease;
}

.contact-form-section.animate::before {
  scale: 1;
  opacity: 1;
}

.contact-form-section::after {
  content: "";
  position: absolute;
  top: 38.43rem;
  right: 16.82rem;
  width: 8.5rem;
  height: 8rem;
  background-image: url("../images/form-right-center-leaf.svg");
  background-repeat: no-repeat;
  scale: 0.7;
  opacity: 0;
  transition: opacity 0.2s ease, scale 0.9s ease;
  transition-delay: 0.3s;
}

.contact-form-section.animate::after {
  scale: 1;
  opacity: 1;
}

/* ANIMATION FLOWER */

.contact-form-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-block-end: 4.5rem;
}

.contact-form-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-form-section .form-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  padding-block-end: 5.2rem;
  margin-block-end: 3.3rem;
}

.contact-form-section .form-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: solid 1px var(--color-purple-light);
}

.contact-form-section .form-links a + p {
  flex: 0 0 16.7rem;
  max-width: 16.7rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-block-start: 0.5rem;
}

.contact-form-section .form-links p + p {
  flex: 0 0 33.9rem;
  max-width: 33.9rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-block-start: 0.5rem;
}

.contact-form-section .form-links a {
  position: relative;
  flex: 0 0 26.33%;
  max-width: 26.33%;
  padding: 1.94rem 2.95rem;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  background-image: linear-gradient(to left, #804ca0 0%, #37367b 70%);
  opacity: 1;
}

.contact-form-section .form-links a:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #804ca0 0%, #37367b 70%);
  z-index: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-form-section .form-links a:hover::before {
  opacity: 1;
}

.contact-form-section .form-links a img {
  position: relative;
  z-index: 1;
  flex: 0 0 2.8rem;
  max-width: 2.8rem;
  object-fit: cover;
  display: block;
}

.contact-form-section .form-links a p {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-left: 3rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
}

.contact-form-section .contact-form {
  position: relative;
  display: flex;
  row-gap: 3.13rem;
  margin-inline: -1.625rem;
  flex-wrap: wrap;
  padding-block-end: 2.57rem;
  margin-block-end: 4rem;
  margin-inline: -1.625rem;
}

.contact-form-section .contact-form .form-field {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding-inline: 1.625rem;
}

.contact-form-section .contact-form .form-field.full-width {
  flex: 0 0 100%;
  max-width: 100%;
  padding-inline: 1.625rem;
}

.contact-form-section .contact-form textarea {
  width: 100%;
  padding-block: 2.1rem;
  padding-inline: 2.3rem;
  background-color: var(--color-white);
  border: none;
  outline: none;
  font-size: 2rem;
  border-radius: 5px;
  resize: none;
  color: var(--color-black);
}

.contact-form-section .contact-form textarea::placeholder {
  font-size: 2rem;
  color: var(--color-gray);
}

.contact-form-section .contact-form textarea:focus::placeholder {
  opacity: 0;
}

.contact-form-section .contact-form .form-field input {
  width: 100%;
  padding-block: 2.1rem;
  padding-inline: 2.3rem;
  background-color: var(--color-white);
  border: none;
  outline: none;
  font-size: 2rem;
  border-radius: 5px;
  color: var(--color-black);
  text-overflow: ellipsis;
}

.contact-form-section .contact-form .form-field input::placeholder {
  font-size: 2rem;
  color: var(--color-gray);
}

.contact-form-section .contact-form .form-field input:focus::placeholder {
  opacity: 0;
}

.contact-form-section .contact-form .form-field.full-width.submit-button {
  flex: 0 0 100%;
  max-width: 100%;
  padding-inline: 1.625rem;
}

.contact-form-section .contact-form .form-field.full-width.submit-button .wpcf7-submit {
  width: auto;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: none;
  border-radius: 0;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  outline: none;
  padding: 1.35rem 4.54rem;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.25;
}

.contact-form-section .contact-form .form-field.full-width.submit-button .wpcf7-submit:hover {
  background-color: #343579;
}

.contact-form-section .contact-form .form-field.full-width.submit-button p {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.contact-form-section .contact-form .form-field .wpcf7-not-valid-tip {
  font-size: 1.7rem;
  padding-inline-start: 0.5rem;
  margin-block-start: 0.5rem;
}

.contact-form-section .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  font-size: 1.8rem;
  width: 100%;
  margin-block: 0;
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.4rem;
  margin-inline: 0;
}

.contact-form-section .wpcf7 form.sent .wpcf7-response-output {
  font-size: 1.8rem;
  width: 100%;
  margin-block: 0;
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.4rem;
  margin-inline: 0;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.contact-form-section .contact-form .form-field.full-width.submit-button .wpcf7-spinner {
  background-color: var(--color-primary);
}

.contact-form-section .contact-form::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3.25rem);
  height: 1px;
  border-bottom: solid 1px var(--color-purple-light);
}

.contact-form-section h3 {
  margin-block-end: 0.92rem;
}

.contact-form-section h3 + p {
  max-width: 113.8rem;
  font-size: 1.6rem;
  color: var(--color-text);
  line-height: 1.3;
}

/*==================================
Resuable Classes
===================================*/
.section-heading {
  font-size: 4.8rem;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: -2px;
  margin-block-end: 4.2rem;
}

.section-description {
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: -0.19px;
  max-width: 115rem;
  margin-block-end: 5.4rem;
}

/*==================================
Header
===================================*/
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: 999;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #b27fb7 0%, #8e51a8 100%);
  height: 0.2rem;
  width: 100%;
}

.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-branding {
  flex: 0 0 18.5rem;
  max-width: 18.5rem;
  transition: all 0.5s ease;
}

.site-header .site-branding a {
  display: inline-block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.site-header .site-branding a img {
  object-fit: cover;
}

.site-header .site-branding a img + img {
  display: none;
}

.site-header.scrolled .site-branding a img {
  display: none;
}

.site-header.scrolled .site-branding a img + img {
  display: block;
}

.site-header.scrolled .site-branding {
  flex: 0 0 15rem;
  max-width: 15rem;
}

.main-navigation {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.main-navigation .nav-items {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.main-navigation .nav-items .nav-link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  padding-block: 6.5rem;
  transition: all 0.3s ease;
}

.site-header.scrolled .main-navigation .nav-items .nav-link:not(.get-in-touch-btn) {
  padding-block: 3.5rem;
}

.main-navigation .nav-items .nav-link:hover {
  color: #343579;
}

.main-navigation .nav-items li {
  width: 100%;
}

.main-navigation .nav-items .nav-link.get-in-touch-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-block: 1.4rem;
  min-width: 15.2rem;
  text-align: center;
  letter-spacing: normal;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  transition: all 0.3s ease;
}

.main-navigation .nav-items .nav-link.get-in-touch-btn:hover {
  background-color: #343579;
}

.site-header .hamburger-menu {
  display: none;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  border: none;
  width: 3rem;
  padding: 0;
  background: none;
  cursor: pointer;
}

.site {
  padding-block-start: var(--padding-top);
}

.site.overlay {
  position: relative;
}

.site.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

/*==================================
Hero Section
===================================*/
.hero-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 51.09%;
  z-index: 1;
  overflow-x: clip;
}

.hero-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(84deg, rgba(52, 53, 121, 0.5) 0%, rgba(52, 53, 121, 0.1) 50%, rgba(52, 53, 121, 0.1) 70%, rgba(52, 53, 121, 0.8) 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -23rem;
  right: 0;
  background-image: url("../images/hero-flower.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 63rem;
  height: 96.5rem;
  mask-image: linear-gradient(to top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.25) 80%);
  mask-size: 100% 100%;
}

.hero-image-block {
  position: absolute;
  z-index: 100;
  bottom: -9rem;
  left: -17rem;
  width: 54.1vw;
  height: 48.7vw;
}

.hero-image-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0.2));
}

.hero-section .hero-image-block h1 {
  position: absolute;
  bottom: 8vw;
  right: 5vw;
  letter-spacing: -1.5px;
  font-size: 4vw;
  max-width: 24vw;
  margin: 0;
  width: 100%;
  font-weight: bold;
  color: var(--color-white);
}

/*==================================
Support Section
===================================*/
.support-section {
  position: relative;
  background-color: var(--color-light-pink);
  padding-block: 13rem;
  overflow-x: clip;
}

.support-section .support-wrapper > p:not(:last-of-type) {
  margin-block-end: 2.4rem;
}

.support-section .support-wrapper p {
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: -0.3px;
  max-width: 118rem;
  width: 100%;
}

.support-section .support-wrapper .support-headline {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.96px;
}

.support-section .support-wrapper .flower {
  position: absolute;
}

.support-section .support-wrapper .flower-image-1 {
  top: 15.5rem;
  left: 19.3rem;
  width: 8.5rem;
  height: 9.5rem;
  scale: 0.7;
  opacity: 0;
  transition: opacity 0.2s ease, scale 0.9s ease;
}
/* ANIMATION FLOWER */

.support-section .support-wrapper .flower-image-1.animate {
  opacity: 1;
  scale: 1;
}

.support-section .support-wrapper .flower-image-2 {
  right: 13.7rem;
  bottom: 12.3rem;
  height: 11.4rem;
  width: 11.2rem;
  scale: 0.7;
  opacity: 0;
  transition: opacity 0.2s ease, scale 0.9s ease;
}

.support-section .support-wrapper .flower-image-2.animate {
  opacity: 1;
  scale: 1;
}

.support-section .support-wrapper .flower-image-3 {
  right: 27.7rem;
  bottom: -9.8rem;
  width: 16.3rem;
  height: 18.5rem;
  scale: 0.7;
  opacity: 0;
  transition: opacity 0.2s ease, scale 0.9s ease;
}

.support-section .support-wrapper .flower-image-3.animate {
  opacity: 1;
  scale: 1;
}

/*==================================
Services Section
===================================*/

.services-section {
  padding-block: 9.2rem 12.3rem;
  overflow: hidden;
}

.services-section .service-cards-container {
  max-width: 130rem;
  padding-inline: 5rem;
  margin-inline: auto;
}

.services-section .service-cards-container .services-cards-wrapper {
  display: flex;
  margin-inline: -1.6rem;
  margin-block-end: 7.25rem;
}

.services-section .services-cards-wrapper .service-card {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  display: flex;
  flex-direction: column;
  padding-inline: 1.6rem;
}

.services-cards-wrapper .service-card .card-image-wrapper {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 105.821%;
}

.services-cards-wrapper .service-card .card-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-cards-wrapper .card-overlay .title-block {
  display: flex;
  color: var(--color-white);
  padding: 1.5rem 2rem 3.5rem;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 4.6rem;
  background: linear-gradient(to left, rgb(240, 230, 241) 0%, #b27fb7 55%);
  min-height: 13.7rem;
}

.services-cards-wrapper .service-card:first-child .card-overlay .title-block {
  background: linear-gradient(to left, rgb(240, 230, 241) 0%, #b27fb7 55%);
}

.services-cards-wrapper .service-card:nth-child(2) .card-overlay .title-block {
  background: linear-gradient(to left, rgb(240, 230, 241) 0%, #8e51a8 55%);
}

.services-cards-wrapper .service-card:last-child .card-overlay .title-block {
  background: linear-gradient(to left, rgb(240, 230, 241) 0%, #343579 55%);
}

.services-cards-wrapper .card-overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-block-start: -9rem;
  max-width: calc(100% - 3.8rem);
  width: 100%;
  margin-inline: auto;
  background-color: var(--color-light-pink);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
}

.services-cards-wrapper .card-overlay .title-block h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-block-end: 0.8rem;
}

.card-overlay .title-block .card-title p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
}

.card-overlay .support-points {
  flex: 1;
  padding-block-end: 3.5rem;
  margin: 0;
}

.card-overlay .support-points li {
  position: relative;
  display: flex;
  padding-inline: 2rem;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.6rem;
  padding-inline-start: 4.9rem;
  line-height: 1.25;
  color: var(--color-text);
}

.service-card:nth-child(1) .card-overlay .support-points li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 2.4rem;
  background-image: url("https://hdsv.wp.anasource.com/wp-content/themes/hdsv/assets/images/tick-pink-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.9rem;
  height: 1.4rem;
}

.service-card:nth-child(2) .card-overlay .support-points li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 2.4rem;
  background-image: url("https://hdsv.wp.anasource.com/wp-content/themes/hdsv/assets/images/tick-purple-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.9rem;
  height: 1.4rem;
}

.service-card:nth-child(3) .card-overlay .support-points li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 2.4rem;
  background-image: url("https://hdsv.wp.anasource.com/wp-content/themes/hdsv/assets/images/tick-blue-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.9rem;
  height: 1.4rem;
}

.card-overlay .support-points li:not(:last-of-type) {
  margin-block-end: 1.3rem;
}

.services-section .traffic-light-wrapper h4 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.85px;
  margin-block-end: 3.5rem;
  color: var(--color-primary);
}

.services-section .traffic-light-wrapper > p {
  font-size: 2rem;
  margin-block-end: 6.3rem;
  max-width: 95%;
  width: 100%;
  line-height: 1.28;
  letter-spacing: -0.23px;
}

.services-section .traffic-light-wrapper .color-pill {
  position: relative;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.84rem 3.5rem;
  background: linear-gradient(to left, #f9ecee 0%, #c84656 60%);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.services-section .traffic-light-wrapper .color-pill:first-child {
  background: linear-gradient(to left, #f9ecee 0%, #c84656 60%);
}

.services-section .traffic-light-wrapper .color-pill:nth-of-type(2) {
  background: linear-gradient(to left, #fbf5e8 0%, #d79b1e 60%);
}

.services-section .traffic-light-wrapper .color-pill:last-child {
  background: linear-gradient(to left, #f1f8ef 0%, #78be64 60%);
}

.services-section .traffic-light-wrapper .color-pill:not(:last-of-type) {
  margin-block-end: 7rem;
}

.traffic-light-wrapper .color-pill h5 {
  font-size: 3rem;
}

.traffic-light-wrapper .color-pill p {
  font-size: 2rem;
}

.traffic-light-wrapper .color-pill .pill-text {
  display: flex;
  align-items: center;
  max-width: 70%;
  width: 100%;
}

.traffic-light-wrapper .color-pill .pill-text .pill-title {
  max-width: 14rem;
  width: 100%;
  word-break: break-all;
}

.traffic-light-wrapper .color-pill img {
  position: absolute;
  right: 4.6rem;
  z-index: 1;
  mask-image: linear-gradient(to bottom left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0));
  height: 11.2rem;
  width: 11.2rem;
}

/*==================================
Values Section
===================================*/
.values-section {
  padding-block: 9.5rem 14.53rem;
  position: relative !important;
  background-color: var(--color-light-pink);
}

.values-section .swiper-pagination {
  display: none;
  bottom: 11% !important;
}

.values-section .swiper-pagination-bullet {
  background-color: #a86dae;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-tap-highlight-color: transparent;
}

.values-section .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.values-section .section-description {
  margin-block-end: 4.9rem;
}

.values-section .values-wrapper .value-item {
  display: flex;
  align-items: center;
  gap: 2.9rem;
}

.values-wrapper .value-item h3 {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: bold;
  margin-block-end: 0.82rem;
}

.values-wrapper .value-item p {
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/*==================================
Founder Section
===================================*/
.founder-section {
  position: relative;
  padding-block: 9.3rem 8.2rem;
  background: radial-gradient(circle 120rem at 100% 100%, #8e51a8 0%, #343579 100%);
  border-bottom: 1px solid #b27fb7;
}

.founder-section::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 10.6%;
  background-image: url("../images/flower1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 8.5rem;
  height: 9.5rem;
  scale: 0.7;
  opacity: 0;
  transition: opacity 0.2s ease, scale 0.9s ease;
}

.founder-section.animate::before {
  scale: 1;
  opacity: 1;
}

/* ANIMATION FLOWER */

.founder-section .founder-wrapper {
  position: relative;
  z-index: 50;
  display: flex;
  border: 1px solid var(--color-off-pink);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 4rem 5.6rem 4.3rem 4.8rem;
}

.founder-wrapper .left-block {
  flex: 0 0 70.42%;
  max-width: 70.42%;
  color: var(--color-off-pink);
}

.founder-wrapper .left-block h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-block-end: 2.6rem;
}

.founder-wrapper .left-block h3 {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: -1px;
  margin-block-end: 0.5rem;
}

.founder-wrapper .left-block h4 {
  font-size: 2rem;
  font-weight: 400;
  margin-block-end: 3rem;
}

.founder-wrapper .founder-info {
  display: flex;
  flex-direction: column;
  gap: 1.44rem;
}

.founder-wrapper .left-block p {
  color: var(--color-white);
  font-size: 1.6rem;
  letter-spacing: -0.3px;
}

.founder-wrapper .left-block p a {
  color: #d659fa;
}

.founder-wrapper .right-block .founder-circle {
  display: block;
  position: absolute;
  top: 5.4rem;
  right: 5.6rem;
  border-radius: 50%;
  width: 23.7rem;
  height: 23.7rem;
}

.founder-wrapper .right-block .founder-circle h5 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #d659fa;
  font-family: var(--font-opensans);
}

/*==================================
Foooter
===================================*/
.site-footer {
  position: relative;
  padding-block-end: 8.4rem;
  background: radial-gradient(circle 120rem at 100% 100%, #8e51a8 0%, #343579 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--color-primary);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../images/founder-leaf.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 67rem;
  height: 79.3rem;
  mask-image: linear-gradient(to bottom left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
  mask-size: 100% 100%;
}

.site-footer .footer-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 6.7rem;
  flex-wrap: wrap;
}

.site-footer .footer-wrapper .footer-left-content {
  flex: 0 0 54rem;
  max-width: 54rem;
  display: flex;
  gap: 9.45rem;
  align-items: flex-end;
}

.footer-wrapper .footer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-wrapper .footer-items p,
.footer-wrapper .footer-items a {
  font-size: 1.6rem;
  color: var(--color-white);
}

.footer-wrapper .footer-right-content {
  flex: 0 0 14rem;
  max-width: 14rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-wrapper .footer-right-content span {
  font-size: 1.6rem;
  color: var(--color-white);
}

.footer-wrapper .footer-right-content .backtotop-btn {
  display: flex;
  border: none;
  background-color: #b280b8;
  border-radius: 50%;
  min-width: 4.5rem;
  height: 4.5rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-wrapper .footer-right-content .backtotop-btn img {
  height: 1.6rem;
  width: auto;
}

.footer-wrapper .footer-right-content .backtotop-btn:hover {
  background-color: rgba(52, 53, 121, 0.8);
}

.not-found-section {
  padding-block: 6rem 8rem;
}

.not-found-main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-primary);
  min-height: calc(100vh - 55rem);
}

.not-found-main-wrapper h1 {
  font-size: 22rem;
  line-height: 1;
}

.not-found-main-wrapper .not-found-text {
  font-size: 5rem;
}

.not-found-main-wrapper .page-cant-found-text {
  padding-top: 1.5rem;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
}

.not-found-main-wrapper .nothing-found-text {
  font-size: 2rem;
  padding-top: 1.5rem;
}

.not-found-main-wrapper .go-home-btn {
  margin-top: 2.5rem;
  font-size: 1.6rem;
  border: 0.01rem solid var(--color-primary);
  padding-block: 1.5rem;
  padding-inline: 3rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.not-found-main-wrapper .go-home-btn:hover {
  background-color: #343579;
  color: white;
  border-color: #343579;
}

@media screen and (max-width: 575px) {
  .hero-section::before {
    background-image: linear-gradient(39deg, rgba(52, 53, 121, 0.8) 0%, rgba(52, 53, 121, 0.1) 30%, rgba(52, 53, 121, 0) 50%, rgba(52, 53, 121, 0.1) 70%, rgba(52, 53, 121, 0.5) 100%);
  }
  .not-found-main-wrapper h1 {
    font-size: 19rem;
  }

  .not-found-main-wrapper .not-found-text {
    font-size: 4rem;
  }

  .not-found-main-wrapper .page-cant-found-text {
    padding-top: 1.5rem;
    font-size: 2.7rem;
  }

  .not-found-main-wrapper .go-home-btn {
    padding-block: 1.2rem;
    padding-inline: 2.5rem;
  }

  .not-found-main-wrapper .nothing-found-text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 380px) {
  .not-found-main-wrapper h1 {
    font-size: 17rem;
  }

  .not-found-main-wrapper .not-found-text {
    font-size: 3rem;
  }

  .not-found-main-wrapper .page-cant-found-text {
    padding-top: 1.5rem;
    font-size: 2.5rem;
  }

  .values-section .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
  }

  .in-touch-section .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
  }
}

/*==================================
Media Queries for Responsive
===================================*/

@media screen and (min-width: 2560px) {
  .hero-image-block {
    max-height: 114rem;
    max-width: 128rem;
    left: -25rem;
  }

  .hero-section .hero-image-block h1 {
    bottom: 18rem;
    right: auto;
    left: 58rem;
    font-size: 8.96rem;
    max-width: 56.3rem;
  }
}

@media screen and (min-width: 1800px) {
  .hero-section {
    padding-bottom: 0;
    height: calc(100vh - 15.1rem);
  }
}

@media (max-width: 1750px) {
  .hero-section {
    background-position: right;
  }

  .hero-section::after {
    width: 60.7rem;
    bottom: -25rem;
  }

  .support-section .support-wrapper .flower-image-1 {
    left: -2.5rem;
  }

  .support-section .support-wrapper .flower-image-2 {
    right: -2rem;
  }
}

@media screen and (max-width: 1683px) {
  .results-section::before {
    top: -4rem;
    width: 40rem;
    height: 75rem;
    background-size: contain;
  }

  .results-section::after {
    width: 94rem;
    height: 88rem;
    background-size: contain;
  }

  .contact-form-section::before {
    right: 20rem;
  }

  .contact-form-section::after {
    right: 10rem;
  }
}

@media screen and (max-width: 1567px) {
  .results-section::before {
    top: -6rem;
    width: 35rem;
    height: 65rem;
  }

  .results-section::after {
    width: 88rem;
    height: 80rem;
    top: 5.5rem;
    right: -10rem;
  }

  .contact-form-section::before {
    right: 10rem;
  }

  .contact-form-section::after {
    right: 4rem;
  }
}
@media screen and (max-width: 1350px) {
  .results-section::before {
    top: -8rem;
    left: -7rem;
  }

  .results-section::after {
    top: 3.75rem;
    right: -17rem;
    width: 78rem;
    height: 70rem;
  }

  .contact-form-section::before {
    right: 5rem;
  }

  .contact-form-section::after {
    right: 0rem;
  }
}
@media screen and (max-width: 1290px) {
  .contact-form-section {
    overflow-x: clip;
  }
  .contact-form-section::before {
    right: -5rem;
  }

  .contact-form-section::after {
    top: 44rem;
    right: 4rem;
  }
  .contact-form-section .form-links {
    flex-wrap: wrap;
    gap: 3.5rem;
    padding-block-end: 7.7rem;
  }

  .contact-form-section .form-links a {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-form-section .form-links a + p {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-form-section .form-links p + p {
    flex: 0 0 40rem;
    max-width: 40rem;
  }
}
@media screen and (min-width: 1200px) {
  .in-touch-section .get-in-touch-grid {
    display: flex;
  }

  .in-touch-section .get-in-touch-grid .get-in-touch-item-wrapper {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding-inline: 3.18rem;
  }

  .in-touch-section .swiper-pagination {
    display: none;
  }
}

@media (max-width: 1200px) {
  .services-cards-wrapper .service-card .card-image-wrapper {
    padding-bottom: 55%;
  }

  .in-touch-section {
    padding-block-end: 10.2rem;
  }

  .contact-form-section .form-links {
    gap: 2.5rem;
  }

  .results-section .results-card-grid {
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .results-section .results-card-wrapper {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding-inline: 1.625rem;
  }

  .results-section .img-container {
    position: relative;
    padding-block-end: 36%;
  }

  .in-touch-section .swiper {
    margin-inline: 0;
  }

  .results-section .results-section-inner {
    padding-block-start: 12.2rem;
  }

  .results-section::before {
    width: 40rem;
    height: 67rem;
    top: -18rem;
  }

  .results-section::after {
    top: 3.75rem;
    right: -17rem;
    width: 70rem;
    height: 60rem;
  }
  .hero-section::after {
    width: 47.7rem;
    height: 81.3rem;
  }

  .services-section .service-cards-container .services-cards-wrapper {
    flex-wrap: wrap;
    row-gap: 2.7rem;
  }

  .services-section .services-cards-wrapper .service-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .services-cards-wrapper .card-overlay {
    max-width: 80%;
    width: 80%;
  }

  .services-cards-wrapper .service-card .card-image-wrapper img {
    object-position: center 24%;
  }

  .founder-wrapper .left-block {
    flex-basis: 65%;
    max-width: 65%;
  }

  .site-footer::after {
    bottom: -12rem;
    right: -15rem;
    background-size: contain;
  }

  .hero-image-block {
    bottom: -6rem;
    left: -15rem;
    width: 64.1vw;
    height: 57.75vw;
  }

  .hero-section .hero-image-block h1 {
    bottom: 9vw;
    right: 9vw;
    font-size: 4.8vw;
    max-width: 26vw;
  }
}
@media screen and (max-width: 1125px) {
  .results-section .results-section-inner {
    padding-block-start: 12rem;
  }

  .results-section::after {
    right: -13rem;
    width: 62rem;
    height: 56rem;
  }
}

@media screen and (max-width: 1043px) {
  .results-section .results-highlights-grid {
    flex-wrap: wrap;
    row-gap: 5.8rem;
  }

  .results-section .results-highlights-grid .results-highlights-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding-inline: 0;
  }
}
@media (min-width: 992px) {
  .values-section .values-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 7rem;
    row-gap: 6rem;
  }
}
@media (max-width: 991px) {
  .values-section {
    padding-bottom: 16.53rem;
  }

  .results-section::before {
    height: 60rem;
  }

  .results-section::after {
    right: -19rem;
    height: 49rem;
  }
  .hero-section {
    min-height: 550px;
  }

  .services-section .service-cards-container {
    padding-inline: 3rem;
  }

  .hero-image-block {
    bottom: -6vw;
    left: -26vw;
    width: 68.1vw;
    height: 61.25vw;
  }

  .hero-section .hero-image-block h1 {
    bottom: 11vw;
    right: auto;
    max-width: 25vw;
    left: 32vw;
  }

  .main-navigation .nav-items {
    gap: 4rem;
  }

  .hero-section {
    background-position: 80%;
  }

  .hero-section::after {
    width: 38.7rem;
    height: 73.3rem;
    bottom: -21rem;
  }

  .values-section .swiper-pagination {
    display: flex !important;
    justify-content: center;
    gap: 3rem;
    padding-inline: 2.5rem;
  }

  .support-section .support-wrapper .flower-image-3 {
    right: 13.7rem;
  }

  .site-footer::after {
    bottom: -15rem;
    right: -20rem;
    width: 57rem;
  }

  .values-section .swiper-wrapper {
    padding-block-start: 3rem;
  }
}

@media (max-width: 880px) {
  .results-section .results-card-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    padding-inline: 1.625rem;
  }

  .in-touch-section .get-in-touch-item .img-container {
    padding-block-end: 54%;
  }

  .in-touch-section .get-in-touch-item p {
    max-width: 54rem;
    min-height: auto;
    padding: 4rem;
  }
  .founder-wrapper .left-block {
    flex-basis: 100%;
    max-width: 100%;
  }

  .founder-wrapper .right-block .founder-circle {
    top: -6rem;
  }

  .site-footer .footer-wrapper .footer-left-content {
    flex: 0 0 50%;
    max-width: 50%;
    flex-wrap: wrap;
  }

  .footer-wrapper .footer-items {
    width: 100%;
  }

  .site-footer .footer-wrapper .footer-left-content {
    gap: 4.4rem;
  }

  .values-section .swiper-pagination {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-image-block {
    left: -30vw;
    width: 79.1vw;
    height: 71.1vw;
  }

  .hero-section .hero-image-block h1 {
    bottom: 12vw;
    right: auto;
    max-width: 30vw;
    left: 37vw;
    font-size: 5.8vw;
  }

  .results-section .results-highlights-grid {
    margin-inline: 0;
    padding-inline: 0;
  }

  .results-section .results-section-inner {
    padding-block: 6rem;
  }

  .results-section .results-card-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .results-section .results-card {
    display: flex;
    padding: 3.6rem 3.95rem;
    height: auto;
  }

  .results-section .results-card img {
    flex: 0 0 4.8rem;
    max-width: 4.8rem;
    height: 4.58rem;
    object-fit: contain;
    margin-block-end: 0;
  }

  .results-section .results-card div {
    padding-inline-start: 3.4rem;
    max-width: 44.2rem;
  }

  .results-section .results-card-grid {
    row-gap: 2.5rem;
    margin-inline: 0;
  }

  .in-touch-section {
    padding-block: 6rem;
  }

  .in-touch-section .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, -40px);
  }

  .contact-form-section {
    padding-block: 6rem;
  }

  .contact-form-section .contact-form {
    row-gap: 2.5rem;
    margin-inline: 0;
  }

  .results-section h4 {
    font-size: 2.6rem;
    padding-inline: 0;
  }
  .result-section h4 + p {
    padding-inline: 0;
  }

  .contact-form-section .contact-form .form-field.full-width {
    margin-bottom: 2.9rem;
    padding-inline: 0;
  }

  .contact-form-section .contact-form .form-field.full-width.submit-button {
    position: relative;
    padding-block-start: 4rem;
  }

  .contact-form-section .contact-form .form-field.full-width.submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: solid 1px var(--color-purple-light);
  }

  .contact-form-section .contact-form .form-field.full-width.submit-button .wpcf7-submit {
    margin-top: 0;
  }

  .contact-form-section .contact-form .form-field {
    flex: 0 0 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .results-section .img-container {
    position: relative;
    padding-block-end: 56%;
  }

  .contact-form-section .contact-form::after {
    display: none;
  }

  .in-touch-section .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 15px) !important;
  }

  .results-section::before {
    top: -17rem;
    height: 67rem;
  }

  .results-section::after {
    right: -13rem;
    height: 56rem;
  }

  .contact-form-section::after {
    top: 45rem;
  }

  .results-section h2,
  .in-touch-section h2 {
    font-size: 4.4rem;
  }

  .contact-form-section .contact-form {
    padding-block-end: 0;
    margin-block-end: 0;
  }

  .contact-form-section .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .contact-form-section .wpcf7 form.sent .wpcf7-response-output {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .hero-section::after {
    height: 77.3rem;
    bottom: -14rem;
    right: -3rem;
  }

  .site-header .site-branding {
    flex: 0 0 16.5rem;
    max-width: 16.5rem;
  }

  .site-header.scrolled .main-navigation .nav-items .nav-link:not(.get-in-touch-btn) {
    padding-block: 0;
  }

  .site-header .hamburger-menu {
    display: initial;
    -webkit-tap-highlight-color: transparent;
  }

  .site-branding {
    padding-block: 2rem;
  }

  .site-header.scrolled .site-branding {
    padding-block: 1rem;
    flex: 0 0 14.5rem;
    max-width: 14.5rem;
  }

  .main-navigation .nav-items {
    position: absolute;
    top: var(--padding-top);
    left: 0;
    width: 100%;
    gap: 5rem;
    flex-direction: column;
    align-items: flex-start;
    z-index: 99;
    background-color: var(--color-white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }

  .main-navigation .nav-items li:first-child {
    padding-top: 3.5rem;
  }

  .main-navigation .nav-items li:last-child {
    padding-bottom: 3.5rem;
  }

  .main-navigation .nav-items .nav-link {
    padding-block: initial;
    width: 100%;
    padding-inline: 5rem;
    position: relative;
  }

  .main-navigation .nav-items li:not(:last-of-type) .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    width: calc(100% - 5rem);
    transform: translateX(-50%);
    border-bottom: 1px solid var(--color-primary);
  }

  .main-navigation .nav-items li:nth-child(3) .nav-link::after {
    display: none;
  }

  .main-navigation .nav-items .nav-link.get-in-touch-btn {
    text-align: left;
    width: calc(100% - 5rem);
    padding-inline: 2.5rem;
    margin-inline: 2.5rem;
    margin-block-start: -2rem;
  }

  .support-section {
    padding-block: 6rem;
  }

  .services-section {
    padding-block: 6rem;
  }

  .support-section .support-wrapper .flower-image-2 {
    right: -3.5rem;
  }

  .section-heading {
    font-size: 4.4rem;
    margin-block-end: 3rem;
  }

  .support-section .support-wrapper .support-headline {
    font-size: 2.6rem;
  }

  .support-section .support-wrapper p {
    font-size: 2rem;
  }

  .traffic-light-wrapper .color-pill .pill-text {
    flex-wrap: wrap;
  }

  .services-section .service-cards-container {
    padding-inline: initial;
  }

  .services-cards-wrapper .service-card .card-image-wrapper {
    padding-bottom: 87%;
  }

  .services-cards-wrapper .card-overlay .title-block {
    min-height: auto;
    padding: 2rem 3rem;
  }

  .services-section .traffic-light-wrapper h4 {
    margin-block-end: 2rem;
  }

  .services-section .services-cards-wrapper .service-card {
    flex-basis: 100%;
    max-width: 100%;
    padding-inline: initial;
  }

  .services-cards-wrapper .card-overlay {
    max-width: calc(100% - 8.2rem);
  }

  .services-section .traffic-light-wrapper .color-pill:not(:last-of-type) {
    margin-block-end: 2.5rem;
  }

  .traffic-light-wrapper .color-pill .pill-text .pill-title {
    max-width: 12rem;
  }

  .traffic-light-wrapper .color-pill p {
    max-width: 37rem;
  }

  .traffic-light-wrapper .color-pill img {
    height: 13.2rem;
    width: 13.2rem;
  }

  .founder-section {
    padding-block: 9rem;
  }

  .founder-wrapper .left-block h2 {
    max-width: 25%;
  }

  .founder-section .founder-wrapper {
    padding: 3rem;
  }

  .founder-wrapper .right-block .founder-circle {
    top: -4.5rem;
  }

  .support-section .support-wrapper .flower-image-1 {
    left: -3rem;
  }

  .founder-section::before {
    left: -2rem;
    top: 2rem;
    width: 7.5rem;
    background-size: contain;
  }

  .support-section .support-wrapper .flower-image-1 {
    height: 8.5rem;
  }

  .support-section .support-wrapper .flower-image-3 {
    right: 5rem;
  }

  .services-section .traffic-light-wrapper h4 {
    font-size: 2.4rem;
  }

  .site-footer {
    padding-block-end: 6rem;
  }

  .site-footer .footer-wrapper {
    padding-top: 6rem;
  }

  .footer-wrapper .footer-right-content .backtotop-btn img {
    height: 1.4rem;
    width: auto;
  }
}
@media screen and (max-width: 650px) {
  .results-section::before {
    top: -15rem;
    height: 60rem;
  }

  .results-section::after {
    right: -18rem;
    height: 50rem;
  }

  .contact-form-section::after {
    top: 42rem;
  }
  .hero-section {
    background-position: 68%;
  }

  .hero-section::after {
    width: 35.7rem;
    height: 65.3rem;
  }

  .services-section .traffic-light-wrapper .color-pill {
    padding: 1.5rem 3rem;
  }

  .traffic-light-wrapper .color-pill img {
    right: 2.5rem;
  }

  .section-heading {
    font-size: 4rem;
  }

  .traffic-light-wrapper .color-pill p {
    font-size: 1.8rem;
    max-width: 30rem;
  }

  .traffic-light-wrapper .color-pill img {
    height: 12.2rem;
    width: 12.2rem;
  }

  .traffic-light-wrapper .color-pill h5 {
    font-size: 2.6rem;
  }

  .site-footer::after {
    bottom: -20rem;
    right: -17rem;
    width: 50rem;
  }
  .results-section h2,
  .in-touch-section h2 {
    font-size: 4rem;
  }

  .results-section h2 + p,
  .result-section h4 + p,
  .results-section .results-card p,
  .in-touch-section h2 + p,
  .in-touch-section h2 + p + p,
  .in-touch-section h2 + p + p + p,
  .in-touch-section .get-in-touch-item p,
  .contact-form-section .form-links a + p,
  .contact-form-section .form-links p + p,
  .results-section .results-card p,
  .contact-form-section .contact-form .form-field input,
  .contact-form-section .contact-form textarea,
  .contact-form-section h3,
  .contact-form-section .contact-form textarea::placeholder,
  .contact-form-section .contact-form .form-field input::placeholder {
    font-size: 1.8rem;
  }

  .result-section h4 {
    font-size: 2.6rem;
  }

  .results-section .results-highlights-grid .results-highlights-item h5,
  .in-touch-section .get-in-touch-item h3,
  .contact-form-section h2,
  .contact-form-section .form-links a p,
  .results-section .results-card h3,
  .results-section h4 + p {
    font-size: 2rem;
  }

  .results-section .results-highlights-grid .results-highlights-item p,
  .contact-form-section h3 + p {
    font-size: 1.4rem;
  }

  .results-section .results-card img {
    max-width: 4rem;
    height: 4.28rem;
  }

  .contact-form-section .contact-form .form-field.full-width.submit-button .wpcf7-submit {
    font-size: 1.6rem;
    padding: 1rem 3.54rem;
  }

  .contact-form-section .contact-form .form-field .wpcf7-not-valid-tip {
    font-size: 1.5rem;
  }

  .contact-form-section .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 1.6rem;
  }

  .founder-wrapper .left-block {
    padding-block-start: 20rem;
  }

  .founder-wrapper .left-block h2 {
    max-width: 100%;
    font-size: 2.6rem;
  }

  .founder-wrapper .right-block .founder-circle {
    left: 50%;
    transform: translateX(-50%);
  }

  .services-section .traffic-light-wrapper > p {
    font-size: 1.8rem;
  }

  .traffic-light-wrapper .color-pill h5 {
    font-size: 2.6rem;
  }

  .traffic-light-wrapper .color-pill p {
    font-size: 1.8rem;
  }

  .founder-section .founder-wrapper {
    padding: 2rem;
  }

  .values-wrapper .value-item h3 {
    font-size: 2rem;
  }

  .values-wrapper .value-item p {
    font-size: 1.4rem;
  }
}

@media (max-width: 550px) {
  .hero-image-block {
    left: -20rem;
    width: 51.8rem;
    height: 46rem;
  }

  .hero-section .hero-image-block h1 {
    bottom: 7rem;
    max-width: 24rem;
    left: 24rem;
    font-size: 4rem;
  }
  .results-section::before {
    top: -7rem;
    height: 46rem;
    width: 25rem;
  }

  .results-section::after {
    right: -27rem;
    height: 40rem;
  }
  .site-footer::after {
    bottom: -25rem;
    right: -20rem;
    width: 47rem;
  }

  .site-footer .footer-wrapper {
    gap: 4.4rem;
  }

  .site-footer .footer-wrapper .footer-left-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .site-footer .footer-wrapper .footer-right-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .support-section .support-wrapper .flower-image-3 {
    height: 15rem;
    bottom: -7.8rem;
  }
}

@media (max-width: 480px) {
  .founder-wrapper .left-block {
    padding-block-start: 18rem;
  }

  .results-section .results-card {
    display: block;
    padding: 4.2rem 4rem;
  }

  .results-section .results-card img {
    margin-block-end: 2rem;
  }

  .results-section .results-card div {
    padding-inline-start: 0;
    max-width: 100%;
  }

  .contact-form-section .form-links a {
    padding-inline: 1.5rem;
  }

  .contact-form-section .form-links a p {
    padding-inline-start: 1.5rem;
  }

  .contact-form-section .form-links p + p {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .in-touch-section .get-in-touch-item p {
    padding: 2rem;
  }

  .in-touch-section .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 13px) !important;
  }
  .results-section .img-container {
    padding-block-end: 70%;
  }
  .hero-section {
    background-position: 64%;
  }

  .hero-section::after {
    width: 32.7rem;
    height: 59.3rem;
    right: -6rem;
  }

  .founder-wrapper .right-block .founder-circle {
    height: 20rem;
    width: 20rem;
  }

  .services-section .traffic-light-wrapper .color-pill {
    padding: 1.5rem 1.5rem;
  }

  .traffic-light-wrapper .color-pill img {
    width: 8rem;
    right: 1.3rem;
  }
  .values-section .swiper-pagination {
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 450px) {
  .results-section::after {
    right: -32rem;
    height: 35rem;
  }
}

@media screen and (max-width: 400px) {
  .results-section::before {
    width: 22rem;
  }

  .results-section::after {
    right: -37rem;
    height: 29rem;
    top: 7rem;
  }

  .contact-form-section::after {
    top: 44rem;
  }
}

@media (max-width: 375px) {
  .hero-image-block {
    left: -18rem;
    width: 47.3rem;
    height: 42.6rem;
  }

  .hero-section .hero-image-block h1 {
    bottom: 7rem;
    max-width: 22rem;
    left: 22rem;
    font-size: 3.7rem;
  }

  .results-section::after {
    right: -38rem;
    height: 27rem;
    top: 10rem;
  }

  .results-section .img-container {
    padding-block-end: 84%;
  }
  .founder-wrapper .right-block .founder-circle {
    height: 17rem;
    width: 17rem;
  }

  .hero-section::after {
    width: 30.7rem;
    height: 63.3rem;
    right: -2rem;
  }
}
