/*
Theme Name: CompanAIn
Author: CompanAIn
Version: 1.0
*/

@import url("./css/reset.css");
@import url("./css/variables.css");
@import url("./css/container.css");

/* ======================================================================================================================================================== */

.home_cover {
  min-height: 720px;
}

.hero__container {
  position: relative;
  min-height: 400px;
  height: 73vh;
  overflow-y: clip;
}

.hero_title {
  container-type: inline-size;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;

  height: auto;
  /* height: 20%; */

  max-width: 1440px;
}

.hero_title > h2 {
  position: relative;
  z-index: 1;
  padding: 0;

  color: white;
  font-weight: 700;
  letter-spacing: -3.8px;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: nowrap;
  text-align: center;

  overflow: clip;

  margin-inline: -20px;
}

@container (min-width: 200px) {
  .hero_title > h2 {
    font-size: 11.3cqw;
  }
}

.hero-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-47%, 33%);
  z-index: 2;
  margin: 0;
  pointer-events: none;
  /* width: 45%; */
  width: auto;
  height: 900px;
}

.hero_background_section {
  display: flex;
  justify-content: space-between;
  align-items: start;

  position: relative;

  height: 78%;
}

.hero_background_section__item {
  opacity: 0.5;

  transition: opacity 0.5s ease;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero_background_section__item:hover {
  opacity: 1;
}

.hero_background_column_left,
.hero_background_column_right {
  display: flex;
  flex-direction: column;

  align-items: start;

  gap: 15px;

  height: 100%;
}

.hero_background_column_left {
  left: var(--container-inline-padding);
  justify-content: space-between;
}

.hero_background_column_right {
  right: var(--container-inline-padding);
}

.hero_subtitle {
  width: 333px;

  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;

  padding: 0 0 0 10px;

  color: #000;  

  margin-top: 8px;
}

.hero_background_section__item__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}

.hero_button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 3;

  bottom: 0;
}

.hero_image_section {
  position: absolute;
  z-index: 1;

  bottom: 0;

  container-type: inline-size;

  height: fit-content !important;
}

@media (max-width: 1200px) {
  .hero_background_column_right {
    align-items: flex-end;
  }
}

@media (max-width: 800px) {
  .home_cover {
    min-height: 800px;
  }

  .hero-image {
    transform: translate(-47%, 35%);
    width: 75%;
    height: auto;
  }

  
  .hero__container {
    margin-top: -78px;
  }

  .hero_background_section__item {
    display: none;
  }

  .hero_title {
    height: auto;
  }

  .hero_title > h2 {
    text-align: left;
    padding-top: 40px;
    font-size: 14cqw;
    line-height: 11cqw;

    letter-spacing: -0.5cqw;
    text-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .hero-image {
    width: 420px;
  }

  .home_cover {
    min-height: 650px;
  }
}

@media (max-width: 600px) {
  .hero_title {
    padding: 10px 0;
  }
}

@media (max-width: 500px) {
  .hero_title {
    padding: 0 10px;
  }
  .hero_title > h2 {
    font-size: 23cqw;
    line-height: 18cqw;
  }

  .hero-image {
    width: 455px;
  }

  .home_cover {
    min-height: 700px;
  }
}

/* ======================================================================================================================================================== */

.pulsation_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulsation_button button {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;

  padding: 20px 40px;

  color: white;
  background-color: var(--Purple-Heart);

  border-radius: 88px;

  position: relative;
  z-index: 3;
}

.pulsation_button__outer_border {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 7px;
  border: 3px solid rgba(97, 55, 205, 0);
  border-radius: 88px;

  animation-duration: 3.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  pointer-events: none;
}

.outer_border_layer_1 {
  animation-name: step-1;
}
.outer_border_layer_2 {
  animation-name: step-2;
}
.outer_border_layer_3 {
  animation-name: step-3;
}
.outer_border_layer_4 {
  animation-name: step-4;
}

@keyframes step-1 {
  20%,
  100% {
    border-color: rgba(97, 55, 205, 0);
  }
  20% {
    border-color: rgba(97, 55, 205, 0.8);
  }
}

@keyframes step-2 {
  40%,
  100% {
    border-color: rgba(97, 55, 205, 0);
  }
  40% {
    border-color: rgba(97, 55, 205, 0.6);
  }
}

@keyframes step-3 {
  60%,
  100% {
    border-color: rgba(97, 55, 205, 0);
  }
  60% {
    border-color: rgba(97, 55, 205, 0.4);
  }
}

@keyframes step-4 {
  80%,
  100% {
    border-color: rgba(97, 55, 205, 0);
  }
  80% {
    border-color: rgba(97, 55, 205, 0.1);
  }
  80%,
  90% {
    border-color: rgba(97, 55, 205, 0.2);
  }
  90%,
  100% {
    border-color: rgba(97, 55, 205, 0);
  }
}

@media (max-width: 1000px) {
  .pulsation_button button {
    font-weight: 500;
    font-size: 28px;
    padding: 20px 25px;
  }
}

@media (max-width: 800px) {
  .pulsation_button button {
    font-size: 24px;
    padding: 15px 20px;
  }
}

/* ======================================================================================================================================================== */
.logo_animation__container {
  display: flex;
  justify-content: space-between;

  padding-block: 40px;

  overflow: clip;

  position: relative;
}

.logo_animation__container > .logo_animation_body {
  flex-grow: 1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 220px;

  animation: scrollLeft 30s linear infinite;
  white-space: nowrap;
}

.logo_animation__container .blur_square {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none;

  background: #fff;
  filter: blur(10px);
  z-index: 2;
}

.square_start {
  left: -25px;
}

.square_end {
  right: -25px;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1000px) {
  .logo_animation__container {
    padding-block: 25px;
  }
}

/* ======================================================================================================================================================== */
.keep_tracking {
  padding-top: 50px;
  padding-bottom: 20px;
}

.keep_tracking__body {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 8vw;
}

.keep_tracking_info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-grow: 1;

  position: relative;
  z-index: 5;
}

.keep_tracking_info_blur {
  position: absolute;
  z-index: 1;

  pointer-events: none;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.keep_tracking_info_title {
  font-weight: 600;
  font-size: 80px;
  line-height: 72px;
  letter-spacing: -3px;
  text-transform: uppercase;

  position: relative;
  z-index: 2;
}

.keep_tracking_info_description {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0%;
  opacity: 0.54;

  position: relative;
  z-index: 2;
}

.keep_tracking_image {
  flex-grow: 1;
  padding: 20px 70px;

  display: flex;
  justify-content: center;

  position: relative;
}

.keep_tracking_image #myVideo {
  pointer-events: none;
  object-fit: cover;
}
.keep_tracking_button {
  position: absolute;
  bottom: 130px;
  right: -50px;
}

@media (max-width: 1200px) {
  .keep_tracking_button {
    right: 50px;
  }
}

@media (max-width: 1000px) {
  .keep_tracking__body {
    gap: 25px;
    flex-direction: column;
  }
  .keep_tracking_info_title,
  .keep_tracking_info_description {
    text-align: center;
  }

  .keep_tracking_info_title {
    font-size: var(--Tablet-FS);
    letter-spacing: -2.5px;
  }

  .keep_tracking_button {
    right: 50px;
    bottom: 140px;
  }
}

@media (max-width: 800px) {
  .keep_tracking_info_title {
    font-weight: 600;
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }

  .keep_tracking_button {
    right: 55px;
    bottom: 154px;
  }
}

@media (max-width: 700px) {
  .keep_tracking_button {
    right: 90px;
  }
}

