/* Base Styles (Mobile First) */

@font-face {
  font-family: Polysans;
  src: url("../Fonts/polysanstrial-slim.otf");
}

@font-face {
  font-family: myFirstFont;
  src: url('../Fonts/polysanstrial-bulky.otf');
}

@font-face {
  font-family: myFirstFont2;
  src: url('../Fonts/polysanstrial-median.otf');
}

@font-face {
  font-family: myFirstFont3;
  src: url('../Fonts/polysanstrial-neutral.otf');
}

@font-face {
  font-family: myFirstFont4;
  src: url('../Fonts/polysanstrial-slim.otf');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

header {
  width: 80%;
  padding: 24px;
  padding-top: 10px;
  margin: 0 auto;
}

.mobile-nav {
  display: none;
}

hr {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  width: 80%;
  height: 80px;
  margin: 0 auto;
  align-content: center;
}

.nav-links {
  display: inline;
  float: right;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #003564;
  font-size: 12px;
  font-family: myFirstFont3;
  line-height: 20px;
  font-weight: 400;
}

.nav-links a:hover {
  color: #FB4D08;
}

.humburger {
  display: none;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 100px;

}

.hero h1 {
  font-size: 60px;
  line-height: 55px;
  width: 384px;
  text-align: left;
  margin: 0;
  font-family: myFirstFont2;
  /* font-weight: 600; */
  color: #003564;
}

.hero-img {
  width: 510px;
  /* max-width: 430px; */
  transition: transform 0.3s ease;
  border-radius: 60px;
}

/* .hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
} */

.hero p {
  margin-top: 32px;
  font-size: 18px;
  font-family: myFirstFont3;
  color: #003564;
  font-weight: 400;
  line-height: 22px;
  width: 350px;
}

.health-card-section {
  width: 95%;
  margin: 2rem 35px;
  border-radius: 60px;
  padding: 5rem 2rem;
  background-color: #FAFAFA;
  height: 606px;
}

.health-card-section h1 {
  text-align: center;
  font-family: myFirstFont2;
  color: #003564;
  font-size: 50px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.scroll-bar {
  overflow: hidden;
  justify-content: center;
  background-color: transparent;
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
  margin-top: 2rem;
  height: -webkit-fill-available;
  padding-top: 40px;
  /* background: #eee; */
}



/* .scroll-bar .img {
  margin-left: -40px;
} */

.scroll-bar .img {
  width: 208px;
  height: 259px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  margin-left: -40px;
  border-radius: 10px;
}

.scroll-bar .img.card1 {
  background-image: url('../assets/Images/tile1.png');
}

.scroll-bar .img.card2 {
  background-image: url('../assets/Images/tile2.png');
}

.scroll-bar .img.card3 {
  background-image: url('../assets/Images/tile3.png');
}

.scroll-bar .img.card4 {
  background-image: url('../assets/Images/tile4.png');
}

.scroll-bar .img.card5 {
  background-image: url('../assets/Images/tile5.png');
}

.scroll-bar .img.card6 {
  background-image: url('../assets/Images/tile6.png');
}

.scroll-bar .img .img-text {
  /* background: linear-gradient(180deg, rgba(149, 46, 5, 0) 0%, rgba(184, 57, 6, 0.346154) 20.19%, rgba(251, 77, 8, 0.9) 76.44%); */
  text-align: center;
  /* width: 215px; */
  /* height: 211px; */
  color: white;
  border-radius: 5px;
  position: absolute;
  bottom: 1rem;
}

.scroll-bar .img .img-text {
  margin: 0;
  padding: 0 10px 15px 10px;
}

.scroll-bar .img .img-text h2 {
  margin: 0;
  font-family: PolySans;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.scroll-bar .img .img-text p {
  margin: 0;
  font-family: PolySans;
  font-size: 13px;
  line-height: 14px;
  font-weight: 400;
}

.card1 {
  transform: rotate(-18deg) translate(-25px, 25px);
  z-index: 4;
}


.card2 {
  transform: rotate(-4deg) translate(-10px, -30px);
  z-index: 4;
}

.card3 {
  transform: rotate(-1deg) translate(-15px, 0px);
  z-index: 4;
}

.card4 {
  transform: rotate(2deg) translate(0px, -15px);
  z-index: 1;
}

.card5 {
  transform: rotate(5deg) translate(10px, -30px);
  z-index: 5;
}

.card6 {
  transform: rotate(18deg) translate(20px, 36px);
  z-index: 6;
}

.card1:hover,
.card2:hover,
.card3:hover,
.card4:hover,
.card5:hover,
.card6:hover {
  transform: scale(1.05) rotate(0deg);
  transition: transform 0.3s ease;
  z-index: 10;
}

.scroll-bar .img {
  /* margin-bottom: 20px; */
}

.about-health {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.about-health-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.better-health .better-health-heading h2,
.about-health-content h1 {
  font-family: myFirstFont2;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #003564;
  text-align: center;
  letter-spacing: 1px;
}

.about-health-content p {
  width: 648px;
  font-family: myFirstFont3;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #7C8189;
  margin-bottom: 1rem;
}

.about-health .about-health-card {
  display: grid;
  grid-auto-flow: column;
}

.about-health .about-health-card img {
  width: 348px;
  height: 396px;
}

.scroll-bar1 {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 10px;
  padding-bottom: 0;
  max-width: 100%;
  white-space: nowrap;
}

.scroll-bar1::-webkit-scrollbar {
  display: none;
}

.scroll-bar1-img {
  height: 347px;
  width: 230px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  flex-shrink: 0;
  align-self: end;
}

.scroll-bar1-img.about-card1 {
  background-image: url('../assets/Images/about1.png');
}

.scroll-bar1-img.about-card2 {
  background-image: url('../assets/Images/about2.png');
}

.scroll-bar1-img.about-card3 {
  background-image: url('../assets/Images/about3.png');
}

.scroll-bar1-img-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.scroll-bar1-img-text h3 {
  font-family: polySans;
  /* width: 118px; */
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;

  margin-bottom: 0.6rem;
  padding-left: 1rem;
}

.scroll-bar1-img-text button {
  background-color: white;
  color: #003366;
  font-family: polySans;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 43px;
  width: 179px;
  position: relative;
}

.scroll-bar1-img-text button span {
  /* width: 18px !important;
  height: 18px !important;
  object-fit: contain; */
  /* margin-left: 0.5rem; */
  background-color: #EDEDED;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  align-content: center;
}

.about-health .about-health-card .scroll-bar1-img-text button img {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 10px;

}

.scroll-bar1-img-text button span i {
  font-size: 18px;
  color: #002349;
}

.better-health {
  margin: 3rem auto;
}

.better-health .card-grid {
  display: none;
}

.about-health .about-health-card .scroll-bar1-img-icon {
  position: absolute;
  top: 20px;
  left: 20px;
}

.about-health .about-health-card .scroll-bar1-img-icon img {
  width: 40px;
  height: 40px;
}


.card-pc-text {
  position: absolute;
  color: white;
  padding: 48px;
}

.card-pc.health-card1 .card-pc-text,
.card-pc.health-card2 .card-pc-text,
.card-pc.health-card3 .card-pc-text,
.card-pc.health-card6 .card-pc-text {
  bottom: 20px;
}

.card-pc.health-card4 .card-pc-text,
.card-pc.health-card5 .card-pc-text,
.card-pc.health-card7 .card-pc-text,
.card-pc.health-card8 .card-pc-text {
  top: 20px;
}

.card-pc-text h2 {
  font-family: polysans;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-pc-text p {
  font-family: polysans;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}

.card-grid-pc {
  display: flex;
  /* grid-template-columns: repeat(5, 1fr); */
  /* overflow-x: auto; */
  gap: 24px;
  padding: 24px;
  padding-bottom: 0;
  justify-content: center;
}

.card-grid-pc1 {
  direction: rtl;
}

.card-grid-pc::-webkit-scrollbar,
.card-grid-pc1::-webkit-scrollbar {
  display: none;
}

.card-pc {
  width: 324px;
  height: 401px;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* .about-card1:hover,
.about-card2:hover,
.about-card3:hover, */

/* .better-health .health-card1:hover,
.better-health .health-card2:hover,
.better-health .health-card3:hover,
.better-health .health-card4:hover,
.better-health .health-card5:hover,
.better-health .health-card6:hover,
.better-health .health-card7:hover,
.better-health .health-card8:hover {
  transform: scale(1.05) rotate(0deg);
  transition: transform 0.3s ease;
  z-index: 10;
} */

.card-pc.health-card1 {
  background-image: url("../assets/Images/health1.png");
}

.card-pc.health-card2 {
  background-image: url("../assets/Images/health2.png");
}

.card-pc.health-card3 {
  background-image: url("../assets/Images/health3.png");
}

.card-pc.health-card4 {
  background-image: url("../assets/Images/health4.png");
}

.card-pc.health-card5 {
  background-image: url("../assets/Images/health5.png");
}

.card-pc.health-card6 {
  background-image: url("../assets/Images/health6.png");
}

.card-pc.health-card7 {
  background-image: url("../assets/Images/health7.png");
}

.card-pc.health-card8 {
  background-image: url("../assets/Images/health8.png");
}

.card-pc.health-card2 .card-pc-text h2,
.card-pc.health-card4 .card-pc-text h2,
.card-pc.health-card5 .card-pc-text h2,
.card-pc.health-card7 .card-pc-text h2 {
  color: #002349;
}

.card-pc.health-card2 .card-pc-text p,
.card-pc.health-card4 .card-pc-text p,
.card-pc.health-card5 .card-pc-text p,
.card-pc.health-card7 .card-pc-text p {
  color: #003564;
}

.video-thumbnail .scrollbar-thumbnail,
.video-thumbnail .scrollbar-thumbnail1 {
  grid-template-columns: repeat(4, 1fr);
  overflow-x: visible;
  gap: 30px;
}

.video-thumbnail img {
  width: 200px;
  height: 300px;
}

.care-blog .care-blog-card1,
.care-blog .care-blog-card2 {
  grid-template-columns: repeat(3, 1fr);
  overflow-x: visible;
  gap: 30px;
}


.footer {
  margin-left: 0;
  padding: 1rem 40px 2rem 40px;
}

.list-items-mob {
  display: none;
}

.footer hr {
  margin-left: 0;
  width: 100%;
}

.hide {
  display: none;
}

.footer h1 {
  color: #ccc;
  font-family: polySans;
  width: auto;
}

.footer-content-block {
  display: flex;
  justify-content: space-between;
}

.items {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.address p {
  margin-top: 0;
  width: 341px;
}

.items a {
  text-decoration: none;
  color: #003564;
  font-size: 14px;
}

.items a:hover {
  color: chocolate;
}

.footer-content {
  width: 341px;
  line-height: 20px;
}

.copyright-section {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  flex-direction: row;
  justify-content: space-between;
  width: 40%;
}

.btn button {
  width: 250px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn button:hover {
  background-color: #003564;
  color: white;
}