:root {
  --primary-color: #ab0535;
  --secondary-color: #415a68;
  --black: #000;
  --white: #fff;
}
::selection {
  background: var(--primary-color);
  color: var(--white);
}
body {
  font-family: "Roboto", sans-serif;
  color: var(--black);
}
p {
  font-weight: 400;
}
/* Header CSS Start */
header {
  padding: 24px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.navbar {
  padding: 0;
}
.navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar-collapse .navbar-nav li a.nav-link {
  padding: 6px;
  font-size: 16px;
  text-transform: capitalize;
}
.navbar-collapse .navbar-nav li:not(:last-child) {
  margin-right: 16px;
}
.navbar-collapse .navbar-nav li a.nav-link.active {
  color: var(--primary-color);
  font-weight: 500;
}
.lang_selection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-left: 40px;
}
.lang_selection_inner {
  position: relative;
}
.lang_selection_inner img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  cursor: pointer;
  pointer-events: none;
}
.lang_selection_inner select {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  outline: none;
  padding: 8px 20px 8px 10px;
}

/* Header CSS End */

/* Hero Section CSS Start */
.hero_section {
  background: linear-gradient(240deg, #ffffff, #f5f5f5);
  padding: 88px 0;
}
.hero_details h1 {
  font-size: 70px;
  line-height: 1.2;
  margin-bottom: 36px;
  font-weight: 600;
}
.hero_details p {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.hero_image {
  text-align: right;
}
.hero_image img {
  width: 100%;
  max-width: 582px;
  height: auto;
  border-radius: 24px;
  margin-left: auto;
}
/* Hero Section CSS End */

/* highlighted-features-section CSS Start */
.highlighted-features-section {
  background: var(--secondary-color);
  padding: 40px 0;
}
.highlighted-features-section h4 {
  font-size: 60px;
  font-weight: 600;
  text-transform: capitalize;
}
.highlighted-features-section h4 {
  color: var(--white);
}
/* highlighted-features-section CSS End */

/* why_medipal_section CSS Start */
.why_medipal_section {
  padding: 26px;
}
.why_medipal_section .why_medipal_inner {
  background-color: #f5f5f5;
  border-radius: 24px;
  text-align: center;
  padding: 75px 0;
}
.why_medipal_top {
  max-width: 1037px;
  margin: 0 auto 70px;
}
.why_medipal_top h2 {
  font-size: 58px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 24px;
}
.why_medipal_top p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.why_medipal_block {
  background-color: var(--white);
  border-radius: 10px;
  padding: 19px 24px;
  margin-bottom: 32px;
  box-shadow: 0 0 14px rgb(36, 36, 36, 0.05);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.why_medipal_block img {
  flex: 1;
  margin: 0 auto 26px;
}
.why_medipal_block h6 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}
/* why_medipal_section CSS End */

/* better_outcomes_section CSS Start */
.better_outcomes_section {
  padding: 74px 0;
}
.better_sec {
  margin-bottom: 108px;
}
.better_outcomes_section h2 {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 24px;
}
.better_outcomes_details p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.better_outcomes_section .quote {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 6px;
}
.better_outcomes_section .quote p {
  margin-bottom: 0;
  font-weight: 600;
}
.better_outcomes_img {
  text-align: right;
}
.empowerd_sec .better_outcomes_img {
  text-align: left;
}
.better_outcomes_section img {
  width: 100%;
  max-width: 480px;
}
/* better_outcomes_section CSS End */

/* get_in_touch_section CSS Start */
.get_in_touch_section {
  background: var(--secondary-color);
  padding: 64px 0;
  color: var(--white);
}
.get_in_touch_section .container {
  max-width: 917px;
}
.get_in_touch_top {
  margin-bottom: 64px;
}
.get_in_touch_top h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
}
.get_in_touch_top p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.submit_btn {
  font-size: 20px;
  line-height: 1.2;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}
.submit_btn:hover {
  background-color: #9c042b;
}
.get_in_touch_form input,
.get_in_touch_form textarea {
  padding: 14px 20px;
  border-radius: 10px !important;
  border: none;
  font-size: 20px;
  line-height: 1.2;
  background-color: #798b94;
  transition: all 0.3s ease;
  color: var(--white);
}
.get_in_touch_form input::placeholder,
.get_in_touch_form textarea::placeholder {
  color: var(--white);
}
.get_in_touch_form input:focus,
.get_in_touch_form textarea:focus {
  outline: none;
  color: var(--white);
  box-shadow: none;
  background-color: #798b94;
}
.invalid-feedback {
  color: #ff8888;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border: 1px solid #ff8888;
}
.input-group input,
.input-group textarea {
  background-image: none !important;
}
/* get_in_touch_section CSS End */

/* footer_section CSS Start */
.footer_section {
  background: #f5f5f5;
  padding: 40px 0 16px;
}
.top_ftr {
  margin-bottom: 164px;
}
.top_ftr address {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 1px;
}
.ftr_links h6 {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.ftr_links ul li {
  margin-bottom: 12px;
}
.ftr_links a {
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  transition: all 0.3s ease;
}
.ftr_links a:hover {
  color: var(--primary-color);
}
.ftr_links.follow_links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
.ftr_links.follow_links a span {
  color: var(--black);
  transition: color 0.3s ease;
}
.ftr_links.follow_links a:hover span {
  color: var(--primary-color);
}
.copyright {
  font-size: 12px;
}
.ftr_links.follow_links a {
  font-size: 14px;
}
/* footer_section CSS End */