@media (max-width: 600px) {
  .keep_tracking_info_title {
    text-align: left;
  }

  .keep_tracking_info_description {
    text-align: left;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

@media (max-width: 450px) {
  .keep_tracking_image {
    transform: scale(0.8);
    margin: -70px 0;
  }

  .keep_tracking_button {
    transform: scale(1.1);
  }
}

/* ======================================================================================================================================================== */
.about_animal_health {
  position: relative;
}

.about_animal_health_body {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;
}

.about_animal_health_figure_with_icons,
.about_animal_health_info {
  position: relative;
  z-index: 2;
  height: fit-content;
}

.about_animal_health_body_animal_abs_item {
  position: absolute;
  z-index: 2;
}

.health_icons {
  transition: all 0.3s ease;
  width: 72px;
}

.health_icons:hover {
  transform: scale(1.75);
}

.img_circle_1 {
  top: 165px;
  right: 50px;
}

.img_circle_2 {
  bottom: 155px;
  right: 80px;
}

.img_circle_3 {
  bottom: 85px;
  left: 70px;
}

.img_circle_4 {
  top: 243px;
  left: 40px;
}

.img_circle_5 {
  top: 17px;
  left: 200px;
}

.img_circle_6 {
  right: 164px;
  top: 205px;
}

.img_circle_7 {
  bottom: 165px;
  right: 260px;
}

.img_circle_8 {
  top: 130px;
  left: 278px;
}

.health_label {
  border-radius: 40px;
  border: 3px solid var(--Black);
  background-color: var(--White);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;

  padding: 16px 32px;

  color: var(--Black);

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.health_label_1 {
  left: 8px;
  top: 118px;
}

.health_label_2 {
  top: 68px;
  right: 19px;
}

.health_label_3 {
  left: -30px;
  bottom: 205px;
}

.health_label_4 {
  bottom: 274px;
  right: 6px;
}

.health_label_5 {
  bottom: 64px;
  left: 190px;
}

.health_label:hover {
  color: var(--White);
  background-color: var(--Black);
}

.about_animal_health_info_description {
  color: var(--Gray);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.about_animal_health_info_description > b {
  color: var(--Black);
}

.health_section_blur {
  position: absolute;
  z-index: 1;

  pointer-events: none;

  right: -200px;
  top: -150px;
}

@media (max-width: 1000px) {
  .about_animal_health_body {
    flex-direction: column-reverse;
  }

  .about_animal_health_info_description {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .about_animal_health_body {
    height: fit-content;
  }

  .about_animal_health_figure_with_icons {
    transform: scale(0.75);
    margin-block: -100px;
  }

  .about_animal_health_info_description {
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

@media (max-width: 700px) {
  .about_animal_health_figure_with_icons {
    transform: scale(0.5);
  }
}
/* ======================================================================================================================================================== */
.smart_pet_care {
  position: relative;
}

.smart_pet_left_blur {
  pointer-events: none;
  position: absolute;
  z-index: 1;

  transform: scale(1.3);

  top: -200px;
  left: -100px;
}

.smart_pet_right_blur {
  pointer-events: none;
  position: absolute;
  z-index: 1;

  transform: scale(1.3);

  top: 0;
  right: -100px;
}

.smart_pet_care__container {
  padding-top: 100px;
}

.smart_pet_body {
  display: flex;
  justify-content: space-between;
  align-items: start;

  flex-direction: column;

  gap: 50px;

  position: relative;
}

.smart_pet_body_info_wrapper {
  display: flex;
  align-items: center;
  height: 585px;
}

.smart_pet_body_info {
  display: flex;
  /* flex-direction: column; */

  gap: 60px;
}

#smart_pet_img {
  width: 609px;
}

.smart_pet_body_image {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: end;

  opacity: 0;

  transition: opacity 0.4s ease, transform 0.4s ease;
}

.smart_pet_body_image.fade {
  opacity: 1;
}

.smart_pet_info_title {
  font-weight: 600;
  font-size: 80px;
  line-height: 72px;
  letter-spacing: -3px;
  text-transform: uppercase;

  position: relative;
  z-index: 2;

  text-align: left;
  width: 60%;
}

.smart_pet_accordion {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 34px;

  position: relative;
  z-index: 2;
}

.smart_pet_accordion_item {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 8px 16px;

  border-left: 3px solid;
  border-color: var(--Light-Gray);

  transition: all 0.4s ease;
}

.smart_pet_accordion_item.active {
  border-left: 3px solid rgba(0, 0, 0, 1);
}

.smart_pet_accordion_header {
  width: fit-content;

  color: var(--Light-Gray);

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;

  cursor: pointer;
}

.smart_pet_accordion_item.active .smart_pet_accordion_header {
  color: var(--Black);
}

.smart_pet_accordion_item.active {
  border-color: var(--Black);
}

.smart_pet_accordion_content {
  color: var(--Gray);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;

  transition: max-height 0.4s ease, padding-top 0.4s ease;

  max-height: 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .smart_pet_body {
    padding-top: 50px;
  }
  .smart_pet_info_title {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  #smart_pet_img {
    width: 100%;
  }

  .smart_pet_body {
    align-items: center;
  }

  .smart_pet_body_info {
    width: 50%;
  }

  .smart_pet_info_title {
    font-size: var(--Tablet-FS);
    letter-spacing: -2.5px;
    line-height: 62px;

    width: 100%;
  }

  .smart_pet_body_image {
    align-items: center;
    width: 50%;
  }

  .smart_pet_body_image > img {
    /* height: 85%; */
    width: 100%;
  }
}

@media (max-width: 800px) {
  .smart_pet_care__container {
    padding-top: 0;
  }

  .smart_pet_info_title {
    font-weight: 600;
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }

  .smart_pet_body_info {
    width: 100%;
  }

  .smart_pet_body_image {
    display: none;
  }
}

@media (max-width: 600px) {
  .smart_pet_info_title {
    text-align: left;
  }
}

/* ======================================================================================================================================================== */
.proactive_care {
  position: relative;
}

.proactive_care_body {
  padding-block: 190px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 45px;

  position: relative;
}

.proactive_steps_section {
  display: flex;
  flex-direction: column;
  align-items: start;

  gap: 41px;

  position: relative;

  width: 50%;

  z-index: 2;
}

.proactive_steps {
  display: flex;
  flex-direction: column;

  row-gap: 34px;
}

.proactive_steps_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 80px;
}

.proactive_steps_section_tags {
  border-radius: 40px;
  background: transparent;
  border: 2px solid var(--Black);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);

  padding: 8px 24px;

  color: var(--Black);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;

  transition: background 0.7s ease, color 0.7s ease;
}

.proactive_steps_item.active {
  opacity: 1;
}

.proactive_steps_item.active .proactive_steps_section_tags {
  background: var(--Black);
  color: #fff;
}

.proactive_steps_section_arrow_up {
  transform: rotateX(180deg);
  position: absolute;
  right: -45%;
  top: -45%;
}

.proactive_steps_section_arrow_down {
  position: absolute;
  right: -45%;
  bottom: -45%;
}

.proactive_steps_item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  opacity: 0.3;
  transition: opacity 0.7s ease;

  position: relative;
  z-index: 2;
}

.proactive_title {
  color: var(--Black);

  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 72px;
  letter-spacing: -3.2px;
  text-transform: uppercase;
}

.proactive_title .proactive_title_subtitle {
  color: var(--Black);
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -3.2px;
}

.proactive_steps_first_g,
.proactive_steps_secong_g,
.proactive_steps_first_p {
  position: absolute;

  transform: scale(1.3);

  pointer-events: none;

  z-index: 1;
}

.proactive_steps_first_p {
  top: -150px;
  left: 200px;
}

.proactive_steps_first_g {
  top: 0;
  left: -150px;
}

.proactive_steps_secong_g {
  top: 100px;
  left: 150px;
}

.proactive_title del {
  color: rgba(0, 0, 0, 0.54);
}

.proactive_title:nth-child(2) {
  font-size: 80px;
  letter-spacing: -4px;
}

.proactive_info_section {
  color: var(--Gray);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;

  position: relative;
  z-index: 2;

  width: 50%;
}

.proactive_info_section > b {
  color: var(--Black);
}

@media (max-width: 1000px) {
  .proactive_care_body {
    padding-block: 75px;
    flex-direction: column;
  }

  .proactive_steps_section {
    flex-direction: column;
  }

  .proactive_steps_section,
  .proactive_info_section {
    width: 100%;
    align-items: center;
  }

  .proactive_info_section {
    text-align: justify;
  }

  .proactive_title:nth-child(2) {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }
}

@media (max-width: 800px) {
  .proactive_title {
    font-size: 54px;
    line-height: 50px;
  }

  .proactive_title .proactive_title_subtitle {
    font-weight: 600;
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }

  .proactive_title_subtitle del {
    font-weight: 400;
  }

  .proactive_title:nth-child(2) {
    font-size: var(--Mobile-FS);
  }

  .proactive_steps {
    transform: scale(0.75);
  }

  .proactive_info_section {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .proactive_info_section {
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

@media (max-width: 450px) {
  .proactive_steps {
    transform: scale(0.6);
  }
}
/* ======================================================================================================================================================== */

.raising_standart {
  position: relative;
}

.raising_standart_top_blur,
.raising_standart_right_blur,
.raising_standart_left_blur {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.raising_standart_top_blur {
  top: -200px;
  right: -100px;
}

.raising_standart_right_blur {
  top: 100px;
  right: -250px;
}

.raising_standart_left_blur {
  bottom: -350px;
  left: -200px;
}

.raising_standart_body {
  position: relative;
  z-index: 2;

  padding: 42px 0;

  container-type: inline-size;
}

.raising_standart_title {
  color: var(--Black);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.625vw;
  width: 100%;
  text-align: justify;
  position: relative;
  z-index: 1;
  top: 38px;

  text-wrap: nowrap;
}

@container (min-width: 200px) {
  .raising_standart_title {
    font-size: 9.7cqw;
  }
}

.raising_standart_video_wrapper {
  overflow: clip;
  border-radius: 24px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  z-index: 2;
}

.raising_standart_video_wrapper video {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  .raising_standart_title {
    top: 0px;
  }
}

@media (max-width: 600px) {
  .raising_standart_title {
    font-weight: var(--Mobile-FW);
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);

    text-wrap: wrap;

    text-align: left;
  }
}

/* ======================================================================================================================================================== */
.coming_soon_right_blur,
.coming_soon_left_blur {
  position: absolute;
  z-index: 0;

  pointer-events: none;
}

.coming_soon_right_blur {
  right: -350px;
  top: 50px;
}

.coming_soon_left_blur {
  top: -200px;
  left: 50px;
}

.coming_soon_body {
  padding: 98px 0;

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 71px;
}

.coming_soon_title_section {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 80px;

  position: relative;
  z-index: 2;
}

.coming_soon_title {
  color: var(--Black);

  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -4px;
  text-transform: uppercase;

  width: 50%;
}

.coming_soon_subtitle {
  color: var(--Gray);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;

  width: 50%;
}

.coming_soon_subtitle > b {
  color: var(--Onyx);
}

.coming_soon_content_section {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  position: relative;
  z-index: 2;
}

.coming_soon_feature_wrapper {
  padding: 32px;
  border-radius: 42px;
  background: var(--Light-Blur);
  backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;

  gap: 64px;

  flex: 1;
}

.coming_soon_feature_tag {
  padding: 5.6px 10.6px;
  border-radius: 50px;
  background-color: var(--Onyx);

  color: var(--White);
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.coming_soon_feature_description {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;

  gap: 24px;
}

.coming_soon_feature_description_title {
  color: var(--Onyx);

  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.coming_soon_feature_description_info {
  color: var(--Gray);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.coming_soon_feature_description_info > b {
  color: var(--Onyx);
}

@media (max-width: 1000px) {
  .coming_soon_title_section {
    gap: 0px;
  }
  /* .coming_soon_title_section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .coming_soon_title,
  .coming_soon_subtitle {
    width: 100%;
    text-align: center;
  }

  .coming_soon_title {
    font-size: var(--Tablet-FS);
    letter-spacing: -2.5px;
  }

  .coming_soon_content_section {
    flex-direction: column;
  }

  .coming_soon_feature_wrapper {
    gap: 40px;
  } */
}

@media (max-width: 800px) {
  .coming_soon_title_section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .coming_soon_title,
  .coming_soon_subtitle {
    width: 100%;
    text-align: center;
  }

  .coming_soon_title {
    font-size: var(--Tablet-FS);
    letter-spacing: -2.5px;
  }

  .coming_soon_content_section {
    flex-direction: column;
  }

  .coming_soon_feature_wrapper {
    gap: 40px;
  }
  
  .coming_soon_title {
    font-weight: 600;
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }
  .coming_soon_body {
    padding: 45px 0;

    gap: 35px;
  }

  .coming_soon_feature_wrapper {
    padding: 28px;
    gap: 24px;
  }

  .coming_soon_feature_tag {
    font-size: 18px;
  }

  .coming_soon_feature_description {
    gap: 18px;
  }

  .coming_soon_feature_description_title {
    font-size: 28px;
  }

  .coming_soon_feature_description_info {
    font-size: 18px;
  }

  .coming_soon_subtitle {
    font-size: 22px;
    text-align: justify;
  }
}

@media (max-width: 600px) {
  .coming_soon_title {
    text-align: left;
  }

  .coming_soon_subtitle {
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}
/* ======================================================================================================================================================== */
.footsteps_section {
  position: relative;
}

.footsteps_section__container {
  position: sticky;
  top: calc(30% - 250px);

  z-index: 1;
}

.footsteps_section_body {
  padding: 90px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  position: relative;
  z-index: 2;

  height: 100%;
}

.footsteps_card_section {
  padding: 250px 30px;

  flex: 1;

  border-radius: 24px;

  background: var(--Aquamarine);

  color: var(--Black);

  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -4px;
  text-transform: uppercase;

  position: relative;
  z-index: 1;
}

.footsteps_scrolling_section {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;

  flex: 1;

  height: 100%;
  width: 100%;
}

.footsteps_scrolling_section_top_blur,
.footsteps_scrolling_section_bottom_blur {
  position: absolute;
  left: -20px;
  right: -20px;
  z-index: 1;
}

.footsteps_scrolling_section_top_blur {
  top: -20px;
  height: 100px;
  background: white;
  filter: blur(8px);
}

.footsteps_scrolling_section_bottom_blur {
  bottom: -20px;
  height: 100px;
  background: white;
  filter: blur(8px);
}

.footsteps_scrolling_section_middle {
  position: relative;
  height: 430px;
  overflow: hidden;
  padding: 75px 30px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.footsteps_scrolling_section_list {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.5rem;

  display: flex;
  flex-direction: column;
  gap: 50px;

  will-change: transform;
}

.footsteps_scrolling_section_item {
  font-size: 20px;
  line-height: 1.6;
  padding: 12px 8px;

  color: var(--Black, #000);
}

.footsteps_scrolling_section_item::marker {
  color: var(--Black);

  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footsteps_scrolling_section_item_title {
  color: var(--Black);

  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  padding-bottom: 24px;
}

.footsteps_scrolling_section_item_descripton {
  color: var(--Gray);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

[class*="paws_container"] {
  position: absolute;
  z-index: 1;
}

.paws_container_1 {
  bottom: 129px;
  right: 0;

  transform: rotate(10deg);
}
.paws_container_2 {
  bottom: 70px;
  right: 290px;

  transform: rotate(-24deg);
}
.paws_container_3 {
  bottom: 304px;
  right: 363px;

  transform: rotate(25deg);
}

.paws_container_1,
.paws_container_2,
.paws_container_4,
.paws_container_5,
.paws_container_6,
.paws_container_7,
.paws_container_8 {
  z-index: 3;
}

.paws_container_4 {
  bottom: 286px;
  right: 620px;

  transform: rotate(-35deg);
}
.paws_container_5 {
  top: 195px;
  left: 536px;

  transform: rotate(25deg);
}
.paws_container_6 {
  top: 223px;
  left: 288px;

  transform: rotate(-20deg);
}
.paws_container_7 {
  top: 15px;
  left: 254px;
  transform: rotate(21deg);
}
.paws_container_8 {
  top: 0;
  left: 0;
}

@media (max-width: 1000px) {
  .footsteps_section__container {
    top: calc(30% - 255px);
  }

  .footsteps_card_section {
    width: 100%;
    text-align: center;
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  .footsteps_section__container {
    position: static;
  }

  .footsteps_section_body {
    flex-direction: column;
  }

  .footsteps_scrolling_section_middle {
    height: fit-content;
  }

  .footsteps_scrolling_section_top_blur,
  .footsteps_scrolling_section_bottom_blur {
    display: none;
  }
}

@media (max-width: 800px) {
  .footsteps_section_body {
    gap: 15px;
    padding: 45px 0;
  }

  .footsteps_card_section {
    font-weight: var(--Mobile-FW);
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);

    padding: 50px 10px;
  }

  .footsteps_scrolling_section_middle {
    padding: 0px 10px;
  }

  .footsteps_scrolling_section_list {
    gap: 15px;
  }

  .footsteps_scrolling_section_item_title,
  .footsteps_scrolling_section_item::marker {
    font-size: 24px;
    padding-bottom: 10px;
  }

  .footsteps_scrolling_section_item_descripton {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .footsteps_scrolling_section_item_descripton {
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}
/* ======================================================================================================================================================== */
.use_cases {
  background: var(--Purple-Heart);
  position: relative;
  z-index: 2;
}

.use_cases_body {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;

  padding: 51px 0;
}

.use_case_title {
  color: var(--White);

  /* text-align: center; */

  font-size: clamp(65px, 156px, 178px);
  font-style: normal;
  font-weight: 600;
  line-height: 180px;
  letter-spacing: -4px;
  text-transform: uppercase;

  position: relative;
  top: 60px;

  width: 100%;

  display: block;

  text-align: center;
  margin: 0 auto;
}

.use_cases_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  position: relative;
}

.use_case_item {
  padding: 40px 32px;

  display: flex;
  align-items: center;
  gap: 40px;

  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(26px);
}

.use_case_item_content {
  display: flex;
  flex-direction: column;
  gap: 24px;

  width: 70%;
}

.use_case_item_content_title {
  text-align: start;

  color: var(--White);

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.use_case_item_icon_wrapper {
  height: fit-content;
  width: 30%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.use_case_item_icon_wrapper > img {
  width: 100%;
}

.use_case_item_content_description {
  color: rgba(255, 255, 255, 0.6);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1250px) {
  .use_case_title {
    font-size: clamp(50px, 12vw, 178px);
  }
}

@media (max-width: 1000px) {
  .use_cases_content {
    grid-template-columns: 1fr;
  }

  .use_case_title {
    /* font-size: 120px; */
    top: 0;
  }
}

@media (max-width: 800px) {
  .use_case_title {
    font-weight: var(--Mobile-FW);
    /* font-size: var(--Mobile-FS); */
    line-height: 100px;
    /* line-height: var(--Mobile-LH); */
    top: 0px;
  }

  .use_case_item {
    padding: 22px;

    gap: 20px;
  }

  .use_case_item_icon_wrapper {
    width: 40%;
  }
}

@media (max-width: 800px) {
  .use_case_item_icon_wrapper > img {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .use_case_item {
    flex-direction: column;
  }

  .use_case_item_content {
    width: 100%;
    align-items: center;
  }

  .use_case_item_content_title {
    text-align: center;
  }

  .use_case_item_content_description {
    text-align: justify;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

/* ======================================================================================================================================================== */
.gallery_section {
  position: relative;

  overflow: visible;

  padding: 50px 0 100px 0;
}

.gallery_section_bg_image_wrapper {
  position: absolute;
  z-index: 1;

  pointer-events: none;

  top: -200px;
  /* left: 100px; */
  left: 50%;
  transform: translateX(-50%);
}

.gallery_section_body {
  position: relative;
  z-index: 2;
}

.gallery_section_title {
  color: var(--Black);

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;

  padding-bottom: 25px;

  position: relative;
  z-index: 3;
}

.scroll-container {
  width: 100%;
  height: 440px;
  overflow: hidden;
  position: relative;
  margin: 0px 4px;
}

.scroll-content {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.panorama {
  display: block;
  height: 440px;
  max-height: 100%; /* або як треба */
}

.collage-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.collage-track {
  display: flex;
  animation: scrollCollageLeft 120s linear infinite;
  gap: 9px;

  width: fit-content;
}

.collage-track img {
  flex-shrink: 0;
  height: 440px;
  object-fit: cover;
}
@keyframes scrollCollageLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-90%);
  }
}

/* ======================================================================================================================================================== */
.feedback_section__container {
  position: relative;
}

.feedback_left_blur,
.feedback_right_blur {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.feedback_left_blur {
  left: -500px;
  top: 50px;
}

.feedback_right_blur {
  right: -500px;
  top: -200px;
}

.feedback_section_title {
  color: var(--Black);

  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -4px;
  text-transform: uppercase;

  padding-bottom: 25px;
}

.feedback_section_body {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;

  width: auto;
}

.feedback_slider_wrapper {
  height: 400px;

  display: flex;
  overflow: hidden;
  align-items: center;
  position: relative;
}

.feedback_slider_track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.feedback_card {
  display: flex;
  min-width: 630px;
  width: 630px;
  padding: 32px 24px 24px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;

  border-radius: 23.345px;
  background: rgba(234, 234, 234, 0.2);
  backdrop-filter: blur(6px);

  transition: background-color 0.3s ease, padding 0.3s ease, gap 0.3s ease;
}

.feedback_card_info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
}

.feedback_rating {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.feedback_text {
  color: var(--Black);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  transition: font-size 0.3s ease;
}

.feedback_card_user {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.feedback_card_user > img {
  width: 55px;
  transition: width ease 0.3s;
}

.feedback_card.active_card .feedback_card_user > img {
  width: 63px;
}

.feedback_card_user_info {
  display: flex;
  flex-direction: column;
  align-items: start;

  gap: 5px;
}

.feedback_card_user_name {
  display: flex;
  align-items: center;
  gap: 15px;

  font-size: 22px;
}

.feedback_date {
  color: rgba(0, 0, 0, 0.3);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.feedback_user_tag {
  border-radius: 31px;
  background: rgba(0, 0, 0, 0.05);
  padding: 6px 13.5px;

  color: rgba(0, 0, 0, 0.5);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.feedback_card.active_card {
  padding: 40px 32px 32px 32px;
  background: var(--Onyx);
  color: var(--White);
  gap: 50px;
}

.feedback_card.active_card .feedback_card_info {
  gap: 40px;
}

.feedback_card.active_card .feedback_text {
  color: var(--White);

  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}

.feedback_card.active_card .feedback_date {
  color: rgba(255, 255, 255, 0.3);

  font-size: 17;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.feedback_card.active_card .feedback_user_tag {
  background: rgba(255, 255, 255, 0.05);

  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

@container (min-width: 200px) {
  .feedback_card {
    width: 33cqw;
  }
}

.feedback_slider_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;

  gap: 15%;

  width: 70%;
}

.feedback_slider_dots {
  display: flex;
  align-items: center;
  gap: 3px;
}

.slider_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc; /* Inactive color */
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin: 0 4px;
}

.slider_dot.active {
  background-color: var(--Purple-Heart);
}

.slider_arrow {
  cursor: pointer;
  padding: 10px 15px;
}

.slider_arrow > object {
  pointer-events: none;
  width: 40px;
  height: 25px;
}

@media (max-width: 1000px) {
  .feedback_section_title {
    font-size: var(--Tablet-FS);
    letter-spacing: -2.5px;
  }
}

@media (max-width: 800px) {
  .feedback_section_title {
    padding-bottom: 0px;
    /* margin-bottom: -45px; */
    padding-top: 20px;
    font-weight: 600;
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }
}

@media (max-width: 650px) {
  .feedback_section_body {
    gap: 0;
  }

  .feedback_slider_wrapper {
    height: 300px;
  }

  .feedback_card {
    min-width: 530px;
    width: 100%;

    display: flex;
    padding: 20px 15px 15px 15px;
    gap: 25px;
  }

  .feedback_card.active_card {
    gap: 25px;
    padding: 20px 15px 15px 15px;
  }

  .feedback_card.active_card .feedback_card_info {
    gap: 19px;
  }

  .feedback_card.active_card .feedback_text {
    font-size: 16px;
  }
  .feedback_card.active_card .feedback_card_user_name {
    font-size: 14px;
  }
  .feedback_card.active_card .feedback_date {
    font-size: 12px;
  }

  .feedback_card.active_card .feedback_user_tag {
    font-size: 12px;
    padding: 3.5px 8.5px;
  }

  .feedback_rating {
    gap: 11px;
  }

  .feedback_rating > img {
    width: 12px;
    height: 12px;
  }

  .feedback_slider_controls {
    margin: 0;
    width: 90%;
  }
}

@media (max-width: 550px) {
  .feedback_card {
    min-width: 430px;
  }
}

@media (max-width: 450px) {
  .feedback_card {
    min-width: calc(100vw - 32px);
  }
}

/* @media (max-width: 800px) {
  .feedback_section_body {
    transform: scale(0.75);
  }
}

@media (max-width: 600px) {
  .feedback_section_body {
    transform: scale(0.5);
  }
} */

/* ======================================================================================================================================================== */
/* page: Who We Serve */
/* ======================================================================================================================================================== */

.cover {
  background: var(--Who-We-Serve-Gradient);
  padding-top: 82px;

  overflow: clip;

  min-height: 820px;
}

.cover__container {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  /* gap: 16px; */

  container-type: inline-size;
}

.cover__container {
  padding-bottom: 15px;
  height: 100%;
}

.cover_title {
  container-type: inline-size;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;

  max-width: 1440px;
  width: 100%;

  height: auto;
  /* height: 20%; */
}

.cover_title > h2 {
  position: relative;
  z-index: 1;
  padding: 0;

  color: white;
  font-weight: 700;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  text-wrap: nowrap;
  text-align: center;

  overflow: clip;

  margin-inline: -10px;
}

@container (min-width: 200px) {
  .cover_title > h2 {
    font-size: 9cqw;
    line-height: 1;
  }
}

.cover_body {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 16px;

  width: 100%;

  height: 78%;
}

.cover_dna_bg {
  position: absolute;
  z-index: 2;

  pointer-events: none;

  width: 100%;
  transform: rotate(17deg);
  top: -650px;
  right: -100px;
}

.cover_body_animal_item {
  opacity: 0.5;

  transition: all 0.5s ease;

  display: flex;
  flex-direction: column;
  gap: 8px;

  height: fit-content;
}

.cover_body_animal_item img {
  width: 100%;
}

.cover_body_animal_item:hover {
  opacity: 1;
  z-index: 4;
}

.cover_body_animal_item__image {
  height: auto;
  object-fit: cover;
  display: block;

  flex: 1 1 0;
}

.cover_body_animal_item__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}

.cover_top_image_col,
.cover_bot_image_col {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.cover_top_image_col {
  align-items: start;
}

.cover_top_col_start_block {
  display: flex;
  align-items: start;

  gap: 20px;
}

.cover_top_col_subtitle_block {
  display: flex;
  flex-direction: column;
  gap: 27px;

  margin-right: 60px;
}

.cover_bot_col_end_block {
  display: flex;
  align-items: end;
  gap: 20px;
}

.cover_body_subtitle {
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  color: #000;

  margin-top: 8px;
}

@media (max-width: 1100px) {
  .cover_dna_bg {
    top: -550px;
  }
}

@media (max-width: 1000px) {
  .cover_dna_bg {
    top: -475px;
  }
  .cover_top_col_subtitle_block {
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  #cover_img_to_hide {
    display: none;
  }

  .cover_dna_bg {
    top: -290px;
    right: -50px;
    transform: rotate(17deg) scale(1.3);
  }
}

@media (max-width: 800px) {
  .cover {
    height: 614px;
    min-height: auto;
  }

  .cover_top_image_col {
    align-items: end;
  }

  .cover_body_animal_item__image {
    width: 100%;
  }

  .cover_title > h2 {
    text-wrap: wrap;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .cover_dna_bg {
    visibility: hidden;
  }

  .cover_top_col_subtitle_block .cover_body_animal_item {
    opacity: 1;
  }

  .cover_title > h2 {
    font-size: 13cqw;
    line-height: 1;
  }

  .cover_bot_image_col {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .cover_body {
    gap: 10%;
  }

  .cover_top_image_col {
    align-items: stretch;
  }

  .cover_top_image_col .cover_top_col_start_block {
    width: 60%;
  }

  .cover_top_col_subtitle_block,
  .cover_body_subtitle {
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    color: #000;
  }
}

@media (max-width: 450px) {
  .cover_title > h2 {
    font-size: 17cqw;
    line-height: 0.9;
  }

  .cover_top_col_subtitle_block {
    gap: 5px;
  }
}

/* ======================================================================================================================================================== */
.control_tabs__container {
  position: relative;
}

.control_tabs_blur_left_1,
.control_tabs_blur_left_2,
.control_tabs_blur_left_3,
.control_tabs_blur_left_4,
.control_tabs_blur_right_1,
.control_tabs_blur_right_2,
.control_tabs_blur_right_3,
.control_tabs_blur_right_4 {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.control_tabs_blur_right_1,
.control_tabs_blur_right_2 {
  right: -350px;
}

.control_tabs_blur_left_1 {
  left: -250px;
  top: -250px;
}
.control_tabs_blur_left_2 {
  left: -200px;
  top: -200px;
}
.control_tabs_blur_left_3 {
  left: -250px;
  top: 1750px;
}
.control_tabs_blur_left_4 {
  left: -100px;
  top: 1700px;
}

.control_tabs_blur_right_1 {
  top: 1100px;
}
.control_tabs_blur_right_2 {
  top: 1350px;
  right: -450px;
}
.control_tabs_blur_right_3 {
  top: 2550px;
  right: -250px;
}
.control_tabs_blur_right_4 {
  top: 2650px;
  right: -350px;
}

/* ======================================================================================================================================================== */
.care_with_insight_body {
  display: flex;
  flex-direction: column;
  gap: 56px;

  padding-block: 93px;

  container-type: inline-size;
}

.care_with_insight_title {
  color: var(--Black);

  /* font-size: clamp(64px, 10.5vw, 143px); */
  font-style: normal;
  font-weight: 600;
  line-height: 129.5px;
  letter-spacing: -5px;
  text-transform: uppercase;
}

@container (min-width: 200px) {
  .care_with_insight_title {
    font-size: 10.5cqw;
  }
}

.care_with_insight_content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.care_info_section {
  display: flex;
  flex-direction: column;
  gap: 16px;

  flex: 1 1 0;

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.care_info_section_asking {
  width: 90%;
}

.care_info_section_title {
  color: var(--Gray);
}

.care_info_section_title > b {
  color: var(--Black);
}

.care_info_section_arrow {
  position: relative;
  padding-top: 105px;
}

.answer_arrow {
  position: absolute;
  top: -22px;
  right: 37px;
}

.care_cards_section {
  flex: 1 1 0;

  height: 536px;

  border-radius: 24px;
  background: var(--Light-Blur);
  backdrop-filter: blur(16px);

  display: flex;
  flex-direction: column;

  position: relative;
  z-index: 1;
  margin-top: -90px;
}

.question_card {
  padding: 20px 24px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  border-radius: 16px;

  transition: all 400ms ease;
}

.question_card_text {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.question_card_date {
  color: var(--Gray);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

.question_card:nth-child(1),
.question_card:nth-child(4) {
  background-color: var(--Aquamarine);
  color: var(--Black);
}
.question_card:nth-child(2) {
  background-color: var(--Onyx);
  color: var(--White);
}
.question_card:nth-child(3) {
  background-color: var(--Purple-Heart);
  color: var(--White);
}

.question_card:nth-child(1) .question_card_date,
.question_card:nth-child(4) .question_card_date {
  color: var(--Gray);
}

.question_card:nth-child(2) .question_card_date,
.question_card:nth-child(3) .question_card_date {
  color: var(--White-50);
}

.question_card:nth-child(1),
.question_card:nth-child(2),
.question_card:nth-child(3),
.question_card:nth-child(4) {
  position: absolute;
}

.question_card:nth-child(1),
.question_card:nth-child(2),
.question_card:nth-child(4) {
  /* width: 456px; */
  width: 72%;
}

.question_card:nth-child(3) {
  /* width: 352px; */
  width: 56%;
}

.question_card:nth-child(1) {
  left: 0;
  top: 17px;

  z-index: 4;

  transform: rotate(-9.5deg);
}

.question_card:nth-child(2) {
  top: 160px;
  right: -25px;

  z-index: 3;

  transform: rotate(5.3deg);
}

.question_card:nth-child(3) {
  bottom: 112px;
  left: 18px;

  z-index: 2;

  transform: rotate(-4.3deg);
}

.question_card:nth-child(4) {
  bottom: -11px;
  right: 10px;

  z-index: 1;

  transform: rotate(3.5deg);
}

@media (max-width: 1000px) {
  .care_with_insight_content {
    flex-direction: column;
  }

  .answer_arrow {
    right: 0%;
    top: 50%;
    transform: translate(-50%, -75%) rotateX(180deg);
  }

  .question_card:nth-child(1),
  .question_card:nth-child(2),
  .question_card:nth-child(4) {
    width: 62%;
  }

  .question_card:nth-child(3) {
    width: 46%;
    left: 0;
  }

  .question_card:nth-child(2) {
    right: 10px;
  }

  .care_cards_section {
    width: 100%;
    flex: none;
    margin: 0;
  }

  .care_with_insight_title {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .care_with_insight_body {
    gap: 25px;
    padding-block: 43px;
  }

  .care_with_insight_title {
    font-weight: var(--Mobile-FW);
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);

    text-align: center;
  }
}

@media (max-width: 600px) {
  .care_with_insight_title {
    text-align: left;
  }

  .question_card {
    padding: 13px 15.5px;
  }

  .question_card:hover {
    z-index: 5;
  }

  .question_card_text,
  .question_card_date {
    font-size: 16px;
    line-height: 18px;
  }

  .care_info_section_asking,
  .care_info_section_arrow,
  .care_info_section_title {
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }

  .care_cards_section {
    height: 400px;
  }

  .question_card {
    gap: 7.5px;
  }

  .question_card_text {
    font-size: 14px;
  }

  .question_card_date {
    font-size: 10px;
  }

  .question_card:nth-child(1) {
    top: 5px;
  }

  .question_card:nth-child(2) {
    top: 100px;
  }

  .question_card:nth-child(3) {
    bottom: 130px;
    width: 65%;
  }

  .question_card:nth-child(4) {
    bottom: 30px;
  }
}

@media (max-width: 450px) {
  .answer_arrow {
    transform: translate(6%, -85%) rotateZ(14deg) rotateX(180deg) scale(0.75);
  }
}

/* ======================================================================================================================================================== */
.pet_owner_body {
  position: relative;
  z-index: 2;

  padding-block: 40px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;

  grid-template-areas:
    "pet_owner_info_block_1 pet_owner_info_block_1 pet_owner_info_block_2 pet_owner_info_block_3"
    "pet_owner_info_block_1 pet_owner_info_block_1 pet_owner_info_block_4 pet_owner_info_block_5";
}

.pet_owner__container {
  padding-bottom: 60px;
}

.pet_owner_info_block {
  padding: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;

  border-radius: 24px;
  background: var(--Aquamarine);
}

.pet_owner_info_block .pet_owner_info_block_title {
  color: var(--Black);

  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.pet_owner_info_block .pet_owner_info_block_title_info {
  color: var(--Gray);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.pet_owner_info_block .pet_owner_info_block_title_info > b {
  color: var(--Black);
}

/* purple variant */
.pet_owner_info_block.purple {
  background-color: var(--Purple-Heart);
}

.pet_owner_info_block.purple .pet_owner_info_block_pre_title {
  color: var(--White-50);

  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.pet_owner_info_block.purple .pet_owner_info_block_title {
  color: var(--White);
}

.pet_owner_info_block.purple .pet_owner_info_block_title_info {
  color: var(--White-50);
}

.pet_owner_info_block.purple .pet_owner_info_block_title_info > b,
.pet_owner_info_block.purple .pet_owner_info_block_pre_title > b {
  color: var(--White);
}

.pet_owner_info_icon_block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
  justify-content: start;

  padding: 32px 32px 16px 32px;

  flex: 1 0 0;

  border-radius: 24px;
  background: var(--Light-Blur);
  backdrop-filter: blur(26px);
}

.pet_owner_info_icon_block_title {
  color: var(--Black);

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.pet_owner_info_icon_block_info {
  color: var(--Gray);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1000px) {
  .pet_owner_body {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);

    grid-template-areas:
      "pet_owner_info_block_1 pet_owner_info_block_1"
      "pet_owner_info_block_1 pet_owner_info_block_1"
      "pet_owner_info_block_2 pet_owner_info_block_3"
      "pet_owner_info_block_4 pet_owner_info_block_5";
  }

  .pet_owner_info_block .pet_owner_info_block_title {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }
}
@media (max-width: 800px) {
  .pet_owner_body {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);

    grid-template-areas:
      "pet_owner_info_block_1 pet_owner_info_block_1"
      "pet_owner_info_block_2 pet_owner_info_block_3"
      "pet_owner_info_block_4 pet_owner_info_block_5";
  }

  .pet_owner_info_block {
    padding: 20px;
    gap: 24px;
  }

  .pet_owner_info_block .pet_owner_info_block_title {
    font-weight: var(--Mobile-FW);
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);

    width: 100%;
    text-align: left;
  }
}

@media (max-width: 650px) {
  .pet_owner_body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;

    grid-template-areas:
      "pet_owner_info_block_1"
      "pet_owner_info_block_2"
      "pet_owner_info_block_3"
      "pet_owner_info_block_4"
      "pet_owner_info_block_5";
  }

  .pet_owner_info_icon_block {
    align-items: center;
  }
  .pet_owner_info_icon_block_title,
  .pet_owner_info_icon_block_info {
    text-align: center;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

@media (max-width: 450px) {
  .pet_owner_info_block {
    gap: 36.5px;
  }

  .pet_owner_info_block.purple .pet_owner_info_block_pre_title {
    font-size: 32px;
  }

  .pet_owner_info_block.purple .pet_owner_info_block_title {
    font-size: 45px;
    line-height: 41px;
  }

  .pet_owner_info_block.purple .pet_owner_info_block_title_info {
    font-size: 20px;
  }
}
/* ======================================================================================================================================================== */
.the_result_body {
  padding: 105px 0 72px 0;

  display: flex;
  flex-direction: column;

  position: relative;
  z-index: 2;

  container-type: inline-size;
}

.the_result_body_title {
  color: var(--Black);

  font-size: clamp(64px, 8.5vw, 165px);
  font-style: normal;
  font-weight: 600;
  line-height: 148.4px;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  text-align: center;
}

@container (min-width: 200px) {
  .the_result_body_title {
    font-size: 11.5cqw;
  }
}

.the_result_body_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  margin-top: -65px;
}

.the_result_body_content_item {
  display: flex;
  padding: 112px 24px 24px 24px;
  flex-direction: column;
  justify-content: space-between;

  color: var(--Black);

  gap: 24px;

  flex: 1 1 0;

  border-radius: 16px;
  background: var(--Aquamarine-60);
  backdrop-filter: blur(10px);

  transition: all 0.4s ease;
}

.the_result_body_content_item_title {
  color: inherit;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;

  transition: all 0.4s ease;
}

.the_result_body_content_item_info {
  color: inherit;

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;

  transition: all 0.4s ease;
}

.the_result_body_content_item:hover {
  background-color: var(--Purple-Heart);
  color: var(--White);
}

@media (max-width: 1000px) {
  .the_result_body {
    padding-top: 0;
  }

  .the_result_body_content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);

    margin: 0;
  }

  .the_result_body_content_item {
    align-items: stretch;
  }

  .the_result_body_content_item_title,
  .the_result_body_content_item_info {
    text-align: justify;
  }

  .the_result_body_title {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }
}

@media (max-width: 800px) {
  .the_result_body_content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;

    margin: 0;
  }

  .the_result_body_content_item {
    padding: 22px;

    gap: 20px;
  }

  .the_result_body_title {
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }
}

@media (max-width: 600px) {
  .the_result_body_title {
    text-align: left;
  }

  .the_result_body_content_item_info {
    text-align: left;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

/* ======================================================================================================================================================== */
.vets_focused_on_medicine_body {
  padding: 120px 0;
  display: flex;
  gap: 30px;
  align-items: stretch;

  position: relative;
  z-index: 2;
}

.vets_focused_on_medicine_body_info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vets_focused_on_medicine_body_info_title {
  color: var(--Black);

  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.vets_focused_on_medicine_body_info_description {
  color: var(--Black);

  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.vets_focused_on_medicine_accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vets_focused_on_medicine_accordion_item {
  border-radius: 24px;
  background: var(--Light-Blur);

  display: flex;
  padding: 32px;
  flex-direction: column;
  align-self: stretch;
}

.vets_focused_on_medicine_accordion_header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;

  color: var(--Light-Gray);

  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;

  transition: margin-bottom 0.5s ease;
}

.vets_focused_on_medicine_accordion_header.active {
  color: var(--Black);
  margin-bottom: 24px;
}

.vets_focused_on_medicine_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0;
}

.vets_focused_on_medicine_accordion_content p {
  color: var(--Gray);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 1000px) {
  .vets_focused_on_medicine_body_info_title {
    text-align: center;
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }
  .vets_focused_on_medicine_body {
    padding: 60px 0;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .vets_focused_on_medicine_body_info_title {
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
    font-weight: var(--Mobile-FW);

    text-align: start;
  }
}
/* ======================================================================================================================================================== */
/* page: About Us */
/* ======================================================================================================================================================== */

.about_us_cover {
  background: var(--Who-We-Serve-Gradient);
  padding-top: 82px;

  overflow: clip;

  height: 794px;
  min-height: 750px;
}

.about_us_cover__container {
  position: relative;

  /* padding-inline: 0; */

  display: flex;
  flex-direction: column;
  align-items: start;

  height: 100%;

  container-type: inline-size;
}

.about_us_cover_title {
  container-type: inline-size;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;

  max-width: 1440px;
  width: 100%;
}

.about_us_cover_title > h2 {
  position: relative;
  z-index: 1;
  padding: 0;
  font-size: 8.8cqw;

  color: white;
  font-weight: 700;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  text-wrap: nowrap;
  text-align: center;

  overflow: clip;

  margin-inline: -25px;
}

@container (min-width: 200px) {
  .about_us_cover_title > h2 {
    font-size: 8.9cqw;
    line-height: 1;
    letter-spacing: -6px;
  }
}

.about_us_cover_subtitle {
  width: 300px;

  font-size: 20px;
  font-weight: 300;
  color: #000;

  margin: 8px 0 0 10px;
}

.about_us_cover_body {
  position: relative;

  padding-bottom: 0px;
}

.about_us_cover_bg,
.about_us_cover_bg_mobile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scale(1.4);
  transform-origin: bottom center; /* scales from bottom */
  z-index: 0; /* stay behind text */
  pointer-events: none;
  z-index: 1;
}

.about_us_cover_bg_mobile {
  transform: scale(1);
  display: none;
}

@media (max-width: 1060px) {
  .about_us_cover {
    min-height: 800px;
  }

  .about_us_cover_bg {
    transform: scale(1.9);
  }
}

@media (max-width: 1000px) {
  .about_us_cover_title > h2 {
    font-size: 8.8cqw;
    letter-spacing: -4.5px;
  }
}

@media (max-width: 800px) {
  .about_us_cover {
    /* min-height: auto; */
  }

  .about_us_cover_title > h2 {
    font-size: 10cqw;

    letter-spacing: -2px;
    text-wrap: wrap;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .about_us_cover {
    min-height: 800px;
  }

  .about_us_cover_bg {
    transform: scale(2.5);
  }
}

@media (max-width: 600px) {
  .about_us_cover_title > h2 {
    font-size: 13cqw;
  }

  .about_us_cover_bg {
    display: none;
    margin-top: 120px;
  }

  .about_us_cover_bg_mobile {
    display: block;
  }

  .about_us_cover_body {
    padding: 0;
  }
}

@media (max-width: 450px) {
  .about_us_cover_bg_mobile {
    transform: scale(1.2);
  }

  .about_us_cover_title > h2 {
    font-size: 16.3cqw;
    line-height: 0.9;
  }
}

/* ======================================================================================================================================================== */
.our_mission__container {
  position: relative;
}

.our_mission_body {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 205px 0;

  position: relative;

  gap: 30px;
}

.our_mission_blur {
  position: absolute;
  z-index: 1;
  right: -350px;
  top: -200px;

  pointer-events: none;
}

.about_us_figure {
  position: absolute;

  left: -355px;
  top: 50%;
  transform: translateY(-50%);

  z-index: 1;
}

.our_mission_title {
  color: var(--Black);

  /* font-size: clamp(65px, 955px, 113px); */
  font-size: clamp(64px, 8vw, 120px);
  font-style: normal;
  font-weight: 600;
  line-height: 113.5px;
  letter-spacing: -5.6px;
  text-transform: uppercase;

  padding-left: 60px;

  flex: 1 1 0;

  position: relative;
  z-index: 2;
}

.our_mission_description {
  color: var(--Gray);

  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;

  flex: 1 1 0;

  position: relative;
  z-index: 2;
}
.our_mission_description > b {
  color: var(--Black);
}

@media (max-width: 1000px) {
  .our_mission_body {
    flex-direction: column;
    gap: 20px;
  }

  .our_mission_description {
    text-align: center;
    font-size: 24px;
  }

  .our_mission_title {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }
}

@media (max-width: 900px) {
}

@media (max-width: 800px) {
  .our_mission_title {
    font-size: var(--Mobile-FS);
  }
}

@media (max-width: 600px) {
  .our_mission_body {
    align-items: start;
  }

  .our_mission_description {
    text-align: justify;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }

  .our_mission_title {
    line-height: normal;
    text-align: left;
    padding: 0;
  }

  .about_us_figure {
    width: 80%;
    left: -35%;
    top: 38%;
  }
}

@media (max-width: 450px) {
  .our_mission_body {
    padding: 200px 0 55px 0;
  }
}
/* ======================================================================================================================================================== */
.comp_at_core__container {
  position: relative;
}

.comp_at_core_body {
  display: flex;
  flex-direction: column;

  gap: 47.5px;

  padding: 125px 0;

  position: relative;
  z-index: 2;
}

.comp_at_core_blur_green,
.comp_at_core_blur_purple {
  position: absolute;
  z-index: 1;
}

.comp_at_core_blur_green {
  top: -100px;
  left: -300px;
}

.comp_at_core_blur_purple {
  bottom: -400px;
  right: -250px;
}

.comp_at_core_info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 200px;
}

.comp_at_core_title {
  color: var(--Black);

  font-size: clamp(65px, 88px, 125px);
  font-style: normal;
  font-weight: 600;
  line-height: 88px;
  letter-spacing: -4.4px;
  text-transform: uppercase;
}

.comp_at_core_desc {
  color: var(--Gray);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.comp_at_core_desc > b {
  color: var(--Black);
}

.comp_at_core_card_extended {
  padding: 24px;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  color: var(--Gray);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.comp_at_core_card_extended > b {
  color: var(--Black);
}

.comp_at_core_card {
  display: flex;

  padding: 24px;

  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 75px;

  border-radius: 24px;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;

  align-self: stretch;

  overflow: hidden;
}

.comp_at_core_card,
.comp_at_core_card_extended,
.comp_at_core_icon,
.comp_at_core_card_info {
  transition: all 0.5s ease;
}

.comp_at_core_card_info {
  margin-right: auto;
}

.comp_at_core_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;

  gap: 20px;
}

.comp_at_core_card:nth-child(odd) {
  background: var(--Purple-Heart);
}

.comp_at_core_card:nth-child(odd) .comp_at_core_card_info {
  color: var(--White);
}

.comp_at_core_card:nth-child(even) {
  background: var(--Aquamarine);
}

.comp_at_core_card:nth-child(even) .comp_at_core_card_info {
  color: var(--Black);
}

.comp_at_core_card:hover {
  background: var(--Light-Blur);
  backdrop-filter: blur(20px);
}

.comp_at_core_card:hover .comp_at_core_icon,
.comp_at_core_card:hover .comp_at_core_card_info {
  opacity: 0;
}

.comp_at_core_card:hover .comp_at_core_card_extended {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1000px) {
  .comp_at_core_body {
    padding: 50px 0;
  }

  .comp_at_core_info {
    flex-direction: column;
    gap: 25px;
  }

  .comp_at_core_title,
  .comp_at_core_desc {
    text-align: center;
    width: 100%;
  }

  .comp_at_core_title {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }

  .comp_at_core_cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .comp_at_core_card {
    align-items: center;
  }
}

@media (max-width: 800px) {
  .comp_at_core_body {
    padding: 0;
  }

  .comp_at_core_title {
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }
}

@media (max-width: 700px) {
  .comp_at_core_cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .comp_at_core_card {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .comp_at_core_title {
    text-align: start;
  }

  .comp_at_core_desc {
    text-align: justify;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

@media (max-width: 500px) {
  .comp_at_core_card_extended {
    font-size: 18px;
    line-height: normal;
  }
}

/* ======================================================================================================================================================== */
.our_team__container {
  position: relative;
}

.our_team_blur_green,
.our_team_blur_purple {
  position: absolute;
  z-index: 1;
}

.our_team_blur_green {
  left: 150px;
  bottom: -550px;
}

.our_team_blur_purple {
  left: -100px;
  bottom: 0;
}

.our_team_body {
  display: flex;
  flex-direction: column;

  padding: 100px 0;

  position: relative;
  z-index: 2;

  container-type: inline-size;
}

.our_team_title {
  color: var(--Black);

  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 158.548px;
  text-transform: uppercase;
}

@container (min-width: 200px) {
  .our_team_title {
    font-size: 12.2cqw;
  }
}

.our_team_members {
  display: flex;
  justify-content: space-between;
  align-items: stretch;

  gap: 20px;

  margin-top: -50px;
}

.our_team_members_list,
.our_team_member_info {
  flex: 1 1 0;
}

.our_team_members_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: auto;
}

.our_team_members_list_item,
.member_item_arrow_wrapper {
  transition: all 0.3s ease;
}

.our_team_members_list_item {
  padding: 28px 40px 28px 24px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 41px;

  align-items: center;

  border-radius: 123px;
  background: var(--Light-Blur);
  backdrop-filter: blur(12.3px);

  cursor: pointer;
}

.our_team_members_list_item:hover {
  background: var(--Aquamarine-60);
}

.our_team_members_list_item:hover .member_item_arrow_wrapper {
  background: var(--White);
}

.our_team_members_list_item.active {
  background: var(--Aquamarine);
  backdrop-filter: unset;
}

.our_team_members_list_item.active .member_item_arrow_wrapper {
  background: var(--White);
}

.member_avatar {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.member_personal_info,
.selected_member_personal_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
}

.member_name,
.selected_member_name {
  color: var(--Onyx);

  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.member_info,
.selected_member_info {
  color: var(--Gray);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
}

.member_item_arrow_wrapper {
  display: flex;
  padding: 11px;
  align-items: center;

  border-radius: 43.5px;

  background: var(--Aquamarine);
}

.our_team_member_info {
  padding: 33px 41px;
  border-radius: 41px;
  background: var(--Light-Blur);
  backdrop-filter: blur(12.3px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
}

.member_selected_info {
  color: var(--Gray);
  font-size: 18.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.selected_member_wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
}

.selected_member_avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.selected_member_name {
  font-size: 24px;
}
.selected_member_info {
  font-size: 20px;
}

@media (max-width: 1000px) {
  .our_team_title {
    text-align: center;
    letter-spacing: normal;
  }

  .our_team_members_list_item {
    padding: 20px 32px 20px 18px;
    gap: 21px;
  }

  .our_team_members {
    margin: 0;
  }

  .member_avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
  }

  .selected_member_avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
	object-fit: cover;
  }

  .member_info {
    font-size: 18px;
  }

  .our_team_member_info {
    padding: 25px 33px;
    gap: 20px;
  }

  .member_selected_info {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .our_team_members {
    flex-direction: column;
  }

  .our_team_members_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 10px;
  }

  .our_team_members_list_item {
    padding: 16px 12px;
  }
}

@media (max-width: 800px) {
  .member_name {
    font-size: 18px;
  }

  .member_avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  }

  .member_item_arrow_wrapper {
    padding: 6px;
  }
}

@media (max-width: 600px) {
  .our_team_title {
    line-height: normal;
  }
}

@media (max-width: 500px) {
  .our_team_members_list {
    grid-template-columns: 1fr;
  }

  .member_personal_info {
    gap: 0;
  }

  .member_info {
    font-size: 16px;
  }

  .member_name,
  .member_info {
    line-height: normal;
  }

  .selected_member_wrapper {
    gap: 15px;
  }

  .selected_member_avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
	object-fit: cover;
  }

  .selected_member_name,
  .selected_member_info {
    font-size: 16px;
    line-height: normal;
  }

  .selected_member_name {
    font-size: 18px;
  }

  .our_team_member_info {
    padding: 24px;
  }
}

/* ======================================================================================================================================================== */
.with_you__container {
  position: relative;
}

.with_you_body {
  display: flex;
  flex-direction: column;
  gap: 32px;

  padding: 72px 0;
  position: relative;
  z-index: 2;

  container-type: inline-size;
}

.with_you_blur_green,
.with_you_blur_purple {
  position: absolute;
  z-index: 1;

  pointer-events: none;
}

.with_you_blur_green {
  right: -150px;
  top: -450px;
}

.with_you_blur_purple {
  left: 100px;
  bottom: -250px;
}

.color-hover-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.color-hover-wrapper:hover {
  transform: scale(1.1);
}

.image-layers {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-layers img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ ensures uniform scaling and crop */
  transition: opacity 0.4s ease;
  display: block;
}

.img-top {
  z-index: 2;
}

.color-hover-wrapper:hover .img-top {
  opacity: 0;
}

.with_you_title {
  color: var(--Black);

  font-style: normal;
  font-weight: 600;
  line-height: 100px;
  letter-spacing: -5.5px;
  text-transform: uppercase;
}

@container (min-width: 200px) {
  .with_you_title {
    font-size: 11cqw;
  }
}

.with_you_content {
  display: flex;
  gap: 20px;
}

.with_you_info_section {
  display: flex;
  flex-direction: column;
  gap: 32px;

  flex: 1 1 0;
}

.with_you_info_description {
  color: var(--Gray);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.with_you_info_description > b {
  color: var(--Black);
}

.with_you_info_arrow {
  position: relative;
}

.with_you_info_curved_arrow {
  position: relative;
  z-index: 2;
  left: 50px;
}

.with_you_circles_wrapper {
  border-radius: 32px;
  background: var(--Light-Blur);
  backdrop-filter: blur(6px);

  position: relative;
  top: -70px;
  z-index: 1;

  height: 560px;

  flex: 1 1 0;
}

.with_you_circles_wrapper > div {
  position: absolute;
  z-index: 3;

  width: 300px;
  height: 300px;
}

.with_you_circles_item_1 {
  top: -30px;
  left: -23px;
}

.with_you_circles_item_2 {
  top: 40px;
  right: 0px;
}

.with_you_circles_item_3 {
  bottom: -45px;
  right: 160px;
}

.with_you_circles_item_1,
.with_you_circles_item_2,
.with_you_circles_item_3 {
  transition: transform 0.4s ease;
}

.with_you_circles_item_1:hover,
.with_you_circles_item_2:hover,
.with_you_circles_item_3:hover {
  transform: scale(1.2);
}

@media (max-width: 1250px) {
  .with_you_title,
  .with_you_info_description {
    text-align: center;
  }

  .with_you_info_arrow {
    display: none;
  }

  .with_you_content {
    flex-direction: column;
  }

  .with_you_circles_wrapper {
    height: fit-content;
    top: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    align-items: center;
    justify-items: center;
  }

  .with_you_circles_wrapper > div {
    position: static;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .with_you_title {
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }
}

@media (max-width: 800px) {
  .with_you_content {
    align-items: center;
  }

  .with_you_circles_wrapper > div {
    width: 300px;
  }

  .with_you_circles_wrapper {
    grid-template-columns: 1fr;
    width: 400px;
    gap: 50px;
    padding: 50px 0;
  }

  .with_you_title {
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
    text-align: start;
  }

  .with_you_info_description {
    text-align: justify;
  }
}

@media (max-width: 600px) {
  .with_you_blur_green {
    top: -300px;
  }

  .with_you_title {
    text-align: start;
  }

  .with_you_info_description {
    text-align: justify;
    font-size: var(--Mobile-Body-FS);
    line-height: var(--Mobile-Body-LH);
  }
}

/* ======================================================================================================================================================== */
.partner_with_us__container {
  position: relative;
}

.partner_with_us_green_blur {
  position: absolute;
  z-index: 1;
}

.partner_with_us_green_blur {
  right: -400px;
  top: -250px;
  transform: rotate(-50deg);
}

.partner_with_us_body {
  padding-bottom: 200px;

  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;

  position: relative;
  z-index: 2;
}

.partner_with_us_form,
.partner_with_us_banner {
  flex: 1 1 0;
}

.partner_with_us_form {
  padding-top: 100px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  row-gap: 45px;
  column-gap: 20px;

  grid-template-areas:
    "partner_form_block_1 partner_form_block_2"
    "partner_form_block_3 partner_form_block_4"
    "partner_form_block_5 partner_form_block_5"
    "partner_form_block_6 partner_form_block_6"
    "partner_form_block_7 partner_form_block_7";
}

.partner_with_us_banner {
  display: flex;
  padding: 120px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;

  border-radius: 24px;
  background: var(--Purple-Heart);
}

.partner_with_us_banner_title {
  color: var(--White);

  font-size: 88px;
  font-style: normal;
  font-weight: 600;
  line-height: 88px;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.partner_with_us_banner_info {
  color: var(--White-50);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.partner_with_us_banner_info > b {
  color: var(--White);
}

.required_field {
  color: var(--Red);
}

.input_label {
  position: relative;

  color: var(--Gray);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox_label {
  position: relative;
}

.partner_input {
  display: flex;
  padding: 4px 0px 8px 0px;

  color: var(--Black);

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;

  outline: none;
  border: none;

  border-bottom: 1px solid var(--Light-Gray);

  background: transparent;

  border-radius: unset;
}

.partner_input::placeholder {
  color: var(--Light-Gray);
}

.input_label.input_error .partner_input {
  border-color: var(--Red);
}

.custom_checkbox_wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.custom_checkbox {
  display: none;
}

.custom_checkmark {
  width: 25px;
  height: 25px;
  border: 1.5px solid var(--Light-Gray);
  display: inline-block;
  position: relative;
  /* margin-right: 3px; */
  border-radius: 2px;
  top: 2px;
  box-sizing: border-box;
}

label.checkbox_error .custom_checkmark {
  border-color: var(--Red);
}

.checkbox_icon {
  display: none;
}

.custom_checkbox:checked + .custom_checkmark .checkbox_icon {
  display: block;
  margin-left: 3px;
  transform: scale(1.2);
}

.checkbox_label {
  color: var(--Gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;

  cursor: pointer;
}

.checkbox_label a {
  color: var(--Purple-Heart);
  font-weight: 700;
}
.checkbox_label a:hover {
  text-decoration: underline;
}

.partners_submit_button_wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

.partners_submit_button {
  border-radius: 56px;
  background: var(--Onyx);
  display: flex;
  padding: 14px 40px;

  color: var(--White);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

#partner_form_message_container {
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 14px;
  display: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

@media (max-width: 1000px) {
  .partner_with_us_body {
    flex-direction: column;
  }

  .partner_with_us_banner {
    padding: 100px 32px;
    gap: 32px;
  }

  .partner_with_us_form {
    padding-top: 20px;

    width: 100%;

    row-gap: 25px;
  }

  .partners_submit_button_wrapper {
    justify-content: start;
  }
}

@media (max-width: 800px) {
  .partner_with_us_banner {
    padding: 80px 24px;
  }

  .partner_with_us_banner_title {
    font-weight: var(--Mobile-FW);
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }

  .partners_submit_button {
    padding: 10px 24px;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .partner_with_us_banner_title {
    letter-spacing: normal;
  }
}

@media (max-width: 450px) {
  .partner_with_us_form {
    grid-template-columns: 1fr;

    grid-template-areas:
      "partner_form_block_1"
      "partner_form_block_2"
      "partner_form_block_3"
      "partner_form_block_4"
      "partner_form_block_5"
      "partner_form_block_6"
      "partner_form_block_7";
  }
}
/* ======================================================================================================================================================== */
/* page: Privacy */
/* ======================================================================================================================================================== */

.policy_body,
.terms_body {
  padding-block-start: 100px;
  padding-block-end: 180px;
}

.policy_body h1,
.terms_body h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.last-updated {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy_body h2,
.terms_body h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.policy_body ul,
.terms_body ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}

.policy_body a,
.terms_body a {
  color: #0077cc;
  text-decoration: none;
}

.policy_body a:hover,
.terms_body a:hover {
  text-decoration: underline;
}

.policy_body strong,
.terms_body strong {
  display: inline-block;
  margin-bottom: 0.3rem;
}

.thank-you {
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
/* ======================================================================================================================================================== */
/* page: Contact Us */
/* ======================================================================================================================================================== */
.contac_us {
  background: var(--Gradient);
  padding-top: 82px;

  overflow: clip;
}

.contact_us_body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

  padding-top: 50px;
  padding-bottom: 225px;
}

.contact_us_info_block {
  display: flex;
  flex-direction: column;

  gap: 85px;
}

.contact_us_info_block_title {
  color: var(--Black);

  /* font-size: 154px; */
  font-size: clamp(80px, 10vw, 154px);
  font-style: normal;
  font-weight: 600;
  line-height: 140px;
  letter-spacing: -7.7px;
  text-transform: uppercase;

  padding-top: 40px;
}

.contact_us_info_block_subtitle {
  color: var(--Gray);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;

  padding-inline: 50px;
}

.contact_us_info_block_subtitle > b {
  color: var(--Black);
  font-weight: 700;
}

.contact_us_form_block,
.contact_us_info_block {
  flex: 1 1 0;
}

.contact_us_form_block {
  padding: 0 32px 40px 32px;

  width: 710px;

  border-radius: 48px;
  background: #fff;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_us_form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  row-gap: 45px;
  column-gap: 20px;
}

.contact_us_input {
  display: flex;
  padding: 4px 0px 8px 0px;

  color: var(--Black);

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;

  outline: none;
  border: none;

  border-bottom: 1px solid var(--Light-Gray);

  background: transparent;
}

.contact_us_input::placeholder {
  color: var(--Light-Gray);
}

.input_label.input_error .contact_us_input {
  border-color: var(--Red);
}

.checkbox_label,
.checkbox_input_label {
  position: relative;
  width: 100%;
}

.checkbox_input_label {
  height: fit-content;
}

.input_error::after {
  content: attr(data-error);
  color: var(--Red);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  position: absolute;
  top: 100%; /* below the input */
  left: 0;
  margin-top: 4px;

  width: 350px;
  text-wrap: wrap;
}

.vets_field_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.vets_field_wrapper .input_label {
  width: 50%;
}

.contact_us_submit_button_wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

.contact_us_submit_button {
  border-radius: 56px;
  background: var(--Onyx);
  display: flex;
  padding: 14px 40px;

  color: var(--White);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

#contact_us_form_message_container {
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 14px;
  display: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

@media (max-width: 1300px) {
  .contact_us_info_block {
    gap: 40px;
  }

  .contact_us_info_block_subtitle {
    padding-inline: 25px;
  }
}

@media (max-width: 500px) {
  .contact_us_info_block_title {
    font-size: 13vw;
    letter-spacing: normal;
    line-height: normal;
  }

  .contact_us_info_block_subtitle {
    font-size: 18px;
  }

  .contact_us_form {
    grid-template-columns: 1fr;
  }

  .input_label {
    grid-column: 1 / span 2;
  }

  .vets_field_wrapper {
    flex-direction: column;
    gap: 45px;
  }

  .vets_field_wrapper .input_label {
    width: 100%;
  }

  .contact_us_submit_button {
    font-size: 20px;
    padding: 8px 18px;
  }
}

@media (max-width: 1000px) {
  .contact_us_body {
    flex-direction: column;
    padding-top: 0;
  }

  .contact_us_info_block {
    align-items: center;
    gap: 10px;
  }

  .contact_us_info_block_subtitle {
    text-align: center;
  }

  .contact_us_form_block {
    /* padding-top: 40px; */

    width: 100%;

    row-gap: 25px;
  }

  .contact_us_submit_button_wrapper {
    justify-content: start;
  }
}

/* ======================================================================================================================================================== */

#successAboutUsMessage {
  position: relative;
  bottom: 150px;
  display: none;
  color: green;
  margin-top: 10px;
  grid-column: span 2;
}

#errorAboutUsMessage {
  position: relative;
  bottom: 150px;
  display: none;
  color: red;
  margin-top: 10px;
  grid-column: span 2;
}

#successContactUsMessage {
  position: relative;
  bottom: 150px;
  display: none;
  color: green;
  margin-top: 10px;
  grid-column: span 2;
}

#errorContactUsMessage {
  position: relative;
  bottom: 150px;
  display: none;
  color: red;
  margin-top: 10px;
  grid-column: span 2;
}

@media (max-width: 1000px) {
  #errorContactUsMessage,
  #successContactUsMessage {
    bottom: 120px;
  }
}

#successBetaModalMessage {
  position: absolute;
  bottom: 84px;
  display: none;
  color: green;
  margin-top: 10px;
}

#errorBetaModalMessage {
  position: absolute;
  bottom: 84px;
  display: none;
  color: red;
  margin-top: 10px;
}

/* ======================================================================================================================================================== */
.resources_cover {
  background: var(--Gradient);

  min-height: 760px;
}

.resources_cover__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;

  container-type: inline-size;
}

.resources_cover__container,
.resources_cover_body {
  position: relative;
}

.resources_cover_body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  width: 100%;

  gap: 40px;

  margin-top: 8px;
}

.resources_cover_body_left_block,
.resources_cover_body_right_block {
  width: 50%;

  position: relative;
}

.resources_cover_body_left_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;

  row-gap: 16px;
  column-gap: 25px;
}

.resources_cover_body_right_block {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.resources_cover_title {
  color: var(--White);

  font-style: normal;
  font-weight: 700;
  line-height: 112.128px;
  letter-spacing: -5.606px;
  text-transform: uppercase;

  white-space: nowrap;

  text-align: center;

  position: relative;
}

@container (min-width: 200px) {
  .resources_cover_title {
    font-size: 8.4cqw;
    line-height: 1;
  }
}

.resources_cover_subtitle {
  color: var(--Black);

  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;

  grid-column: 1;
}

.resources_cover_bg_img {
  opacity: 0.5;

  position: relative;
  z-index: 2;

  transition: opacity 0.4s ease, z-index 0.4s ease;
}

.resources_cover_bg_img:hover {
  opacity: 1;
  z-index: 3;
}

.resources_cover_bg {
  position: absolute;
  bottom: 30px;
  z-index: 3;
  pointer-events: none;
}

.knowledge_nurtures {
  bottom: -22%;
}

.kidness_grows {
  grid-column: 2 / 4;
  grid-row: 1;
  justify-self: center;
  align-self: center;
}

.happy_tails {
  grid-column: 4 / 9;
  grid-row: 1;
  justify-self: center;
  align-self: self-start;
  padding-top: 30px;
}

.steps_to_a_happier {
  grid-column: 9 / 13;
  grid-row: 1;
  align-self: center;

  margin-top: -50px;
}

.from_curiosity {
  grid-column: 6 / 11;
  grid-row: 2;
  align-self: start;
}

.grow_together {
  grid-column: 1 / 5;
  grid-row: 2;
}
.every_paw_counts,
.discover,
.learning,
.knowledge_nurtures {
  width: fit-content;
}

.every_paw_counts {
  align-self: center;
}

.discover,
.knowledge_nurtures {
  grid-row: 2;
}

.learning,
.every_paw_counts {
  grid-row: 3;
}

.knowledge_nurtures {
  align-self: self-end;
  margin-bottom: -50px;
}

@media (max-width: 1230px) {
  .happy_tails {
    grid-column: 1 / 6;
    justify-self: center;
    margin-top: -16px;
  }
  .steps_to_a_happier {
    grid-column: 7 / span 3;
  }

  .kidness_grows,
  .grow_together {
    display: none;
  }

  .knowledge_nurtures {
    bottom: -42%;
  }

  .from_curiosity {
    grid-column: 5 / span 5;
  }
}

@media (max-width: 1000px) {
  .from_curiosity {
    grid-column: 4 / span 5;
  }

  .knowledge_nurtures {
    visibility: hidden;
  }

  .resources_cover_bg {
    right: -100px;
  }
}

@media (max-width: 850px) {
  .resources_cover_title {
    white-space: normal;
    text-align: start;
    letter-spacing: normal;
    line-height: 0.9;
  }

  .resources_cover_body_left_block {
    width: 100%;
    justify-items: center;
    align-items: center;
    gap: 15px;
  }

  .resources_cover_body_right_block {
    display: none;
  }

  .knowledge_nurtures {
    visibility: visible;
    bottom: 0;
  }
}

@media (max-width: 600px) {
  .resources_cover_bg {
    bottom: -2%;
  }

  .knowledge_nurtures {
    margin: 0;
  }

  .learning {
    justify-self: self-end;
  }

  .discover {
    align-self: center;
    justify-self: center;
    width: 100%;
  }

  .knowledge_nurtures {
    width: 90%;
    align-self: start;
    justify-self: end;
  }

  .every_paw_counts {
    width: 80%;
    align-self: start;
    justify-self: end;
  }

  .resources_cover_title {
    font-size: 11cqw;
    text-align: left;
  }

  .resources_cover_body {
    height: 100%;
  }
}

@media (max-width: 450px) {
  .learning {
    width: 80%;
  }

  .resources_cover_title {
    font-size: 12.5cqw;
    letter-spacing: -3px;
  }

  .resources_cover_subtitle {
    align-self: self-start;
  }
}

/* ======================================================================================================================================================== */
/* page: Resources */
/* ======================================================================================================================================================== */
.top_articles_body {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 45px 0 23px 0;

  container-type: inline-size;
}

.top_articles_title {
  color: var(--Black);

  font-style: normal;
  font-weight: 600;
  line-height: 178.069px; /* 90% */
  letter-spacing: -9.893px;
  text-transform: uppercase;
}

@container (min-width: 200px) {
  .top_articles_title {
    font-size: 15cqw;
  }
}

.top_articles_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;

  column-gap: 20px;

  margin-top: -55px;
}

.top_article_item {
  padding: 16px;

  border-radius: 24px;
  background: var(--Aquamarine-60);
  color: var(--Black);
  backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: start;

  gap: 24px;

  transition: all 0.4s ease;
}

.top_article_item:hover {
  background-color: var(--Purple-Heart);
  color: var(--White);
}

.top_article_item:hover .top_article_timestamp {
  color: var(--White-50);
}

.top_article_item > img {
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.top_article_tags_wrapper,
.articles_filter_tags_wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top_article_tag,
.articles_filter_tag {
  border-radius: 40px;
  background: var(--White-1);
  padding: 6px 18px;

  color: var(--Gray);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  transition: all 0.4s ease;
}

.articles_filter_tag:hover,
.articles_filter_tag.active {
  background: var(--Purple-Heart);
  color: var(--White);
}

.articles_filter_tag {
  cursor: pointer;
}

.top_article_title {
  color: inherit;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.top_article_timestamp {
  color: var(--Gray);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.108px;
  text-transform: uppercase;

  padding-top: 20px;

  transition: all 0.4s ease;

  margin-top: auto;
}

.top_articles_slider_controls,
.explore_more_slider_controls {
  display: none;
}

@media (min-width: 700px) {
  .top_articles_slider_wrapper {
    width: 100%;
  }

  .top_articles_slider_track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    column-gap: 20px;
    margin-top: -55px;
  }
}

@media (max-width: 700px) {
  .top_articles_slider_wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .top_articles_slider_track {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
  }

  .top_article_item {
    flex: 0 0 100%;
  }

  .top_articles_slider_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;

    width: 80%;
  }

  .top_articles_slider_dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .slider_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .slider_dot.active {
    background-color: var(--Purple-Heart);
    transform: scale(1.2);
  }

  .slider_arrow {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .slider_arrow:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 850px) {
  .top_articles_list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    row-gap: 20px;
  }

  .top_articles_body {
    padding-top: 0;
  }
}

@media (max-width: 630px) {
  .top_articles_title {
    line-height: normal;
    letter-spacing: -5px;
  }

  .top_articles_list {
    margin-top: 0;
  }
}

@media (max-width: 500px) {
  .top_article_item {
    padding: 12px;
    gap: 14px;
  }

  .top_article_title {
    flex-grow: 1;
  }
}
/* ======================================================================================================================================================== */
.articels_list_body {
  padding: 65px 0 275px 0;
}

.articles_list_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 70px;
}

.articles_list_search_input {
  display: flex;
  align-self: flex-start;
  justify-content: start;
  align-items: center;

  gap: 16px;

  padding: 0 18px 12px 6px;

  border-bottom: 1px solid var(--Light-Gray);

  min-width: 220px;
}

#articles_search {
  color: var(--Black);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  width: 100%;

  outline: none;
  border: none;

  background: transparent;
}

#articles_search::placeholder {
  color: var(--Light-Gray);
}

.articles_list_items_wrapper {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.articles_list_item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
  height: 100%;
}

.articles_list_item:nth-child(even) {
  flex-direction: row-reverse;
}

.articles_list_item_info,
.articles_list_item_image {
  width: 50%;
}

.articles_list_item_image {
  object-fit: contain;
  border-radius: 24px;
}

.articles_list_item_info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: stretch;

  gap: 24px;

  position: relative;
}

.articles_list_item_info_title {
  color: var(--Black);

  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.articles_list_item_info_desc {
  color: var(--Gray);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  flex-grow: 1;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.articles_list_item,
.top_article_item {
  cursor: pointer;
}

@media (max-width: 850px) {
  .articles_list_items_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 20px;
    row-gap: 20px;
    gap: 75px;
  }

  .articles_list_item,
  .articles_list_item:nth-child(even) {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }

  .articles_list_item_info,
  .articles_list_item_image {
    width: 100%;
  }

  .articles_list_item_info {
    height: 100%;
    gap: 18px;
  }

  .articles_list_item_info_title {
    font-size: 28px;
  }
}

@media (max-width: 700px) {
  .articles_list_search_input {
    width: 100%;
  }

  .articles_list_filter {
    flex-direction: column-reverse;
    row-gap: 20px;

    align-items: start;
  }
}

@media (max-width: 600px) {
  .top_article_timestamp,
  .articles_list_item_info_desc {
    font-size: 14px;
    /* font-size: var(--Mobile-Body-FS); */
    line-height: var(--Mobile-Body-LH);
  }

  .pagination {
    padding-top: 0px
  }
}

@media (max-width: 550px) {
  .articles_list_items_wrapper {
    display: flex;
  }
}
/* ======================================================================================================================================================== */
.pagination {
  padding-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination_body {
  display: flex;
  align-items: center;
  gap: 40px;
}

.pagination_navigation {
  cursor: pointer;
}

.pagination_pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination_page {
  padding: 6px;

  color: var(--Black);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;

  border-radius: 48px;
  width: 44px;

  text-align: center;
  vertical-align: center;

  cursor: pointer;
}

.pagination_page.active {
  background: var(--Purple-Heart);
  color: var(--White);

  font-weight: 700;
}

/* ======================================================================================================================================================== */

.help_nearby_body {
  display: flex;
  flex-direction: column;

  padding: 40px 0 200px 0;

  position: relative;
  z-index: 2;

  container-type: inline-size;
}

.help_nearby_title {
  color: var(--Black);
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 158.548px;
  text-transform: uppercase;
}

@container (min-width: 200px) {
  .help_nearby_title {
    font-size: 14.5cqw;
  }
}

.help_nearby_members {
  display: flex;
  justify-content: space-between;
  align-items: stretch;

  gap: 20px;

  margin-top: -50px;
}

.help_nearby_members_list,
.help_nearby_member_info {
  flex: 1 1 0;
}

.help_nearby_members_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: auto;
  height: 644px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  align-items: stretch;
  justify-content: flex-start;
}

.help_nearby_members_list::-webkit-scrollbar {
  display: none;
}

.help_nearby_members_list_item,
.member_item_arrow_wrapper {
  transition: all 0.3s ease;
}

.help_nearby_members_list_item {
  padding: 28px 40px 28px 24px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 41px;

  align-items: center;

  border-radius: 123px;
  background: var(--Light-Blur);
  backdrop-filter: blur(12.3px);

  cursor: pointer;
}

.help_nearby_members_list_item:hover {
  background: var(--Aquamarine-60);
}

.help_nearby_members_list_item:hover .member_item_arrow_wrapper {
  background: var(--White);
}

.help_nearby_members_list_item.active {
  background: var(--Aquamarine);
  backdrop-filter: unset;
}

.help_nearby_members_list_item.active .member_item_arrow_wrapper {
  display: none;
}

.helpers_actions_wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.help_nearby_members_list_item.active .helpers_actions_wrapper {
  display: flex;
}

.helper_active_icon_wrapper {
  position: relative;

  justify-content: center;
  align-items: center;

  padding: 10.5px;

  border-radius: 32px;

  aspect-ratio: 1 / 1;

  background-color: var(--White);

  transition: all 0.3s ease;
}

.helper_active_icon_wrapper svg {
  transition: all 0.3s ease;
}

.helper_active_icon_wrapper:hover {
  background-color: var(--Black);
}

.helper_active_icon_wrapper:hover svg path {
  stroke: var(--White);
}

.help_member_avatar {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.help_member_personal_info,
.selected_help_member_personal_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
}

.help_member_name,
.selected_help_member_name {
  color: var(--Onyx);

  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.help_member_info,
.selected_help_member_info {
  color: var(--Gray);

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
}

.member_item_arrow_wrapper {
  display: flex;
  padding: 11px;
  align-items: center;
  justify-content: center;

  border-radius: 43.5px;

  background: var(--Aquamarine);
}

.help_nearby_member_info {
  padding: 33px 41px;
  border-radius: 41px;
  background: var(--Light-Blur);
  backdrop-filter: blur(12.3px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;

  height: 644px;
}

.helper_member_selected_info {
  color: var(--Gray);
  font-size: 18.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

/* .selected_member_wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
} */

.selected_help_member_avatar {
  width: 120px;
}

.selected_help_member_name {
  font-size: 24px;
}
.selected_help_member_info {
  font-size: 20px;
}

@media (max-width: 1000px) {
  .help_nearby_title {
    text-align: center;
    font-size: var(--Tablet-FS);
    letter-spacing: normal;
  }

  .help_nearby_members_list_item {
    padding: 20px 32px 20px 18px;
    gap: 21px;
  }

  .help_nearby_members {
    margin: 0;
  }

  .help_member_avatar {
    width: 75px;
    height: 75px;
  }

  .selected_help_member_avatar {
    width: 90px;
    height: 90px;
  }

  .help_member_info {
    font-size: 18px;
  }

  .help_nearby_member_info {
    padding: 25px 33px;
    gap: 20px;
  }

  .helper_member_selected_info {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .help_nearby_members {
    flex-direction: column;
  }

  .help_nearby_members_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 10px;
  }

  .help_nearby_members_list_item {
    padding: 16px 12px;
  }

  .help_member_info {
    display: none;
  }
}

@media (max-width: 800px) {
  .help_member_name {
    font-size: 18px;
  }

  .help_member_avatar {
    width: 45px;
    height: 45px;
  }

  .member_item_arrow_wrapper {
    padding: 6px;
  }

  .help_nearby_title {
    font-size: var(--Mobile-FS);
  }
}

@media (max-width: 600px) {
  .help_nearby_title {
    line-height: normal;
  }
}

@media (max-width: 500px) {
  .help_nearby_members_list {
    grid-template-columns: 1fr;
  }

  .helpers_actions_wrapper {
    transform: scale(0.75);
  }
}

/* Tooltip bubble */
.helper_active_icon_wrapper::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px); /* small lift */

  border-radius: 40px;
  background: var(--Onyx);
  backdrop-filter: blur(12px);

  color: var(--White-70);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-wrap: nowrap;

  padding: 8px 16px;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.2s ease, transform 0.2s ease;

  z-index: 10;

  width: fit-content;
}

.helper_active_icon_wrapper:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px); /* slide up */
}
/* ======================================================================================================================================================== */
.resources_g_b_1,
.resources_g_b_2,
.resources_p_b_1,
.resources_p_b_2,
.resources_p_b_3,
.resources_p_b_4 {
  position: absolute;
  z-index: 1;

  pointer-events: none;

  bottom: -1000px;
}

/* purple */
.resources_p_b_1 {
  bottom: -400px;
  left: -50px;
}
.resources_p_b_2 {
  bottom: -1800px;
  right: -300px;
}
.resources_p_b_3 {
  bottom: -3000px;
  right: -300px;
}
.resources_p_b_4 {
  bottom: -3300px;
  right: -250px;
}

/* green */
.resources_g_b_1 {
  bottom: -700px;
  left: -150px;
}
.resources_g_b_2 {
  bottom: -2500px;
  left: -150px;
}

/* ======================================================================================================================================================== */
/* page: Article */
/* ======================================================================================================================================================== */
main.page {
  --max-inline-width: 645px;
}

article[class*="inner__container"] {
  max-inline-size: var(--max-inline-width);
  margin-inline: 0;
  padding-inline: 0;
}

/* ======================================================================================================================================================== */

.article_cover {
  padding-top: 82px;

  height: 100vh;
}

.article_cover__container {
  height: 100%;
}

.article_cover_body {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  height: 95%;

  /* height: calc(100vh - (82px * 2)); */
}

.left_gradient,
.right_gradient {
  border-radius: 24px;
  background: var(--Gradient);

  width: 25%;

  height: 100%;
}

.article_read_time,
.article_issue_date {
  color: var(--Gray);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.article_read_time {
  margin-bottom: 30px;
}
.article_issue_date {
  margin-top: 30px;
}
.article_title {
  /* margin-bottom: 40px; */
}
.article_author_info {
  /* margin-bottom: 48px; */
}

.article_cover_info .top_article_tags_wrapper {
  /* margin-bottom: 16px; */
}

.article_title {
  color: var(--Black);

  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: Inter;
}

.author_avatar {
  width: 64px;
  height: 64px;
  border-radius: 64px;
  aspect-ratio: 1/1;

  object-fit: cover;
}

.author_name {
  color: var(--Black);

  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.author_role {
  color: var(--Light-Gray-1);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}

.article_author_info {
  display: flex;
  justify-content: start;
  align-items: center;

  gap: 17.75px;
}

.article_cover_info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;

  width: 50%;

  padding: 10% 0;

  height: 100%;
}

.explore_article_item {
  cursor: pointer;
}

@media (max-width: 900px) {
  .left_gradient,
  .right_gradient {
    width: 15%;
  }

  .article_progress_tracker {
    display: none !important;
  }

  .article_content {
    grid-column: 1 / span 4 !important;
  }

  article[class*="inner__container"] {
    max-inline-size: 70%;
    margin: auto;
  }

  .article_sources {
    margin-bottom: 0px !important;
    grid-column: 1 / span 4 !important;
  }

  .article_sources_body {
    bottom: 0px !important;
  }

  .article_sources_list {
    flex-direction: row !important;
    /* gap: 8px; */
    width: 100% !important;
    flex-wrap: wrap;
  }

  .article_source_item {
    /* flex: 0 0 calc(25% - 20px); */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: calc(50% - 8px);
    /* gap: 0px !important; */
  }

  .article_source_item_info {
    height: 100%;
  }

  .article_use_case {
    position: relative !important;
    left: 0px !important;
    width: 100% !important;
  }

  .top_article_tag {
    display: flex;
    padding: 5.139px 15.418px;
    justify-content: center;
    align-items: center;
    gap: 6.853px;
  }

  .article_title {
    color: var(--Black, #000);

    font-size: 24px;
    line-height: 30px;
  }

  .article_cover_info {
    width: 85%;

    /* justify-content: space-between; */
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .left_gradient,
  .right_gradient {
    width: 5%;
  }

  article[class*="inner__container"] {
    max-inline-size: 90%;
    margin: auto;
  }

  .article_use_case_content {
    flex-direction: column;
    gap: 20px;
  }

  .article_use_case_animal,
  .article_use_case_animal_extended_info {
    width: 100% !important;
  }

  .article_use_case_animal_avatar {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .article_source_item {
    /* flex: 0 0 calc(25% - 20px); */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    /* gap: 0px !important; */
  }

  .article_cover_body {
    gap: 10px;

    /* height: 70%; */

    /* height: calc(70vh - (82px * 2)); */
  }

  /* .article_cover {
    height: 100vh;
  } */

  .left_gradient,
  .right_gradient {
    width: 10%;

    border-radius: 10px;
  }

  .article_cover_info {
    height: 100%;
    padding: 5% 0;
  }

  .article_title {
    color: var(--Black, #000);

    font-size: 22px;
    line-height: 22px;
  }

  .article_read_time {
    margin-bottom: 15px;
  }

  .article_issue_date {
    margin-top: 15px;
  }
}
/* ======================================================================================================================================================== */
.article_content {
  grid-column: 2 / span 2;
}

.article_content_inner__container {
  color: var(--Light-Gray-2);

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.72px;

  display: flex;
  flex-direction: column;

  gap: 32px;
}

.article_content_inner__container b {
  color: var(--Black);
}

.article_body_content {
  display: flex;
  flex-direction: column;

  gap: 32px;
}

.article_theses_block {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.article_thesis {
  padding: 16px 24px;

  border-radius: 16px;
  background: var(--Light-Blur);
}

.article_content_inner__container a {
  color: var(--Purple-Heart);

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.64px;

  border-radius: 48px;
  background: rgba(97, 55, 205, 0.1);

  padding: 4px 10px;
}

.article_link {
  color: var(--Purple-Heart);

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.64px;

  border-radius: 48px;
  background: rgba(97, 55, 205, 0.1);

  padding: 4px 10px;
}

.article_content_subtitle {
  color: var(--Black);

  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.article_content_image {
  width: 100%;
}

/* ======================================================================================================================================================== */
.article_use_case {
  position: relative;
  left: -50%;
  width: 150%;
}

mark {
  /* color: #D74B4B; */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.64px;
  border-radius: 48px;
  /* background: rgba(215, 75, 75, 0.10); */
  display: inline-flex;
  padding: 2px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.article_sources {
  grid-column: 1 / span 3;
}

.article_use_case__container {
  container-type: inline-size;
}

.article_use_case_body,
.article_sources_body {
  container-type: inline-size;

  padding-bottom: 175px;

  padding: 72px 0;
}

.article_use_title {
  color: var(--Black);

  font-style: normal;
  font-weight: 600;
  line-height: 191.867px;
  letter-spacing: -10.659px;
  text-transform: uppercase;

  margin-bottom: -70px;
}

.article_use_case_content,
.article_sources_content {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.article_sources_content {
  align-items: stretch;
}

.article_use_case_content {
  margin-bottom: 16px;
}

.article_use_case_animal {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 25px;

  padding: 24px;

  width: 32.5%;

  min-width: 275px;

  border-radius: 123px;
  background: var(--Aquamarine);
}

.article_use_case_animal img {
  border-radius: 50%;
}

.article_use_case_animal_avatar {
  width: 75px;
  height: 75px;

  object-fit: cover;
}

.article_use_case_animal_info {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.article_use_case_animal_info_name {
  color: var(--Black);
  font-size: 22px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -1px;
}

.article_use_case_animal_info_desc {
  color: var(--Gray);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.72px;
}

@container (min-width: 200px) {
  .article_use_title {
    font-size: 22cqw;
  }
}

.article_use_case_animal_extended_info,
.article_sources_extended_info {
  /* max-inline-size: var(--max-inline-width);
  min-inline-size: var(--max-inline-width); */

  width: 66%;

  color: var(--Light-Gray-2);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.72px;
}
.article_use_case_animal_extended_info {
  padding: 33px 41px;
  border-radius: 41px;
  background: var(--Light-Blur);
  backdrop-filter: blur(12.5px);
}

.article_use_case_animal_extended_info {
  font-size: 16px;
  line-height: 28px;
}
/* ======================================================================================================================================================== */
.article_sources_body {
  position: relative;

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.article_sources_body > span {
  color: var(--Black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.article_sources_list {
  display: flex;
  flex-direction: column;
  gap: 8px;

  width: 32.5%;
}

.article_sources_extended_info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article_sources_extended_info b {
  color: var(--Black);
}

.article_source_item {
  display: flex;
  align-items: center;
  gap: 8px;
  scroll-margin-top: 150px;
}

.article_source_item_info {
  display: flex;
  padding: 12px 12px 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1 0 0;

  border-radius: 24px;
  background: var(--White-1);
}

.article_source_author_info,
.article_source_author_info_action,
.article_source_item_actions {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.article_source_author_info {
  justify-content: center;
}

.article_source_author_info_action {
  justify-content: space-between;
}

.article_source_item_actions {
  justify-content: end;
  gap: 16px;
}

.article_source_item_info.active {
  background: rgba(97, 55, 205, 0.1);
}

.article_source_item_badge.active {
  background: var(--Purple-Heart, #6137cd);
  color: var(--White, #fff);
}

.article_source_author_name {
  color: var(--Black);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.article_source_author_desc {
  color: var(--Gray);

  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.article_source_item_more_year {
  border-radius: 32px;
  background: #fff;

  color: var(--Black);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;

  padding: 6px 0;

  text-align: center;

  margin-bottom: 4px;
}

.article_source_item_more {
  border-radius: 24px;
  background: var(--Purple-Heart);

  padding: 6px 12px;

  color: var(--White, #fff);

  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: lowercase;
}

.article_source_item_badge {
  border-radius: 24px;
  background: rgba(97, 55, 205, 0.1);

  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;

  color: var(--Purple-Heart);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;

  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ======================================================================================================================================================== */
.explore_more_body {
  container-type: inline-size;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 50px 0 300px 0;
}

.explore_more_title {
  color: var(--Black);

  font-style: normal;
  font-weight: 600;
  line-height: 178.069px; /* 90% */
  letter-spacing: -9.893px;
  text-transform: uppercase;
}

@container (min-width: 200px) {
  .explore_more_title {
    font-size: 14cqw;
  }
}

.explore_more_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;

  column-gap: 20px;

  margin-top: -55px;
}

.explore_article_item {
  padding: 16px;

  border-radius: 24px;
  background: var(--Light-Blur);
  color: var(--Black);
  backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  align-items: start;

  gap: 24px;

  transition: all 0.4s ease;
}

.explore_article_item:hover {
  background-color: var(--Purple-Heart);
  color: var(--White);
}

.explore_article_item:hover .explore_article_timestamp {
  color: var(--White-50);
}

.explore_article_item:hover .explore_article_tag {
  background: var(--White-1);
  color: var(--Gray);
}

.explore_article_item > img {
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.explore_article_tags_wrapper,
.articles_filter_tags_wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.explore_article_tag {
  border-radius: 40px;
  background: var(--Aquamarine);
  padding: 6px 18px;

  color: var(--Black);

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;

  transition: all 0.4s ease;
}

.explore_article_title {
  color: inherit;

  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.explore_article_timestamp {
  color: var(--Gray);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.108px;
  text-transform: uppercase;

  padding-top: 20px;

  transition: all 0.4s ease;

  margin-top: auto;
}

@media (max-width: 850px) {
  .explore_more_list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    row-gap: 20px;
  }

  .explore_more_body {
    padding-top: 0;
  }
}

/* Desktop layout: show 3 items in a row */
@media (min-width: 700px) {
  .explore_more_slider_wrapper {
    width: 100%;
  }

  .explore_more_slider_track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    column-gap: 20px;
    margin-top: -55px; /* optional, keep if needed */
  }
}

/* Mobile layout: slider mode */
@media (max-width: 700px) {
  .explore_more_slider_wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .explore_more_slider_track {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
  }

  .explore_article_item {
    flex: 0 0 100%; /* one item visible at a time */
  }

  .explore_more_slider_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;

    width: 80%;
  }

  .explore_more_slider_dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .slider_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .slider_dot.active {
    background-color: var(--Purple-Heart);
    transform: scale(1.2);
  }

  .slider_arrow {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .slider_arrow:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 630px) {
  .explore_more_title {
    line-height: normal;
    letter-spacing: -5px;
  }

  .explore_more_list {
    margin-top: 0;
  }
}

@media (max-width: 500px) {
  .explore_article_item {
    padding: 12px;
    gap: 14px;
  }

  .explore_article_title {
    flex-grow: 1;
  }
}
/* ======================================================================================================================================================== */
.article_progress_tracker__container {
  position: relative;
  overflow: clip;
  gap: 13.25px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: row;
}

.article_progress_tracker_spacer {
  grid-column: 4;
}

.article_sections_wrapper {
  border: solid green 1px;

  width: 50%;
}

.article_progress_tracker__container > section {
  position: relative;
  z-index: 3;
}

.article_progress_tracker {
  display: none;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;

  justify-self: stretch;
  align-self: baseline;
  width: 100%;

  border-radius: 24px;
  background: var(--Aquamarine-1);

  position: sticky;
  top: 100px;
  right: 10px;

  z-index: 10;

  grid-column: 4 / span 1;
  grid-row: 1;

  overflow-x: scroll;
  max-height: calc(100vh - 120px);
  display: flex;
}

.article_progress_tracker_title {
  border-left: 2px solid var(--Light-Gray);

  color: var(--Light-Gray);

  padding: 0 8px;

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.article_progress_tracker_title.active {
  color: var(--Black);
  border-color: var(--Black);
}

.aticle_quote {
  color: var(--Purple-Heart);
  font-size: 16px;
  line-height: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.72px;

  padding-left: 10px;

  border-left: 3px solid var(--Purple-Heart);

  font-family: inherit; /* щоб не було моноширинного шрифту */
  white-space: normal; /* щоб працювали переноси як у <p> */
  margin: 1em 0;
}

.wp-block-image img {
  border-radius: 24px;
}

@media (max-width: 1350px) {
  .article_progress_tracker {
    padding: 22px 18px;

    gap: 28px;
  }

  .article_progress_tracker_title {
    font-size: 14px;
  }
}
/* ======================================================================================================================================================== */

.article_block_list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* відстань між блоками */
}

.article_block_list_content {
  flex: 1 1 calc(33.333% - 20px); /* три в ряд */
  box-sizing: border-box;
}

.article_block_list_animal_info_name > h3 {
  align-self: stretch;
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 120% */
}

.article_block_list_animal_info_desc > p {
  align-self: stretch;
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}

.article_block_list_content {
  display: flex;
  width: 200px;
  padding: 16px 24px;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 8px;
  flex-shrink: 0;
  border-radius: 24px;
  background: var(--Onyx, #121212);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);

  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

.article_content_subtitle.title_margin_top {
  margin-top: 72px;
}

.title_margin_top {
  scroll-margin-top: 120px;
}

@media (max-width: 1350px) {
  .article_use_case_animal {
    padding: 15px;
  }

  .article_source_item_info {
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .article_block_list_content {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .article_content_subtitle.title_margin_top {
    margin-top: 20px;
  }

  article[class*="inner__container"] {
    max-inline-size: 100%;
    margin: 0 8px;
    gap: 16px;
  }

  .article_use_case_body,
  .article_sources_body {
    padding: 16px 0;
  }

  .article_use_title {
    text-align: justify;
    letter-spacing: -7px;
  }

  .article_use_case_animal_extended_info {
    padding: 16px 18px;
    border-radius: 20px;
  }
}

@media (max-width: 400px) {
  .article_use_title {
    letter-spacing: -7px;
  }
}

/* shared classes */

.comp_title {
  font-weight: 600;
  font-size: 80px;
  line-height: 72px;
  letter-spacing: -3px;
  text-transform: uppercase;

  position: relative;
  z-index: 2;
}

@media (max-width: 1000px) {
  .comp_title {
    /* text-align: center; */
    font-size: var(--Tablet-FS);
    letter-spacing: -2.5px;
  }
}

@media (max-width: 800px) {
  .comp_title {
    font-weight: var(--Mobile-FW);
    font-size: var(--Mobile-FS);
    line-height: var(--Mobile-LH);
  }
}

@media (max-width: 600px) {
  .comp_title {
    text-align: left;
  }
}

/* ======================================================================================================================================================== */
.hero {
  background: var(--Gradient);

  overflow: clip;

  padding-top: 82px;

  height: 100dvh;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

.hero > div {
  width: 100%;
  height: 100%;
  flex: 1 0 auto;
}

@media (max-width: 900px) {
  .hero,
  .article_cover {
    padding-top: 92px;
  }
}

.is-hidden {
  /* visibility: hidden; */
}

.subtitle {
  width: 300px;
}

@media (max-width: 600px) {
  .subtitle {
    font-size: 16px;
    width: 250px;
    padding-left: 10px;
  }
}

@media (max-width: 450px) {
  .subtitle {
    width: 200px;
  }
}
