@import url("https://use.fontawesome.com/releases/v7.2.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap");
:root {
  --aip-blue: #3D8CC5;
  --aip-orange: #EC6C2B;
  --aip-dark-text: #555555;
  --aip-light-text: #888888;
  --aip-darkblue: #2E71A2;
  --aip-paleblue: #F6FBFF;
  --aip-paleorange: rgba(236, 108, 43, 0.03);
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
  line-height: 110%;
}

h1 {
  font-family: "Literata", sans-serif;
  font-size: 56px;
  font-weight: 500;
}

h2 {
  font-family: "Literata", sans-serif;
  font-size: 40px;
  font-weight: 500;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  background: white;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}
body .modal {
  position: fixed;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
}
body .modal .modal-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  background: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
body .modal .modal-container button {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 100px;
  color: #555;
}
body .modal .modal-container button:hover {
  cursor: pointer;
}
body .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-sizing: border-box;
  transition: all 0.3s ease;
  margin-left: -100%;
}
body .mobile-menu .mobile-menu-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px;
  bordeR: none;
  border-bottom: #ddd solid 1px;
}
body .mobile-menu .mobile-menu-header img {
  width: 200px;
  height: auto;
}
body .mobile-menu .mobile-menu-header button {
  width: 40px;
  height: 40px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  color: var(--aip-dark-text);
}
body .mobile-menu ul {
  padding: 20px;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body .mobile-menu ul li a {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: var(--aip-dark-text);
  text-decoration: none;
  font-weight: 600;
}
body .mobile-menu ul li .partner-btn-mobile {
  display: inline-block;
  padding: 12px 14px;
  border: var(--aip-blue) solid 2px;
  border-radius: 100px;
  color: var(--aip-blue);
}
body header {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  z-index: 20;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
body header .header-container {
  position: relative;
  width: auto;
  max-width: 1100px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body header .header-container .site-logo {
  padding: 0;
  margin: 0;
}
body header .header-container .site-logo img {
  height: 48px;
}
body header .header-container .site-nav {
  padding: 0;
  margin: 0;
}
body header .header-container .site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  align-items: center;
}
body header .header-container .site-nav ul li a {
  text-decoration: none;
  color: var(--aip-light-text);
  font-size: 15px;
  font-weight: 500;
}
body header .header-container .site-nav ul li a:hover {
  color: var(--aip-dark-text);
}
body header .header-container .site-nav ul li a.partner-btn {
  padding: 8px 14px;
  border: var(--aip-blue) solid 2px;
  border-radius: 100px;
  color: var(--aip-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}
body header .header-container .site-nav ul li a.partner-btn:hover {
  color: white;
  background: var(--aip-blue);
}
body header .header-container .site-nav ul li a.active {
  color: #333;
  pointer-events: none;
}
body header .header-container .site-nav-mobile {
  display: none;
}
body header .header-container .site-nav-mobile button {
  width: 40px;
  height: 40px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  color: var(--aip-blue);
}
body main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}
body main .hero-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(98deg, #6DBEF9 0%, rgba(46, 113, 162, 0) 50%), linear-gradient(278deg, #164669 0%, rgba(46, 113, 162, 0) 50%), #2E71A2;
  padding: 80px 20px;
  padding-bottom: 0;
  margin: 0 auto;
}
body main .hero-section .hero-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  gap: 0;
}
body main .hero-section .hero-container .hero-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  color: white;
  width: 45%;
  box-sizing: border-box;
}
body main .hero-section .hero-container .hero-content h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
}
body main .hero-section .hero-container .hero-content .hero-content-upper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .hero-section .hero-container .hero-content .hero-content-lower {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .hero-section .hero-container .hero-content .hero-cta {
  padding: 20px 30px;
  background: var(--aip-orange);
  color: white;
  border: none;
  outline: none;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}
body main .hero-section .hero-container .hero-content .hero-cta:hover {
  cursor: pointer;
  background-color: #e0672a;
}
body main .hero-section .hero-container .hero-content p.cta-caption {
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 150%;
}
body main .hero-section .hero-container .hero-img {
  flex: 1;
  padding: 0;
  margin: 0;
  margin-top: 0;
  margin-left: -50px;
  box-sizing: border-box;
  display: flex;
}
body main .hero-section .hero-container .hero-img img {
  width: 110%;
}
body main .benefits-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: var(--aip-paleblue);
}
body main .benefits-section .benefits-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  padding: 80px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body main .benefits-section .benefits-container .benefits-upper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main .benefits-section .benefits-container .benefits-upper h2 {
  color: var(--aip-blue);
  margin: 0;
  margin-bottom: 20px;
}
body main .benefits-section .benefits-container .benefits-upper h3 {
  color: var(--aip-dark-text);
  font-size: 24px;
}
body main .benefits-section .benefits-container .benefits-upper p {
  color: var(--aip-light-text);
  font-size: 16px;
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-weight: 400;
}
body main .benefits-section .benefits-container .benefits-lower {
  display: flex;
  flex-direction: column;
  gap: 50px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block {
  flex: 1;
  box-sizing: border-box;
  padding: 30px;
  background: white;
  border: rgba(61, 140, 197, 0.3) solid 1px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 4px 4px 0px rgba(61, 140, 197, 0.1);
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-icon i {
  font-size: 36px;
  color: var(--aip-blue);
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-details h4 {
  color: var(--aip-dark-text);
  font-weight: 700;
  font-size: 18px;
}
body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-details p {
  font-size: 15px;
  color: var(--aip-light-text);
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-weight: normal;
}
body main .benefits-section .benefits-container .benefits-lower .blue-cta {
  position: relative;
  padding: 20px 30px;
  background: var(--aip-blue);
  color: white;
  border: none;
  outline: none;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: center;
}
body main .benefits-section .benefits-container .benefits-lower .blue-cta:hover {
  cursor: pointer;
  background-color: #387eb1;
  transform: scale(1.05);
}
body main .services-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: white;
}
body main .services-section .services-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
body main .services-section .services-container h2 {
  color: var(--aip-orange);
}
body main .services-section .services-container .services-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 20px;
}
body main .services-section .services-container .services-blocks .service-block {
  background: white;
  border: #ddd solid 1px;
  border-radius: 20px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}
body main .services-section .services-container .services-blocks .service-block .service-img {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
body main .services-section .services-container .services-blocks .service-block {
  /* .service-img::before {
      content: "";
      position: absolute;
      inset: 0;
      background: inherit;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      transition: transform 0.3s ease;
      transform-origin: center center;
  } */
}
body main .services-section .services-container .services-blocks .service-block .service-details {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .services-section .services-container .services-blocks .service-block .service-details h3 {
  font-size: 16px;
  color: var(--aip-dark-text);
  line-height: 130%;
}
body main .services-section .services-container .services-blocks .service-block .service-details button.readmore-btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--aip-blue);
  padding: 0;
  border: none;
  border-radius: 100px;
  background: none;
  font-weight: 700;
  display: flex;
  gap: 5px;
  align-self: flex-start;
  align-items: center;
  line-height: 100%;
  transition: all 0.3s ease;
  text-transform: lowercase;
}
body main .services-section .services-container .services-blocks .service-block .service-details button.viewall-btn {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  border: var(--aip-orange) solid 2px;
  color: var(--aip-orange);
  background: none;
  transition: all 0.3s ease;
}
body main .services-section .services-container .services-blocks .service-block .service-details button.readmore-btn:hover {
  cursor: pointer;
  opacity: 0.8;
}
body main .services-section .services-container .services-blocks .service-block .service-details button.viewall-btn:hover {
  cursor: pointer;
  background-color: var(--aip-orange);
  color: white;
}
body main .services-section .services-container .services-blocks .service-block:hover {
  cursor: pointer;
}
body main .services-section .services-container .services-blocks .service-block:hover button.viewall-btn {
  background-color: var(--aip-orange);
  color: white;
}
body main .services-section .services-container .services-blocks {
  /* .service-block:hover .service-img::before {
      transform: scale(1.2);
  } */
}
body main .services-section .services-container .services-blocks .service-all {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .services-section .services-container .services-blocks .service-all .service-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main .services-section .services-container .services-blocks .service-all .service-details button {
  display: flex;
  align-self: center;
}
body main .services-section .services-container .services-blocks .service-all .service-details h3 {
  color: var(--aip-orange);
}
body main .about-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: linear-gradient(224deg, #6DBEF9 0%, rgba(46, 113, 162, 0) 50.02%), linear-gradient(44deg, #164669 0.01%, rgba(46, 113, 162, 0) 49.98%), #2E71A2;
}
body main .about-section .about-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body main .about-section .about-container h2 {
  color: white;
  text-align: center;
}
body main .about-section .about-container button.readmore-btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: white;
  padding: 10px 14px;
  border: white solid 2px;
  border-radius: 100px;
  background: none;
  font-weight: 700;
  display: flex;
  gap: 5px;
  align-self: flex-start;
  align-items: center;
  line-height: 100%;
  transition: all 0.3s ease;
}
body main .about-section .about-container button.readmore-btn:hover {
  cursor: pointer;
  background-color: white;
  color: var(--aip-blue);
}
body main .about-section .about-container .about-upper {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  gap: 80px;
  align-items: center;
}
body main .about-section .about-container .about-upper .about-upper-img {
  position: relative;
  width: 25%;
  height: 300px;
}
body main .about-section .about-container .about-upper .about-upper-img .about-img-bg {
  z-index: 1;
  transform: rotate(3deg);
  background: var(--aip-orange);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
}
body main .about-section .about-container .about-upper .about-upper-img .about-img-front {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  transform: rotate(-3deg);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: white solid 5px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  background-image: url("../img/caregiver.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body main .about-section .about-container .about-upper .about-upper-img .about-img-front:hover {
  cursor: pointer;
  transform: rotate(-6deg) scale(1.05);
}
body main .about-section .about-container .about-upper-content, body main .about-section .about-container .about-lower-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body main .about-section .about-container .about-lower {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  gap: 80px;
  align-items: center;
}
body main .about-section .about-container .about-lower .about-lower-img {
  position: relative;
  width: 25%;
  height: 300px;
}
body main .about-section .about-container .about-lower .about-lower-img .about-img-bg {
  z-index: 1;
  transform: rotate(-3deg);
  background: var(--aip-orange);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
}
body main .about-section .about-container .about-lower .about-lower-img .about-img-front {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  transform: rotate(3deg);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: white solid 5px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  background-image: url("../img/founder.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body main .about-section .about-container .about-lower .about-lower-img .about-img-front:hover {
  cursor: pointer;
  transform: rotate(6deg) scale(1.05);
}
body main .about-section .about-container .text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .about-section .about-container .text-block h4 {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 18px;
}
body main .about-section .about-container .text-block p {
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-size: 16px;
  font-weight: normal;
}
body main .testimonials-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: white;
}
body main .testimonials-section .testimonials-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  padding: 80px 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body main .testimonials-section .testimonials-container h2 {
  color: var(--aip-blue);
  text-align: center;
}
body main .testimonials-section .testimonials-container .testimonials-carousel {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  box-sizing: border-box;
  padding: 10px;
  transition: transform 0.3s ease;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scroll-snap-type: x mandatory;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track::-webkit-scrollbar {
  display: none;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .arrow-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  border: none;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .arrow-prev {
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
}
body main .testimonials-section .testimonials-container .testimonials-carousel .arrow-next {
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
}
body main .testimonials-section .testimonials-container .testimonials-carousel .arrow-btn:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonial-block {
  flex: 0 0 calc((100% - 39px) / 3);
  background: white;
  padding: 30px;
  border: none;
  box-shadow: inset 0 0 0 1px #ddd, 4px 4px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  box-sizing: border-box;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonial-block p.testi {
  font-size: 16px;
  color: var(--aip-light-text);
  line-height: 150%;
  padding: 0;
  margin: 0;
  font-style: italic;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonial-block p.testi i {
  float: left;
  font-size: 28px;
  color: var(--aip-orange);
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonial-block .author-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonial-block .author-details .author-name {
  color: var(--aip-dark-text);
}
body main .testimonials-section .testimonials-container .testimonials-carousel .testimonial-block .author-details span {
  color: var(--aip-light-text);
  font-size: 14px;
}
body main .testimonials-section .testimonials-container .orange-cta-stroke {
  padding: 20px 30px;
  background: transparent;
  color: var(--aip-orange);
  border: var(--aip-orange) solid 2px;
  outline: none;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: center;
}
body main .testimonials-section .testimonials-container .orange-cta-stroke:hover {
  cursor: pointer;
  color: white;
  background: var(--aip-orange);
}
body main .ctas-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: var(--aip-orange);
}
body main .ctas-section .ctas-container {
  position: relative;
  width: auto;
  max-width: 1100px;
  padding: 80px 20px;
  padding-top: 100px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  gap: 20px;
}
body main .ctas-section .ctas-container .aip-support {
  position: relative;
  width: 55%;
  box-sizing: border-box;
  padding: 30px;
  padding-left: 250px;
  background: white;
  border: none;
  border-radius: 20px;
}
body main .ctas-section .ctas-container .aip-support .floating-img {
  position: absolute;
  width: 210px;
  left: 20px;
  bottom: 0;
}
body main .ctas-section .ctas-container .aip-support .aip-support-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body main .ctas-section .ctas-container .aip-support .aip-support-content h3 {
  font-size: 28px;
  color: var(--aip-blue);
  line-height: 120%;
  font-family: "Literata", sans-serif;
  font-weight: 600;
}
body main .ctas-section .ctas-container .aip-support .aip-support-content button {
  border: var(--aip-blue) solid 2px;
  background: var(--aip-blue);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: white;
  border-radius: 100px;
  padding: 15px 30px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
body main .ctas-section .ctas-container .aip-support .aip-support-content button:hover {
  cursor: pointer;
  background: transparent;
  color: var(--aip-blue);
}
body main .ctas-section .ctas-container .aip-support .aip-support-content p {
  font-size: 12px;
  color: var(--aip-light-text);
  line-height: 150%;
  padding: 0;
  margin: 0;
}
body main .ctas-section .ctas-container .aip-partner {
  position: relative;
  flex: 1;
  display: flex;
  border: none;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 30px;
  padding-right: 190px;
  background: rgba(185, 68, 8, 0.3);
}
body main .ctas-section .ctas-container .aip-partner .floating-img {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 190px;
}
body main .ctas-section .ctas-container .aip-partner .aip-partner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body main .ctas-section .ctas-container .aip-partner .aip-partner-content h3 {
  font-size: 28px;
  color: white;
  line-height: 120%;
  font-family: "Literata", sans-serif;
  font-weight: 600;
}
body main .ctas-section .ctas-container .aip-partner .aip-partner-content button {
  border: white solid 2px;
  background: white;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--aip-orange);
  border-radius: 100px;
  padding: 15px 30px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
body main .ctas-section .ctas-container .aip-partner .aip-partner-content button:hover {
  cursor: pointer;
  background: transparent;
  color: white;
}
body main .ctas-section .ctas-container .aip-partner .aip-partner-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 150%;
  padding: 0;
  margin: 0;
}
body main .ctas-section-blue {
  background: var(--aip-blue);
}
body main .ctas-section-blue .ctas-container .aip-support .aip-support-content h3 {
  color: var(--aip-orange);
}
body main .ctas-section-blue .ctas-container .aip-support .aip-support-content button {
  background: var(--aip-orange);
  border: var(--aip-orange) solid 2px;
}
body main .ctas-section-blue .ctas-container .aip-support .aip-support-content button:hover {
  color: var(--aip-orange);
}
body main .ctas-section-blue .ctas-container .aip-partner {
  background: rgba(33, 77, 128, 0.3);
}
body main .ctas-section-blue .ctas-container .aip-partner .aip-partner-content button {
  color: var(--aip-blue);
}
body main .page-section {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
body main .page-section .page-container {
  position: relative;
  padding: 80px 20px;
  margin: 0 auto;
  width: auto;
  max-width: 1000px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body main .page-section .page-container h2.contact-heading {
  color: white;
  font-size: 40px;
}
body main .page-section .page-container .page-header {
  padding: 0;
}
body main .page-section .page-container .page-header h2 {
  font-size: 40px;
}
body main .page-section .page-container .page-header h2.blue {
  color: var(--aip-blue);
}
body main .page-section .page-container .page-header h2.orange {
  color: var(--aip-orange);
}
body main .page-section .page-container .page-header .page-divider {
  width: 100%;
  height: 3px;
  margin: 0;
  margin-top: 20px;
}
body main .page-section .page-container .page-header .blue-divider {
  background: linear-gradient(to right, #3D8CC5, rgba(255, 255, 255, 0));
}
body main .page-section .page-container .page-header .orange-divider {
  background: linear-gradient(to right, #EC6C2B, #fff);
}
body main .page-section .page-container .page-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  box-sizing: border-box;
}
body main .page-section .page-container .page-content .about-regular {
  display: flex;
  gap: 50px;
  box-sizing: border-box;
}
body main .page-section .page-container .page-content .about-regular .about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body main .page-section .page-container .page-content .about-regular .about-right {
  width: 300px;
  height: 400px;
  border: none;
  border-radius: 20px;
  background: url("../img/caregiver.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body main .page-section .page-container .page-content .about-reverse {
  display: flex;
  gap: 50px;
  box-sizing: border-box;
  scroll-margin-top: 120px;
}
body main .page-section .page-container .page-content .about-reverse .about-left {
  width: 250px;
  height: 350px;
  border: none;
  border-radius: 20px;
  background: url("../img/founder.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
body main .page-section .page-container .page-content .about-reverse .about-right {
  flex: 1;
}
body main .page-section .page-container .page-content .about-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .page-section .page-container .page-content .about-block h4 {
  text-transform: uppercase;
  color: var(--aip-dark-text);
  font-size: 18px;
}
body main .page-section .page-container .page-content .about-block p {
  color: var(--aip-light-text);
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  line-height: 150%;
  font-weight: normal;
}
body main .page-section .page-container .page-content .services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
body main .page-section .page-container .page-content .services-list .services-list-block {
  display: flex;
  gap: 30px;
  padding: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
  align-items: center;
  scroll-margin-top: 120px;
}
body main .page-section .page-container .page-content .services-list .services-list-block .service-img {
  width: 300px;
  height: 250px;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
body main .page-section .page-container .page-content .services-list .services-list-block .service-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body main .page-section .page-container .page-content .services-list .services-list-block .service-desc h4 {
  font-family: "Literata", sans-serif;
  font-size: 20px;
  color: var(--aip-dark-text);
}
body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p {
  font-size: 16px;
  color: var(--aip-light-text);
  line-height: 150%;
  padding: 0;
  margin: 0;
  border: none;
}
body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p.text-left {
  padding-left: 20px;
  border-left: var(--aip-orange) solid 3px;
}
body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p.text-right {
  text-align: right;
  padding-right: 20px;
  border-right: var(--aip-orange) solid 3px;
}
body main .page-section .page-container .page-content .services-list .services-list-block-reverse {
  flex-direction: row-reverse;
  text-align: right;
}
body main .page-section .page-container .page-content .page-cta {
  padding: 20px 30px;
  color: white;
  border: none;
  outline: none;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: center;
}
body main .page-section .page-container .page-content .page-cta:hover {
  cursor: pointer;
}
body main .page-section .page-container .page-content .page-cta-orange {
  background: var(--aip-orange);
}
body main .page-section .page-container .page-content .page-cta-blue {
  background: var(--aip-blue);
}
body main .page-section .page-container .page-content .page-cta-orange:hover {
  background-color: #e0672a;
}
body main .page-section .page-container .page-content .page-cta-blue:hover {
  background-color: #387eb1;
}
body main .page-section .page-container .page-content .partners-header {
  position: relative;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  gap: 0;
  background: rgba(61, 140, 197, 0.1);
  border: none;
  border-radius: 20px;
  margin: 0;
  margin-top: 20px;
}
body main .page-section .page-container .page-content .partners-header .partner-featured {
  position: relative;
  display: flex;
  width: 60%;
  background: linear-gradient(98deg, #6DBEF9 0%, rgba(46, 113, 162, 0) 50%), var(--aip-blue);
  border: none;
  border-radius: 20px;
  padding: 30px;
  padding-left: 230px;
  box-sizing: border-box;
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
}
body main .page-section .page-container .page-content .partners-header .partner-featured img {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 200px;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-badge {
  display: flex;
  padding: 8px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 100%;
  color: white;
  background: var(--aip-orange);
  align-self: start;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-intro {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-intro h3 {
  font-size: 24px;
  color: white;
  line-height: 100%;
  font-weight: 600;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-intro .partner-service {
  font-size: 14px;
  color: white;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details p.featured-bio {
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details button.featured-read-more {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  border: white solid 2px;
  border-radius: 100px;
  font-size: 14px;
  background: none;
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: white;
  line-height: 100%;
  transition: all 0.3s ease;
}
body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details button.featured-read-more:hover {
  cursor: pointer;
  background: white;
  color: var(--aip-blue);
}
body main .page-section .page-container .page-content .partners-header .partner-cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
body main .page-section .page-container .page-content .partners-header .partner-cta h3 {
  font-family: "Literata", sans-serif;
  font-size: 32px;
  line-height: 100%;
  color: var(--aip-dark-text);
  text-align: center;
}
body main .page-section .page-container .page-content .partners-header .partner-cta button {
  background: var(--aip-blue);
  font-family: "Inter", sans-serif;
  border: var(--aip-blue) solid 2px;
  background: var(--aip-blue);
  box-sizing: border-box;
  padding: 15px 30px;
  border-radius: 100px;
  color: white;
  font-size: 18px;
  line-height: 100%;
  width: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
}
body main .page-section .page-container .page-content .partners-header .partner-cta button:hover {
  cursor: pointer;
  background: transparent;
  color: var(--aip-blue);
}
body main .page-section .page-container .page-content .partners-header .partner-cta p {
  padding: 0;
  margin: 0;
  line-height: 150%;
  text-align: center;
  color: var(--aip-light-text);
  font-size: 12px;
}
body main .page-section .page-container .page-content .partners-list {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
body main .page-section .page-container .page-content .partners-list .partner-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  border: rgba(61, 140, 197, 0.3) solid 1px;
  border-radius: 20px;
  box-shadow: 4px 4px 0px rgba(61, 140, 197, 0.1);
  background: white;
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-img {
  width: 100%;
  height: 250px;
  background: #eee;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-img img {
  width: 100%;
  height: auto;
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-lower {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-info {
  line-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-info h3 {
  font-size: 18px;
  color: var(--aip-dark-text);
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-info .services-offered {
  font-size: 14px;
  font-weight: 600;
  color: var(--aip-orange);
  line-height: 120%;
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-info p {
  padding: 0;
  margin: 0;
  margin-top: 5px;
  line-height: 150%;
  font-size: 12px;
  color: var(--aip-light-text);
}
body main .page-section .page-container .page-content .partners-list .partner-block .partner-info p a {
  text-decoration: none;
  color: var(--aip-blue);
  font-weight: 600;
}
body main .page-section .page-container .page-content .partners-list .partner-block button.schedule-call-btn {
  width: 100%;
  box-sizing: border-box;
  border: var(--aip-blue) solid 2px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  color: var(--aip-blue);
  background: transparent;
  transition: all 0.3s ease;
}
body main .page-section .page-container .page-content .partners-list .partner-block button.schedule-call-btn:hover {
  cursor: pointer;
  background: var(--aip-blue);
  color: white;
}
body main .page-section .page-container .page-content .profile-box {
  display: flex;
  box-sizing: border-box;
  gap: 50px;
}
body main .page-section .page-container .page-content .profile-box .profile-img {
  width: 300px;
  height: 450px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
}
body main .page-section .page-container .page-content .profile-box .profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .page-section .page-container .page-content .profile-box .profile-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
body main .page-section .page-container .page-content .profile-box .profile-details h2 {
  font-size: 24px;
  color: var(--aip-dark-text);
}
body main .page-section .page-container .page-content .profile-box .profile-details span.profile-desc {
  color: var(--aip-orange);
  font-weight: 500;
}
body main .page-section .page-container .page-content .profile-box .profile-details p.profile-about {
  padding: 0;
  margin: 0;
  margin-top: 10px;
  line-height: 150%;
  color: var(--aip-light-text);
  font-size: 14px;
}
body main .page-section .page-container .contact-container {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  background: rgba(185, 68, 8, 0.3);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  gap: 0;
}
body main .page-section .page-container .contact-container .contact-form {
  width: 50%;
  background: white;
  border: none;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 50px;
  box-sizing: border-box;
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
  gap: 20px;
}
body main .page-section .page-container .contact-container .contact-form h3 {
  font-size: 20px;
  color: var(--aip-dark-text);
  font-family: "Literata", sans-serif;
}
body main .page-section .page-container .contact-container .contact-form form {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 10px;
}
body main .page-section .page-container .contact-container .contact-form form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body main .page-section .page-container .contact-container .contact-form form input, body main .page-section .page-container .contact-container .contact-form form select, body main .page-section .page-container .contact-container .contact-form form textarea {
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border: #ddd solid 1px;
  border-radius: 8px;
  outline: none;
  color: var(--aip-dark-text);
  font-weight: 600;
}
body main .page-section .page-container .contact-container .contact-form form input::-moz-placeholder, body main .page-section .page-container .contact-container .contact-form form textarea::-moz-placeholder {
  color: #aaa;
  font-weight: normal;
}
body main .page-section .page-container .contact-container .contact-form form input::placeholder, body main .page-section .page-container .contact-container .contact-form form textarea::placeholder {
  color: #aaa;
  font-weight: normal;
}
body main .page-section .page-container .contact-container .contact-form form textarea {
  resize: none;
}
body main .page-section .page-container .contact-container .contact-form form input:focus, body main .page-section .page-container .contact-container .contact-form form select:focus, body main .page-section .page-container .contact-container .contact-form form textarea:focus {
  border: var(--aip-dark-text) solid 1px;
}
body main .page-section .page-container .contact-container .contact-form form button[type=submit] {
  display: flex;
  gap: 5px;
  align-items: center;
  background: var(--aip-blue);
  color: white;
  padding: 15px 30px;
  border: var(--aip-blue) solid 2px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 100px;
  justify-content: center;
  margin: 0;
  margin-top: 10px;
  transition: all 0.3s ease;
}
body main .page-section .page-container .contact-container .contact-form form button[type=submit]:hover {
  cursor: pointer;
  background: transparent;
  color: var(--aip-blue);
}
body main .page-section .page-container .contact-container .contact-connect {
  flex: 1;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body main .page-section .page-container .contact-container .contact-connect h3 {
  font-size: 20px;
  color: white;
  font-family: "Literata", sans-serif;
}
body main .page-section .page-container .contact-container .contact-connect ul.contact-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}
body main .page-section .page-container .contact-container .contact-connect ul.contact-links li {
  color: white;
}
body main .page-section .page-container .contact-container .contact-connect ul.contact-links li a {
  display: block;
  color: white;
  text-decoration: none;
}
body main .page-section .page-container .contact-container .contact-connect ul.contact-links li a:hover {
  opacity: 0.8;
}
body main .page-section .page-container .contact-container .contact-connect ul.social-media {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  list-style: none;
  display: flex;
  gap: 10px;
}
body main .page-section .page-container .contact-container .contact-connect ul.social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--aip-orange);
  font-size: 24px;
  background: white;
  border: white solid 2px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
body main .page-section .page-container .contact-container .contact-connect ul.social-media li a:hover {
  background: transparent;
  color: white;
}
body main .page-section-blue {
  background: var(--aip-paleblue);
}
body main .page-section-orange {
  background: var(--aip-paleorange);
}
body main .page-section-contact {
  background: linear-gradient(224deg, #FFA171 0%, rgba(46, 113, 162, 0) 50.02%), linear-gradient(44deg, #B94B14 0.01%, rgba(46, 113, 162, 0) 49.98%), var(--aip-orange);
}
body footer {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body footer .footer-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  padding: 50px 20px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
body footer .footer-container .footer-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
}
body footer .footer-container .footer-left img {
  width: 250px;
}
body footer .footer-container .footer-left p {
  color: var(--aip-light-text);
  line-height: 150%;
  font-size: 14px;
}
body footer .footer-container ul.contact-details {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: none;
}
body footer .footer-container ul.contact-details li {
  color: var(--aip-dark-text);
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 100%;
}
body footer .footer-container ul.contact-details li a {
  text-decoration: none;
  color: var(--aip-dark-text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 100%;
}
body footer .footer-container .footer-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
body footer .footer-container .footer-middle ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body footer .footer-container .footer-middle ul li {
  text-transform: uppercase;
  color: var(--aip-light-text);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
body footer .footer-container .footer-middle ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--aip-dark-text);
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  margin: 0;
  line-height: 100%;
}
body footer .footer-container .footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
body footer .footer-container .footer-right ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
body footer .footer-container .footer-right ul li a {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  background: var(--aip-blue);
  color: white;
  border: var(--aip-blue) solid 2px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
body footer .footer-container .footer-right ul li a:hover {
  background: transparent;
  color: var(--aip-blue);
}
body footer .footer-container h3 {
  text-transform: uppercase;
  color: var(--aip-light-text);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 100%;
}

@media (max-width: 1280px) {
  body main .hero-section .hero-container .hero-img img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  body header .header-container .site-nav {
    display: none;
  }
  body header .header-container .site-nav-mobile {
    display: block;
  }
  body main .hero-section {
    padding: 80px 20px;
  }
  body main .hero-section .hero-container {
    padding: 0 50px;
  }
  body main .hero-section .hero-container .hero-content {
    width: 100%;
  }
  body main .hero-section .hero-container .hero-img {
    margin: 0;
    display: none;
  }
  body main .about-section .about-container {
    padding: 80px 50px;
  }
  body main .ctas-section .ctas-container {
    padding: 80px 50px;
    padding-top: 100px;
  }
  body main .ctas-section .ctas-container img {
    display: none;
  }
  body main .ctas-section .ctas-container .aip-support, body main .ctas-section .ctas-container .aip-partner {
    width: 50%;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  body main .benefits-section .benefits-container .benefits-lower .benefits-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  body main .services-section .services-container .services-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  body main .about-section .about-container .about-upper-img, body main .about-section .about-container .about-lower-img {
    display: none;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track .testimonial-block {
    flex: 0 0 calc((100% - 39px) / 2);
  }
  body main .page-section .page-container .page-content .partners-header {
    flex-direction: column;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured {
    width: 100%;
  }
  body main .page-section .page-container .page-content .partners-list {
    grid-template-columns: repeat(2, 1fr);
  }
  body main .page-section .page-container .contact-container {
    flex-direction: column;
  }
  body main .page-section .page-container .contact-container .contact-form {
    width: 100%;
  }
  body footer .footer-container {
    flex-direction: column;
  }
  body footer .footer-container .footer-left {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  body footer .footer-container .footer-left .contact-details {
    justify-content: center;
    align-items: center;
  }
  body footer .footer-container .footer-middle {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  body footer .footer-container .footer-middle ul {
    justify-content: center;
    align-items: center;
  }
  body footer .footer-container .footer-right {
    width: 100%;
    align-items: center;
  }
  body footer .footer-container .footer-right ul {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 640px) {
  body header .header-container .site-logo img {
    width: 200px;
    height: auto;
  }
  body main .hero-section {
    padding: 0;
  }
  body main .hero-section .hero-container {
    padding: 50px 20px;
  }
  body main .hero-section .hero-container .hero-content {
    gap: 50px;
  }
  body main .hero-section .hero-container .hero-content .hero-content-upper {
    text-align: center;
  }
  body main .hero-section .hero-container .hero-content .hero-content-upper h1 {
    font-size: 36px;
  }
  body main .hero-section .hero-container .hero-content .hero-content-upper h3 {
    font-size: 14px;
  }
  body main .hero-section .hero-container .hero-content .hero-content-lower .hero-cta {
    font-size: 16px;
    align-self: center;
  }
  body main .hero-section .hero-container .hero-content .hero-content-lower p.cta-caption {
    font-size: 12px;
    text-align: center;
  }
  body main .benefits-section .benefits-container {
    padding: 50px 20px;
    gap: 30px;
  }
  body main .benefits-section .benefits-container .benefits-upper h2 {
    font-size: 24px;
  }
  body main .benefits-section .benefits-container .benefits-upper h3 {
    font-size: 16px;
  }
  body main .benefits-section .benefits-container .benefits-upper p {
    font-size: 14px;
  }
  body main .benefits-section .benefits-container .benefits-lower {
    gap: 30px;
  }
  body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block {
    padding: 20px;
    flex-direction: column;
  }
  body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-details {
    align-items: center;
    justify-content: center;
  }
  body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-details h4 {
    font-size: 16px;
  }
  body main .benefits-section .benefits-container .benefits-lower .benefits-blocks .benefits-block .benefit-details p {
    font-size: 14px;
    text-align: center;
  }
  body main .benefits-section .benefits-container .benefits-lower .blue-cta {
    font-size: 16px;
    align-self: center;
  }
  body main .about-section .about-container {
    padding: 50px 20px;
    gap: 30px;
  }
  body main .about-section .about-container h2 {
    font-size: 24px;
  }
  body main .about-section .about-container .about-upper-content {
    gap: 30px;
  }
  body main .about-section .about-container .text-block h4 {
    font-size: 16px;
  }
  body main .about-section .about-container .text-block p {
    font-size: 14px;
  }
  body main .testimonials-section .testimonials-container {
    padding: 50px 20px;
    gap: 30px;
  }
  body main .testimonials-section .testimonials-container h2 {
    font-size: 24px;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel {
    width: 95%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track {
    width: 100%;
    margin: 0 auto;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track .testimonial-block {
    flex: 0 0 100%;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track .testimonial-block p.testi {
    font-size: 14px;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track .testimonial-block p.testi i {
    font-size: 20px;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track .testimonial-block .author-details .author-name {
    font-size: 14px;
  }
  body main .testimonials-section .testimonials-container .testimonials-carousel .testimonials-track .testimonial-block .author-details span {
    font-size: 12px;
  }
  body main .testimonials-section .testimonials-container .orange-cta-stroke {
    font-size: 16px;
  }
  body main .ctas-section .ctas-container {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
  }
  body main .ctas-section .ctas-container .aip-support, body main .ctas-section .ctas-container .aip-partner {
    width: 100%;
  }
  body main .ctas-section .ctas-container .aip-support .aip-support-content, body main .ctas-section .ctas-container .aip-support .aip-partner-content, body main .ctas-section .ctas-container .aip-partner .aip-support-content, body main .ctas-section .ctas-container .aip-partner .aip-partner-content {
    text-align: center;
  }
  body main .ctas-section .ctas-container .aip-support .aip-support-content h3, body main .ctas-section .ctas-container .aip-support .aip-partner-content h3, body main .ctas-section .ctas-container .aip-partner .aip-support-content h3, body main .ctas-section .ctas-container .aip-partner .aip-partner-content h3 {
    font-size: 20px;
  }
  body main .ctas-section .ctas-container .aip-support .aip-support-content button, body main .ctas-section .ctas-container .aip-support .aip-partner-content button, body main .ctas-section .ctas-container .aip-partner .aip-support-content button, body main .ctas-section .ctas-container .aip-partner .aip-partner-content button {
    font-size: 16px;
  }
  body main .page-section .page-container {
    padding: 30px 20px;
  }
  body main .page-section .page-container h2.contact-heading {
    font-size: 24px;
  }
  body main .page-section .page-container .page-content .about-regular {
    align-items: center;
    flex-direction: column;
  }
  body main .page-section .page-container .page-content .about-reverse {
    align-items: center;
    flex-direction: column-reverse;
  }
  body main .page-section .page-container .page-content .services-list {
    width: 100%;
    gap: 50px;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block {
    gap: 20px;
    flex-direction: column;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-img {
    width: 100%;
    height: 200px;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p.text-left, body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p.text-right {
    text-align: left;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p.text-right {
    padding-right: 0;
    padding-left: 20px;
    border: none;
    border-left: var(--aip-orange) solid 3px;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block-reverse {
    text-align: left;
  }
  body main .page-section .page-container .page-content .page-cta {
    font-size: 16px;
  }
  body main .page-section .page-container .page-content .partners-list {
    grid-template-columns: repeat(1, 1fr);
  }
  body main .page-section .page-container .page-content .profile-box {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  body main .page-section .page-container .page-content .profile-box .profile-img {
    width: 250px;
    height: 350px;
  }
  body main .page-section .page-container .contact-container {
    gap: 20px;
  }
  body main .page-section .page-container .contact-container .contact-form {
    padding: 20px;
  }
  body main .page-section .page-container .contact-container .contact-form h3 {
    font-size: 18px;
  }
  body main .page-section .page-container .contact-container .contact-form form input, body main .page-section .page-container .contact-container .contact-form form select, body main .page-section .page-container .contact-container .contact-form form textarea {
    font-size: 14px;
  }
  body main .page-section .page-container .contact-container .contact-form form button[type=submit] {
    font-size: 16px;
  }
  body main .page-section .page-container .contact-container .contact-connect {
    padding: 20px;
    justify-content: center;
    text-align: center;
  }
  body main .page-section .page-container .contact-container .contact-connect h3 {
    font-size: 18px;
  }
  body main .page-section .page-container .contact-container .contact-connect ul.contact-links li {
    font-size: 14px;
  }
  body main .page-section .page-container .contact-container .contact-connect ul.contact-links li a {
    font-size: 14px;
  }
  body main .page-section .page-container .contact-container .contact-connect ul.social-media {
    justify-content: center;
  }
  body main .page-section .page-container .contact-container .contact-connect ul.social-media li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  body footer .footer-container .footer-left {
    text-align: center;
  }
}
@media (max-width: 480px) {
  body main .services-section .services-container {
    padding: 50px 20px;
  }
  body main .services-section .services-container h2 {
    font-size: 24px;
  }
  body main .services-section .services-container .services-blocks {
    display: flex;
    flex-direction: column;
  }
  body main .services-section .services-container .services-blocks .service-block button {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  body main .page-section .page-container {
    gap: 30px;
  }
  body main .page-section .page-container .page-header h2 {
    font-size: 24px;
  }
  body main .page-section .page-container .page-content {
    gap: 50px;
  }
  body main .page-section .page-container .page-content .about-regular, body main .page-section .page-container .page-content .about-reverse {
    gap: 30px;
  }
  body main .page-section .page-container .page-content .about-regular .about-right, body main .page-section .page-container .page-content .about-reverse .about-right {
    width: 100%;
  }
  body main .page-section .page-container .page-content .about-regular .about-right .about-img-right, body main .page-section .page-container .page-content .about-reverse .about-right .about-img-right {
    width: 100%;
  }
  body main .page-section .page-container .page-content .about-regular .about-left, body main .page-section .page-container .page-content .about-reverse .about-left {
    width: 100%;
  }
  body main .page-section .page-container .page-content .about-regular .about-left .about-img-left, body main .page-section .page-container .page-content .about-reverse .about-left .about-img-left {
    width: 100%;
  }
  body main .page-section .page-container .page-content .services-list {
    width: 100%;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block {
    gap: 20px;
    box-sizing: border-box;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-img {
    border-radius: 5px;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-desc {
    gap: 10px;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-desc h4 {
    font-size: 16px;
  }
  body main .page-section .page-container .page-content .services-list .services-list-block .service-desc p {
    font-size: 14px;
  }
  body main .page-section .page-container .page-content .partners-header {
    margin-top: 0;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured {
    padding: 20px;
    padding-bottom: 0;
    flex-direction: column-reverse;
    gap: 20px;
    border-radius: 20px 20px 0px 0px;
    box-shadow: none;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured img {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-badge {
    font-size: 11px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-intro h3 {
    font-size: 18px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details .featured-intro .partner-service {
    font-size: 13px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details p.featured-bio {
    font-size: 12px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-featured .partner-details button.featured-read-more {
    font-size: 12px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-cta h3 {
    font-size: 24px;
  }
  body main .page-section .page-container .page-content .partners-header .partner-cta button {
    font-size: 16px;
  }
  body main .page-section .page-container .page-content .partners-list {
    gap: 20px;
  }
  body main .page-section .page-container .page-content .partners-list .partner-block .partner-info h3 {
    font-size: 18px;
  }
  body main .page-section .page-container .page-content .partners-list .partner-block .partner-info .services-offered {
    font-size: 14px;
  }
  body main .page-section .page-container .page-content .partners-list .partner-block .partner-info p {
    font-size: 12px;
  }
  body main .page-section .page-container .page-content .partners-list .partner-block button.schedule-call-btn {
    font-size: 14px;
  }
  body main .page-section .page-container .about-block h4 {
    font-size: 16px !important;
  }
  body main .page-section .page-container .about-block p {
    font-size: 14px;
  }
  body footer .footer-container {
    padding: 30px 20px;
    gap: 50px;
  }
  body footer .footer-container .footer-left img {
    width: 180px;
  }
  body footer .footer-container .footer-left p {
    font-size: 12px;
  }
  body footer .footer-container .footer-left ul.contact-details li {
    font-size: 14px;
  }
  body footer .footer-container .footer-left ul.contact-details li a {
    font-size: 14px;
  }
  body footer .footer-container .footer-middle ul {
    gap: 10px;
  }
  body footer .footer-container .footer-middle ul li, body footer .footer-container .footer-middle ul li a {
    font-size: 13px;
  }
  body footer .footer-container h3 {
    font-size: 13px;
  }
  body footer .footer-container .footer-right ul li a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */