@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@100;300;500;700&family=Raleway&display=swap');

@font-face {
  font-family: 'Larsseit';
  src: url('../fonts/Larsseit-Light.woff2') format('woff2'), url('../fonts/Larsseit-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Larsseit';
  src: url('../fonts/Larsseit-Bold.woff2') format('woff2'), url('../fonts/Larsseit-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #25b2a9;
  --second-color: #019e93;
  --heading-color: #22577a;
  --raleway: 'Raleway', sans-serif;
  --larsseit: 'Larsseit';
  --quicksand: 'Quicksand', sans-serif;
  --p-1: 10px;
  --p-2: 20px;
  --p-3: 30px;
  --p-5: 50px;
  --p-10: 100px;
  font-size: 16px;
}

@media only screen and (max-width: 576px) {
  :root {
    font-size: 10px;
    --p-1: 5px;
    --p-2: 10px;
    --p-3: 15px;
    --p-5: 20px;
  }
}

html,
body {
  overflow-x: hidden;
  font-family: var(--raleway);
}
@media only screen and (max-width: 576px) {
  body {
    margin-bottom: 50px;
  }
}

.main_headings {
  margin: 1rem 0;
  font-family: var(--raleway);
  font-size: 1.2rem;
  color: var(--heading-color);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #999;
}
.main_headings--secondary {
  color: white;
  text-shadow: 1px 1px 2px #666;
}
.main_headings--center {
  text-align: center;
}
@media only screen and (max-width: 576px) {
  .main_headings {
    font-size: 1rem;
  }
}

.desc_para {
  font-family: var(--larsseit);
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.5px;
  color: #2e2839;
}
.desc_para--white {
  color: whitesmoke;
}

/* || == :: navbar-modification == || */
.navbar__item_links--color > ul > li > a {
  position: relative;
  display: inline-block;
  outline: none;
  padding: 10px 0;
  color: #f45b69;
  border-bottom: 2px solid #fff;
  text-shadow: none;
}
.navbar__item_links--color > ul > li > a:hover,
.navbar__item_links--color > ul > li > a:focus {
  outline: none;
}
.navbar__item_links--color > ul > li > a::before {
  color: #25b2a9;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  content: attr(data-hover);
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  -moz-transition: -moz-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  pointer-events: none;
}
.navbar__item_links--color > ul > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  -moz-transition: -moz-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  pointer-events: none;
}
.navbar__item_links--color > ul > li > a:hover::before,
.navbar__item_links--color > ul > li > a:focus::before {
  opacity: 0;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}
.navbar__item_links--color a:hover::after,
.navbar__item_links--color a:focus::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

/* ==== end: navbar-modification ==== */

/* || == :: hero-page == || */

.hero-page {
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  height: 100vh;
  display: flex;
  align-items: center;
}
.hero-page__col {
  flex-basis: 50%;
}
.hero-page__col_one {
  padding: var(--p-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-page__col_one > h1 {
  margin: 0.8rem 0;
  font-size: 2rem;
  color: var(--second-color);
  text-shadow: 1px 1px 2px #999;
}
.hero-page__col_one > h6 {
  font-size: 1.2rem;
  color: #555;
}
.hero-page__col_one > a {
  position: relative;
  overflow: hidden;
  background: #019e93;
  margin: 1rem 0;
  padding: var(--p-1);
  max-width: 350px;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-decoration: none;
  color: whitesmoke;
  border-radius: 100px;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.hero-page__col_one > a::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: var(--p-1);
  opacity: 0;
  color: #037971;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}
.hero-page__col_one > a::after,
.hero-page__col_one > a > span {
  padding: var(--p-1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.hero-page__col_one > a:focus {
  outline: none;
}
.hero-page__col_one > a:hover {
  background: transparent;
  color: #25b2a9;
  border: 2px solid #22577a;
}
.hero-page__col_one > a:hover > span {
  opacity: 0;
}
.hero-page__col_one > a:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hero-page__col_two {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-page__col_two > img {
  max-width: 800px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 576px) {
  .hero-page {
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-page__col_one {
    padding: var(--p-5);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-page__col_one > h3 {
    font-size: 1.2rem;
  }
  .hero-page__col_one > h1 {
    font-size: 2rem;
    text-align: center;
    text-shadow: 0.5px 0.5px 0.5px #019e93;
  }
  .hero-page__col_one > h6 {
    font-size: 1.2rem;
  }
  .hero-page__col_one > a::after,
  .hero-page__col_one > a > span {
    padding: var(--p-1);
  }
  .hero-page__col_two {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
  .hero-page__col_two > img {
    margin-left: 1.5rem;
    max-width: 380px;
    width: 100%;
    height: auto;
  }
}
/* ==== end: hero-page ==== */

/* || == :: about-us == || */
.about-us {
  padding: var(--p-5);
}
.about-us__desc > p > span {
  font-size: 1.2rem;
  color: var(--main-color);
}
.about-us__tags {
  padding-top: var(--p-5);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about-us__tags_items {
  padding: var(--p-2);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 6px 4px 21px -10px#888;
  -webkit-box-shadow: 6px 4px 21px -10px #888;
  -moz-box-shadow: 6px 4px 21px -10px#888;
}
.about-us__tags_items:nth-child(1) {
  border-width: 0;
  border-left: 8px solid;
  border-image: linear-gradient(to bottom, #d4fc79, #96e6a1) 10 100%;
}
.about-us__tags_items:nth-child(2) {
  border-width: 0;
  border-left: 8px solid;
  border-image: linear-gradient(to bottom, #f25f5c, #f7a2a1) 10 100%;
}
.about-us__tags_items:nth-child(3) {
  border-width: 0;
  border-left: 8px solid;
  border-image: linear-gradient(to bottom, #037971, #05b3a7) 10 100%;
}
.about-us__tags_items > img {
  height: 90px;
  width: 90px;
  filter: drop-shadow(1px 1px 1px #999);
}
.about-us__tags_items > h2 {
  margin: 0.5rem 0;
  color: #0a2342;
  text-shadow: 1px 1px 2px #aaa;
}
@media only screen and (max-width: 576px) {
  .about-us__tags {
    flex-wrap: wrap;
  }
  .about-us__tags_items {
    padding: var(--p-1);
    width: 90px;
    height: 90px;
    justify-content: flex-start;
  }
  .about-us__tags_items:nth-child(1) {
    border-left: 4px solid;
  }
  .about-us__tags_items:nth-child(2) {
    border-left: 4px solid;
  }
  .about-us__tags_items:nth-child(3) {
    border-left: 4px solid;
  }
  .about-us__tags_items > img {
    height: 40px;
    width: 40px;
  }
  .about-us__tags_items > h2 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 1px 1px 2px #aaa;
  }
}

/* ==== end: about-us ==== */

/* || == :: doctor-panel == || */
.doctor-panel {
  position: relative;
  padding: var(--p-5);
}
.doctor-panel::before {
  background-image: radial-gradient(
    circle 993px at 0.5% 50.5%,
    rgba(137, 171, 245, 0.37) 0%,
    rgba(245, 247, 252, 1) 100.2%
  );
  position: absolute;
  top: 0;
  left: 0;
  bottom: -20px;
  height: initial;
  width: 100%;
  content: '';
  z-index: -2;
}
.doctor-panel__head {
  text-align: center;
}
.doctor-panel__desc {
  padding: var(--p-2) 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.doctor-panel__desc > .panel_profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doctor-panel__desc > .panel_profile > .panel_profile__img > img {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(3px 3px 4px #999);
}
.doctor-panel__desc > .panel_profile > .panel_profile__info > h3 {
  margin: 0.2rem 0;
  font-family: var(--quicksand);
  font-weight: 700;
  text-transform: uppercase;
  color: #22577a;
}
.profile-social {
  margin: 0.5rem 0;
}
.profile-social > ul {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  list-style: none;
}
.profile-social > ul > li {
  margin-right: 0.75rem;
}
.profile-social > ul > li > a {
  font-size: 1.2rem;
  color: #22577a;
}
.profile-social > ul > li > a:hover {
  color: #f45b69;
}
@media only screen and (max-width: 576px) {
  .doctor-panel {
    position: relative;
    padding: var(--p-5);
  }
  .doctor-panel__head {
    text-align: center;
  }
  .doctor-panel__desc {
    flex-direction: column;
    align-items: flex-start;
  }
  .doctor-panel__desc > .panel_profile {
    margin: 1rem 0;
    flex-direction: row;
    align-items: center;
  }
  .doctor-panel__desc > .panel_profile > .panel_profile__img > img {
    width: auto;
    max-height: 150px;
    height: 100%;
  }
  .profile-social {
    margin: 1rem 0;
  }
}

/* ==== end: doctor-panel ==== */

/* || == :: why-homeo == || */
.why-homeo {
  position: relative;
  padding: var(--p-5);
}
.why-homeo::before {
  background: var(--second-color);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: initial;
  width: 100%;
  content: '';
  z-index: -1;
  transform: skewY(1.2deg);
}
.why-homeo__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.why-homeo__flex_col-one {
  flex-basis: 65%;
}
.why-homeo__flex_col-two {
  flex-basis: 35%;
  display: flex;
  justify-content: center;
}
.why-homeo__img > img {
  max-width: 375px;
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px 2px #666);
}
@media only screen and (max-width: 576px) {
  .why-homeo {
    padding: var(--p-5);
  }
  .why-homeo__flex {
    flex-wrap: wrap;
  }
  .why-homeo__flex_col-one {
    flex-basis: 100%;
  }
  .why-homeo__flex_col-two {
    padding-top: var(--p-5);
    flex-basis: 100%;
  }
  .why-homeo__img > img {
    width: auto;
    max-height: 260px;
    height: 100%;
    filter: drop-shadow(2px 2px 2px #666);
  }
}

/* ==== end: why-homeo ==== */

/* || == :: treatments == || */
.treatments {
  position: relative;
  padding: var(--p-5);
}
.treatments::before {
  background: whitesmoke;
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  height: initial;
  width: 100%;
  content: '';
  z-index: -2;
}
.treatments__category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.treatments__category_links {
  background: white;
  margin: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 220px;
  width: 220px;
  border-radius: 10px;
  box-shadow: 2px 2px 15px -5px #999;
  -webkit-box-shadow: 2px 2px 15px -5px #999;
  -moz-box-shadow: 2px 2px 15px -5px #999;
  transition: all 0.5s ease;
  border-bottom: 10px solid #f45b69;
}
.treatments__category_links:hover {
  transform: scale(1.1);
}
.treatments__category_links > img {
  height: 120px;
  width: 120px;
}
.treatments__category_links > h3 {
  padding: 0.8rem 0;
  max-width: 120px;
  font-family: var(--larsseit);
  font-size: 1.2rem;
  font-weight: lighter;
  text-align: center;
  color: var(--second-color);
}
@media only screen and (max-width: 576px) {
  .treatments {
    padding: var(--p-5);
  }
  .treatments__category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .treatments__category_links {
    height: 120px;
    width: 120px;
    border-radius: 8px;
    border-bottom: 6px solid #f45b69;
  }
  .treatments__category_links > img {
    height: 60px;
    width: 60px;
  }
}

/* ==== end: treatments ==== */

/* || == :: calltobook == || */
.calltobook {
  background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
  padding: var(--p-5);
}
.calltobook > .calltobook__desc {
  font-family: var(--raleway);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #22577a;
}
.calltobook > .calltobook__desc > a {
  font-family: var(--quicksand);
  text-decoration: none;
  color: #f45b69;
}
@media only screen and (max-width: 576px) {
  .calltobook > .calltobook__desc {
    font-size: 2.2rem;
  }
  .calltobook > .calltobook__desc > a {
    display: block;
  }
}

/* ==== end: calltobook ==== */

/* || == :: blog-posts == || */
.blog-posts {
  padding: var(--p-5);
}
.blog-posts__feeder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.blog-posts__feeder_items {
  padding: var(--p-1);
  background: linear-gradient(to bottom, #f9f7f3 25%, #ffffff 100%);
  max-width: 300px;
  min-height: 350px;
  box-shadow: 6px 4px 21px -10px#888;
  -webkit-box-shadow: 6px 4px 21px -10px #888;
  -moz-box-shadow: 6px 4px 21px -10px#888;
  border-radius: 10px;
  box-sizing: content-box;
  overflow: hidden;
}
.blog-posts__feeder_items:hover > img {
  transform: scale(1.1);
}
.blog-posts__feeder_items > img {
  max-width: 300px;
  height: auto;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.blog-posts__feeder_items > h3 {
  margin: 8px 0;
  color: #028090;
}
.blog-posts__feeder_items > p {
  margin: 15px 0;
}
.blog-posts__feeder_items > a {
  text-decoration: none;
  color: #f45b69;
  font-weight: bold;
  transition: all 0.3s;
}
.blog-posts__feeder_items > a:hover {
  color: #f45b689c;
}
@media only screen and (max-width: 576px) {
  .blog-posts__feeder_items {
    max-width: unset;
    padding-bottom: var(--p-5);
    margin: var(--p-2) 0;
    min-height: unset;
    height: auto;
  }
  .blog-posts__feeder_items > img {
    max-width: 600px;
    width: 100%;
    height: auto;
  }
  .blog-posts__feeder_items > h3 {
    font-size: 1.6rem;
  }
  .blog-posts__feeder_items > p {
    font-size: 1.4rem;
  }
  .blog-posts__feeder_items > a {
    font-size: 1.2rem;
  }
}

/* ==== end: blog-posts ==== */

/* || == section: enquiry == || */

.enquiry {
  padding: var(--p-5);
  background-image: linear-gradient(to bottom, #f5f7fa 0%, #c3cfe2 100%);
}
.enquiry > h1 {
  margin-bottom: 4px;
  padding: 0 10px;
  color: var(--main-color);
  font-size: 2.5rem;
  text-transform: uppercase;
}
.enquiry > h6 {
  padding: 0 10px;
  font-size: 0.8rem;
}
.enquiry-contact > .form-row {
  margin: 10px 0;
  display: flex;
}
.form-row > .form-row__col {
  padding: 10px;
  flex-basis: 50%;
}
.form-control {
  background: transparent;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #006d5b;
}
.form-control::placeholder {
  color: var(--main-color);
  font-family: var(--raleway);
  font-size: 1rem;
}
.form-control:focus {
  border-radius: 2px;
}
.btn--default {
  background: transparent;
  padding: 10px;
  color: var(--main-color);
  font-family: var(--raleway);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #006d5b;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn--default:hover {
  background: var(--main-color);
  color: white;
  border: 1px solid #006d5b;
  border-radius: 5px;
}
.form-results {
  display: none;
}
.form-results > .alert {
  background-image: linear-gradient(-20deg, #81f8e4 0%, #74c9c3 100%);
  margin: 10px 0;
  padding: 10px;
  font-family: var(--raleway);
  font-size: 1.2rem;
  border-radius: 10px;
}
.form-results > .alert.alert--danger {
  color: rgb(112, 15, 15);
}
.form-results > .alert.alert--success {
  color: rgb(18, 112, 15);
}
@media only screen and (max-width: 576px) {
  .enquiry-contact > .form-row {
    flex-direction: column;
  }
  .form-control {
    padding: 8px;
  }
  .form-control::placeholder {
    font-size: 1.4rem;
  }
  .btn--default {
    font-size: 1.4rem;
  }
}

/* ==== end-of: enquiry ==== */

/* || == section: footer == || */

footer {
  background-color: #2e2839;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer h6 {
  color: gray;
  font-size: 1rem;
}
footer h6 a {
  text-decoration: none;
  color: white;
}
footer h6 a:hover {
  text-decoration: none;
  color: #026670;
}
@media only screen and (max-width: 576px) {
  footer h6 {
    line-height: 1.8rem;
    text-align: center;
    font-size: 1.2rem;
    color: gray;
  }
  footer h6 a {
    font-size: 1.2rem;
    color: white;
  }
  footer h6 a:hover {
    text-decoration: none;
    color: #026670;
  }
  footer h6 span {
    display: inline-block;
  }
}

/* ==== end-of: footer ==== */

/* =====0000000000000===== */
/* || == :: why-homeo == || */
.why-homeo {
  padding: var(--p-5);
}

/* ==== end: why-homeo ==== */
/* =====0000000000000===== */

/* +++++ page:-online-consult.html +++++ */

/* || == :: online-consult-hero == || */
.online-consult-hero {
  background-color: #cddcdc;
  background-image: radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
  background-blend-mode: screen, overlay;
  height: 60vh;
  display: flex;
  align-items: center;
}
.online-consult-hero__col_one {
  padding: var(--p-5);
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.online-consult-hero__col_one > h1 {
  margin: 0.8rem 0;
  font-size: 2rem;
  color: var(--second-color);
  text-shadow: 1px 1px 2px #999;
}
.online-consult-hero__col_one > h6 {
  font-size: 1.2rem;
  color: #555;
}
.online-consult-hero__col_two {
  height: inherit;
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.online-consult-hero__col_two > img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 576px) {
  .online-consult-hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .online-consult-hero__col_one {
    padding: var(--p-5);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .online-consult-hero__col_one > h3 {
    font-size: 1.2rem;
  }
  .online-consult-hero__col_one > h1 {
    font-size: 2rem;
    text-align: center;
    text-shadow: 0.5px 0.5px 0.5px #019e93;
  }
  .online-consult-hero__col_one > h6 {
    font-size: 1.2rem;
  }
  .online-consult-hero__col_two {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
  .online-consult-hero__col_two > img {
    max-width: 380px;
    width: 100%;
    height: auto;
  }
}
/* ==== end: online-consult-hero ==== */

/* || == :: tele-medicine == || */
.tele-medicine {
  padding: var(--p-2);
}
.tele-medicine__desc {
  background: whitesmoke;
  padding: var(--p-3);
  text-align: center;
}
.tele-medicine__desc > p {
  font-size: 1.5rem;
  color: #22577a;
}
/* ==== end: tele-medicine ==== */

/* || == :: consultation-steps == || */
.consultation-steps {
  padding: var(--p-3) var(--p-5);
  font-family: var(--quicksand);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.consultation-steps__desc {
  display: flex;
}
.consultation-steps__head {
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #22577a;
}
.consultation-steps__desc > .desc__item {
  margin: 2rem;
  padding: var(--p-2);
  width: 300px;
  text-align: center;
  -webkit-box-shadow: 2px 2px 28px -11px rgba(171, 171, 171, 1);
  -moz-box-shadow: 2px 2px 28px -11px rgba(171, 171, 171, 1);
  box-shadow: 2px 2px 28px -11px rgba(171, 171, 171, 1);
  border-radius: 1rem;
}
.consultation-steps__desc > .desc__item > h1 {
  color: #22577a;
}
.consultation-steps__desc > .desc__item > img {
  margin: 1rem 0;
  max-width: 200px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 576px) {
  .consultation-steps {
    padding: var(--p-3) var(--p-5);
  }
  .consultation-steps__desc {
    flex-wrap: wrap;
  }
  .consultation-steps__head {
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #22577a;
  }
  .consultation-steps__desc > .desc__item {
    margin: 2rem;
    padding: var(--p-5);
    width: 100%;
  }
  .consultation-steps__desc > .desc__item > img {
    max-width: 100px;
  }
  .consultation-steps__desc > .desc__item > p {
    font-size: 1.2rem;
  }
}

/* ==== end: consultation-steps ==== */

/* || == :: action-btns == || */
.action-btns {
  padding: var(--p-5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.action_btns__item {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.action_btns__divider {
  background: #25b2a9;
  margin: 0 5rem;
  padding: var(--p-2);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-transform: uppercase;
  color: #2e2839;
  border-radius: 100px;
}
.action_btns__item > h1 {
  font-family: var(--quicksand);
  color: #22577a;
}
.action_btns__item > a {
  background: var(--second-color);
  margin: 1rem 0;
  padding: 1rem;
  width: 200px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 1rem;
  box-shadow: 4px 4px 12px 2px #ccc;
}
.action_btns__item > a:hover {
  background: var(--main-color);
  box-shadow: 4px 4px 12px 2px #aaa;
}
@media only screen and (max-width: 576px) {
  .action-btns {
    padding: var(--p-3);
    flex-direction: column;
  }
  .action_btns__divider {
    margin: 1rem;
    padding: var(--p-2);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
/* ==== end: action-btns ==== */

/* +++++ end-of: page:- online-consult.html +++++ */

/* +++++ page:- book-appointment.html +++++ */

/* || == :: book-appointment == || */
.book-appointment {
  font-family: var(--quicksand);
  font-size: 1.2rem;
  padding: var(--p-5) var(--p-2);
}
.book-appointment__flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-appointment__form {
  padding: var(--p-2);
  flex-basis: 50%;
  -webkit-box-shadow: 5px 5px 25px 0px rgba(232, 235, 235, 1);
  -moz-box-shadow: 5px 5px 25px 0px rgba(232, 235, 235, 1);
  box-shadow: 5px 5px 25px 0px rgba(232, 235, 235, 1);
}
.book-appointment__form > h1 {
  text-align: center;
  color: #037971;
}
.form-row {
  display: flex;
}
.form-col {
  flex-basis: 50%;
}
.form-field {
  padding: var(--p-1);
  display: flex;
  flex-direction: column;
}
.form-field > label {
  padding: 0.25rem 0;
  font-weight: bold;
}
.form-field > input,
.form-field > select,
.form-field > textarea {
  padding: 0.5rem;
  font-family: var(--quicksand);
  font-size: 1rem;
  border: 1.5px solid #25b2a9;
  border-radius: 5px;
}
.form-field > button {
  background: var(--main-color);
  padding: 0.5rem;
  width: 150px;
  font-size: 1.2rem;
  text-transform: uppercase;
  border: 2px solid #037971;
  border-radius: 5px;
  cursor: pointer;
}
.form-field > button:hover {
  background-color: var(--second-color);
}
.book-appointment__highlights {
  padding: 0 var(--p-5);
  flex-basis: 50%;
}
.highlights {
  display: flex;
  flex-wrap: wrap;
}
.highlights__item {
  padding: var(--p-1);
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.highlight__img {
  padding: 1rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 25px 0px rgba(232, 235, 235, 1);
  -moz-box-shadow: 5px 5px 25px 0px rgba(232, 235, 235, 1);
  box-shadow: 5px 5px 25px 0px rgba(232, 235, 235, 1);
}
.highlight__img > img {
  height: 80px;
}
.highlight__desc {
  padding: var(--p-1) 0;
  font-family: var(--quicksand);
}
.highlight__desc > h1 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  text-align: center;
}
.highlight__desc > p {
  font-size: 0.75rem;
  text-align: center;
  color: #2e2839;
}
@media only screen and (max-width: 576px) {
  .book-appointment {
    margin: var(--p-5) 0;
  }
  .book-appointment__flex {
    flex-direction: column;
  }
  .book-appointment__form {
    width: 100%;
    flex-basis: 100%;
  }
  .book-appointment__highlights {
    margin-top: 3rem;
    padding: 0;
    flex-basis: 100%;
  }
  .highlight__img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .highlight__img > img {
    height: 50px;
  }
  .highlight__desc > h1 {
    font-size: 1.5rem;
  }
  .highlight__desc > p {
    font-size: 0.95rem;
  }
}
/* ==== end: book-appointment ==== */

/* +++++ end-of: page:- book-appointment.html +++++ */
