@font-face {
  font-family: "Bell MT";
  src: url("../fonts/BellMT.woff2") format("woff2"),
    url("../fonts/BellMT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bell MT";
  src: url("../fonts/BellMTBold.woff2") format("woff2"),
    url("../fonts/BellMTBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: 14px;
  scroll-behavior: smooth;
  --primary: #cde9ef;
  --white: #ffffff;
  --black: #000000;
  --text: #747579;
  --yellow: #fff49b;
  --secondary: #EAE2E3;
}

body {
  margin: 0;
  font-family: "Bell MT", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #181b31;
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #181b31;
}

li {
  list-style: none;
}

ol,
ul,
dl,
p,
h1,
h2,
h3,
h4,
h5,
figure {
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 24px;
}
a {
  text-decoration: none;
  outline: 0;
}

[hidden] {
  display: none !important;
}

/* Display */
.flex {
  display: flex;
}
.justify-content-center {
  justify-content: center;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-space-evenly {
  justify-content: space-evenly;
}
.pos-r {
  position: relative;
}
.items-center {
  align-items: center;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.6rem;
}
.gap-5 {
  gap: 3rem;
}

/* Text */
.text {
  color: #747579;
}
.t-peach {
  color: var(--peach);
}
.t-primary {
  color: var(--primary);
}
.t-right {
  text-align: right;
}
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-white {
  color: var(--white);
}
.t-upper {
  text-transform: uppercase;
}
.fw-medium {
  font-weight: 500;
}
.small {
  font-size: 10px;
  line-height: 14px;
}
.is-web{
  display: none;
}

/* Background */
.bg-primary {
  background: var(--primary);
}
.bg-secondary {
  background: var(--secondary);
}
.bg-yellow {
  background: var(--yellow);
}
.bg-light {
  background: #f5f7f9;
}

.opacity-0{
  opacity: 0;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 26px 0 0;
  border: none;
  border-radius: 50px;
  background-color: #D5EDF4;
  color: #3F4D50;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  height: 42px;
  font-family: "Bell MT", sans-serif;
  transition: color 0.4s ease;
}
.btn:not(.btn-no)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #3F4D50;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #3F4D50;
  color: #fff;
  font-size: 22px;
  z-index: 1;
  transition: all 0.4s ease;
  margin-right: 15px;
}
.btn .arrow {
  transition: transform 0.4s ease;
}
.btn:hover .arrow {
  transform: translateX(6px);
}
.btn span {
  z-index: 1;
  position: relative;
  transition: color 0.4s ease;
}
.btn:hover span {
  color: #fff;
}
.btn.round {
  border-radius: 25px;
}
.btn-primary {
  background: var(--primary);
}
.btn-white {
  background: var(--white);
}
.btn-read-more{
  background-color: transparent;
  box-shadow: none;
  font-size: 14px;
  padding: 0;
  height: auto;
  i{
    border: 1px solid #000;
    padding: 6px;
    border-radius: 50%;
    transform: rotate(180deg);
    display: inline-block;
    margin-right: 6px;
    font-size: 8px;
  }
}
.btn-title {
  font-weight: bold;
  border-radius: 4px;
  transform: skew(-15deg);
  padding: 12px 20px;
  font-size: 18px;
  color: #000;
}
.container {
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.sec-title {
  margin-bottom: 8px;
  font-weight: 400;
  &.border-bottom{
    border-bottom: 1px solid #00000070;
    padding: 20px 0;
  }
}
.page-title {
  height: 150px;
  overflow: hidden;
}
.page-title .sec-title {
  color: var(--white);
  z-index: 99;
}
.page-title .sec-desc {
  color: #bdbdbd;
  text-align: center;
  z-index: 99;
}
.page-title-img {
  height: 150px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-title-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #181b31bd;
}
.w-full {
  width: 100%;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.card {
  background: var(--white);
  border-radius: 8px;
  position: relative;
  z-index: 999;
}
.shadow {
  box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.15);
}
.rounded-circle {
  border-radius: 50%;
}
.rounded-0 {
  border-radius: 0;
}
.rounded-1 {
  border-radius: 0.2rem;
}
.rounded-4 {
  border-radius: 1rem;
}
.v-middle {
  vertical-align: middle;
}
.hidden{
  display: none;
}
.is_web {
  display: none;
}
.section {
  padding: 40px 0;
  overflow: hidden;
}
.main {
  margin-top: 61px;
}
.row {
  display: flex;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.flex-column-row {
  flex-direction: column;
}
.col-6 {
  width: 50%;
}
.col-12 {
  width: 100%;
}
[class*="col-"] {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form Controls */
.form-control {
  border: 1px solid #d4d4e1;
  font-size: 14px;
  padding: 1rem;
  border-radius: 6px;
  width: 100%;
  font-family: "Source Sans 3", sans-serif;
}
.form-control:focus-visible {
  outline: 0;
}
.field-error {
  font-size: 12px;
  color: #f44336;
}

/* Margin */
.ms-3 {
  margin-left: 1rem;
}
.ms-4 {
  margin-left: 1.6rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.6rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.6rem;
}
.ms-3 {
  margin-left: 1rem;
}
.me-2 {
  margin-right: 0.5rem;
}

/* Padding */
.p-4 {
  padding: 1.6rem;
}
.p-3 {
  padding: 1rem;
}
.pt-5 {
  padding-top: 3rem;
}
.ps-5 {
  padding-left: 3rem;
}
.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Header */
.header-top {
  padding: 14px 0 5px;
  font-size: 12px;
  text-align: center;
  background-color: var(--white);
  &.bg-yellow{
    background-color: var(--yellow);
  }
}
.header {
  width: 100%;
  padding: 1rem 0;
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  z-index: 9999;
  transition: top 0.3s ease-in-out;
  &.fixed {
    position: fixed;
    left: 0;
    top: 0;
  }
}
.header .logo {
  font-size: 20px;
  font-weight: 700;
}
.header nav ul {
  column-gap: 30px;
}
.header nav a {
  color: var(--gray);
  font-weight: 500;
}
#nav-menu ul {
  display: flex;
  row-gap: 1.5rem;
}

/* Banner */

.banner {
  .banner-img{
    width: 300px;
  }
  .headline {
    display: inline-block;
    font-size: 24px;
    em {
      font-style: italic;
      font-weight: normal;
    }
    P{
      margin-top: 0;
      font-size: 24px;
    }
  }
  p {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
  }
  .hero-box {
    text-align: center;
  }
}

/* Sec About */

.sec-about {
  p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

/* SLH */
.sec-slh {
  .sec-title{
    text-align: center;
  }
  .img-left{
    width: 100%;
  }
  .slh {
    img{
      max-height: 100px;
    }
  }
  h4 {
    font-size: 14px;
    font-weight: 400;
  }
}

/* Testimonial */
.sec-testimonial h2 .btn-title{
  transform: skew(-15deg);
  border-radius: 4px;
  padding: 12px 20px;
  vertical-align: middle;
}
.testimonial {
  padding: 20px 18px;
  text-align: left;
  .ri-double-quotes-l{
    font-size: 48px;
    color: #AA8282;
    position: absolute;
    top: -28px;
  }
  .text-wrap{
    max-height: 270px;
    overflow-x: auto;
  }
  p {
    font-size: 16px;
    line-height: 32px;
  }
  h4 {
    margin-top: 20px;
    font-size: 18px;
  }
}

.sec-book-call {
  h2{
    margin-bottom: 40px;
    font-size: 18px;
    padding: 12px 60px;
    border-radius: 20px;
  }
  h3 {
    padding: 15px 0;
  }
  p {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* Case Studies */
.sec-case-studies {
  .case-studies-wrap{
    margin-top: 40px;
  }
  .img-wrap {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #000;
    position: relative;
    margin: 0 auto;
    img {
      max-height: 50px;
      max-width: 50px;
      position: absolute;
      top: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
  }
  h4 {
    font-size: 14px;
    font-weight: normal;
    margin-top: 20px;
  }
}

/* Testimonails page */

.testimonial-banner{
  h1{
    font-size: 16px;
    max-width: 180px;
    font-weight: normal;
  }
  .flower{
    max-width: 80px;
  }
  .left-bnr, .right-bnr{
    max-height: 180px;
  }
}

.testimonial-top {
  i{
    color: #AA8282;
    font-size: 26px;
  }
  .desc{
    border-left: 1px solid #000;
    padding: 8px 0 8px 12px;
    margin-left: 12px;
  }
  p{
    font-size: 16px;
  }
  h3{
    font-size: 14px;
    margin-top: 12px;
  }
}

.case-studies-about{
  background-image: url(../images/case-studies-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  img{
    height: 100%;
  }
  .flex-wrap{
    gap: 18px;
  }
  p{
    font-size: 16px;
  }
  .btn-read-more{
    margin-top: 4px;
  }
}

.case-studies{
  .left h4{
      margin-bottom: 10px;
  }
  .flex-wrap{
    gap: 30px;
  }
  .right{
    position: relative;
  }
}
.case-studies-main{
  background-color: #EAE2E3;
  padding: 30px 20px;
  display: flex ;
  flex-direction: column;
  gap: 50px;
}
.case-studies-card{
  border: 1px solid #000;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: 35px;
  .bullet{
    height: 100%;
  }
  .heading {
    h5{
      font-style: italic;
      font-size: 16px;
      font-weight: normal;
    }
    h2{
      font-size: 18px;
      margin: 6px 0 8px;
    }
    p{
      font-size: 12px;
    }
  }
  .experience{
    margin-top: 30px;
    .year{
      width: 50%;
      font-family: none;
    }
    h3{
      font-size: 24px;
      font-weight: normal;
    }
    sub{
      font-size: 12px;
      position: relative;
      bottom: 6px;
      left: 3px;
      line-height: 10px;
    }
    p{
      font-size: 14px;
    }
  }
  .treatment{
    border: 1px solid #000;
    border-radius: 18px;
    padding: 12px;
    margin-top: 30px;
    .icon-plus{
      width: 20px;
    }
    h4{
      gap: 8px;
      line-height: 16px;
      flex-direction: column;
      font-size: 14px;
      font-weight: normal;
    }
  }
}
.case-studies-details{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  &.open{
    opacity: 1;
    margin-top: 30px;
  }
  h3{
    font-size: 16px; 
  }
}

.contact-us{
  .left{
    text-align: center;
  }
  .right{
    flex: 1;
    position: relative;
  }
}
.contact-card{
  padding: 20px;
  border-radius: 12px;
}

.appointment-banner{
  .content{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  h1{
    font-weight: normal;
  }
}

.book-step{
  h4{
    font-size: 32px;
    margin-bottom: 12px;
  }
  p{
    font-size: 18px;
  }
  .item{
    width: 100%;
    border-bottom: 1px solid #00000070;
    padding: 20px 0 20px 8px;
  }
}

.consultations{
  .consultation-card{
    margin-bottom: 30px;
    gap: 16px;
    color: #181b31;
    &.acute-consult h4{
      background-color: var(--black);
      color: #AA8282;
    }
    &:last-child{
      margin-bottom: 0;
    }
  }
  .img-wrap{
    position: relative;
    img{
      max-width: 100%;
      filter: brightness(0.8);
    }
    h4{
      position: absolute;
      width: 85%;
      bottom: 30px;
      left: 50%;
      font-size: 18px;
      padding: 8px;
      transform: translate(-50%, 0);
      background-color: var(--white);
    }
  }
  p{
    font-size: 16px;
    margin-bottom: 20px;
  }
  h5{
    font-size: 16px;
  }
}

.booking-faqs{
  .right{
    width: 100%;
  }
  li{
    background-color: var(--primary);
    padding: 20px 20px 20px 30px;
    border-radius: 40px 0 0 40px;
    margin-bottom: 20px;
    font-size: 16px;
    min-height: 102px;
  }
  .icon-arrow{
    height: 25px;
    width: 25px;
    min-width: 25px;
    text-align: center;
    line-height: 27px;
    color: var(--white);
    border-radius: 50%;
    background-color: var(--black);
  }
}

.faq-que{
  cursor: pointer;
}
.faq-ans{
  max-height : 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  p{
    margin-top: 20px;
    color: #00000096;
  }
}

.about-banner{
  padding-top: 0;
  border-radius: 0 0 50% 50%;
  p{
    font-size: 18px;
  }
  h1{
      transform: skew(15deg);
      font-size: 18px;
  }
  .btn{
    margin: 30px 0 12px;
  }
}

.about-me{
  &.about-practice{
    .founder-img{
      display: block;
      margin-bottom: 10px;
    }
  }
  h3{
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .content{
    text-align: left;
    p{
      font-size: 20px;
      margin-bottom: 16px;
      &:last-child{
        margin-bottom: 0;
      }
    }
  }
  .btn-journey{
    margin: 30px 0;
  }
  .btn-title{
    background-color: var(--yellow);
  }
  .btn-approach{
    font-size: 22px;
    margin-bottom: 30px;
  }
  ul{
    flex-wrap: wrap;
    gap: 30px;
  }
  li{
    text-align: left;
    font-size: 18px;
  }
}

.sec-expertise{
  background-color: #AA8282;
  .sec-title{
    color: var(--white);
    font-size: 22px;
  }
  .expertise {
    margin-top: 30px;
    h4{
      margin-top: 8px;
      font-size: 18px;
      font-weight: normal;
    }
  }
  .expertise-info{
    margin: 40px auto 0;
    .item{
      margin-top: 25px;
    }
    i{
      color: var(--primary);
      font-weight: bold;
      font-size: 32px;
    }
    p{
      font-size: 20px;
      text-align: left;
    }
  }
}

/* Footer */
footer {
  background-color: #AA8282;
  h4 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #484848;
  }
  img{
    max-width: 140px;
  }
  p,
  span,
  a {
    color: #484848;
    font-size: 18px;
    display: block;
    margin-top: 10px;
  }
  .rights {
    margin-top: 15px;
    text-align: center;
  }
}

/* slider */
.swiper-wrapper{
  padding-bottom: 40px;
}
.swiper.overflow-inherit {
  overflow: inherit !important;
}
.swiper .swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: var(--black);
}
.swiper-slide-thumb-active img {
  border: 2px solid var(--primary);
  border-radius: 6px;
}
.swiper .swiper-button-next, .swiper .swiper-button-prev{
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: var(--white);
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 14px !important;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .header-logo{
    width: 120px;
  }
  #nav-menu ul {
    font-size: 12px;
    text-align: center;
  }
  .sec-title{
    font-weight: bold;
  }
  .testimonial-banner{
    .content{
      padding-left: 15px;
    }
  }
  .case-studies-card {
    .bullet {
        max-width: 30px;
    }
  }
  .sec-about {
    .btn-group{
      justify-content: space-between;
    }
    .btn{
      font-size: 12px;
    }
  }
  .sec-book-call h3{
    font-size: 18px;   
  }
  .about-banner {
    .flower{
      max-width: 120px;
    }
  }
  .about-me {
    li img {
      max-width: 55px;
    }
  }
  .sec-expertise{
    .expertise{
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-evenly;
      img{
        max-width: 80px;
      }
    }
  }
  .swiper .swiper-button-prev{
    left: -16px;
  }
  .swiper .swiper-button-next{
    right: -16px;
  }
}

@media only screen and (min-width: 992px) {
  :root {
    font-size: 16px;
  }
  .is-web{
    display: initial;
  }
  .header-logo{
    margin-left: 80px;
  }
  .container {
    max-width: 960px;
  }
  .flex-column-row {
    flex-direction: row;
  }
  .section {
    padding: 70px 0;
  }
  .sec-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .sec-desc {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
  }
  .btn{
    font-size: 18px;
    height: 52px;
  }
  .btn .circle{
    width: 52px;
    height: 52px;
  }
  .btn.large {
    font-size: 22px;
  }
  .btn-read-more{
    font-size: 20px;
    i{
      font-size: 18px;
    }
  }
  .btn-title {
    font-size: 24px;
  }
  .header-fixed {
    background-color: #ffffffcf;
  }
  #nav-menu ul {
    justify-content: space-around;
  }
  .header-top {
    padding: 14px 0;
    font-size: 14px;
  }
  /* .header{
    border-radius: 90px 0 0 0;
  } */
  .banner {
    .banner-img{
      width: 420px;
    }
    .headline {
      .btn-title{
        font-size: 32px;
      }
      p{
        font-size: 30px;
      }
    }
    .hero-box {
      width: 50%;
    }
    p{
      font-size: 24px;
      line-height: 32px;
      margin-top: 30px;
    }
  }

  .sec-about {
    .about{
      max-width: 40%;
    }
    p{
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 30px;
    }
  }

  .sec-slh {
    .sec-title{
      text-align: right;
    }
    .img-left{
      width: 450px;
    }
    .slh {
      border-left: 3px solid #000;
      padding-left: 60px;
      img{
        max-height: 135px;
      }
    }
    h4{
      font-size: 24px;
    }
  }
  .sec-testimonial h2 .btn-title{
    font-size: 48px;
  }
  .testimonial {
    padding: 40px 60px;
    max-width: 75%;
      margin: 0 auto;
    p {
      font-size: 24px;
      line-height: 36px;
    }
    .ri-double-quotes-l {
      font-size: 62px;
      top: -38px;
    }
    h4 {
      margin-top: 30px;
      font-size: 24px;
    }
  }

  .sec-case-studies {
    .case-studies-wrap{
      margin-top: 80px;
    }
    .img-wrap {
      width: 150px;
      height: 150px;
      line-height: 150px;
      img {
        max-height: 90px;
        max-width: 90px;
      }
    }
    h4 {
      font-size: 20px;
    }
  }

  .sec-book-call {
    h2{
      margin-bottom: 70px;
      font-size: 32px;
      line-height: 34px;
    }
    p {
      font-size: 32px;
      margin-top: 40px;
    }
    .btn-yellow{
      padding: 16px 90px;
      font-size: 22px;
    }
  }

  .contact-us{
    .left{
      max-width: 300px;
      text-align: left;
    }
  }

  .contact-card{
    padding: 60px 80px;
    border-radius: 34px;
  }

  .testimonial-banner{
    h1{
      font-size: 52px;
      line-height: 56px;
      max-width: 650px;
    }
    .flower{
      max-width: 100%;
    }
    .left-bnr, .right-bnr{
      max-height: 100%;
    }
    .bnr-flower{
      position: absolute;
      width: 350px;
      top: 50px;
      opacity: 0.2;
      &.right{
        right: 17%;
      }
      &.left{
        left: 17%;
    }
  }
}

  .testimonial-top {
    i{
      font-size: 42px;
    }
    .desc{
      padding: 15px 0 15px 12px;
    }
    p{
      font-size: 32px;
      line-height: 32px;
    }
    h3{
      font-size: 24px;
      margin-top: 16px;
    }
  }

  .case-studies-about{
    p{
      font-size: 32px;
      line-height: 34px;
      max-width: 800px;
    }
    .flex-wrap{
      gap: 52px;
    }
    .btn-read-more{
      margin-top: 16px;
    }
  }

  .case-studies{
    .left h4{
      font-size: 30px;
      height: 52px;
    }
    .right{
      max-width: 70%;
    }
    &.about{
      .sec-title{
        margin-bottom: 4px;
        font-size: 32px;
      }
    }
  }

  .case-studies-main{
    padding: 80px 55px;
  }

  .case-studies-card{
    .heading {
      h5{
        font-size: 24px;
        margin-bottom: 8px;
      }
      h2{
        line-height: 35px;
        font-size: 32px;
        margin: 0 0 15px;
      }
      p{
        font-size: 20px;
      }
    }
    .experience{
      margin-top: 70px;
      h3{
        font-size: 58px;
        line-height: 4px;
      }
      sub{
        bottom: 15px;
        left: 4px;
        font-size: 16px;
      }
      p{
        font-size: 24px;
      }
    }
    .treatment{
      margin-top: 50px;
      border-radius: 24px;
      padding: 20px;
      .icon-plus{
        width: 30px;
      }
      h4{
        gap: 16px;
        font-size: 20px;
        flex-direction: row;
        line-height: 24px;
      }
    }
  }
  .case-studies-details{
    gap: 50px;
    &.open{
      margin-top: 50px;
    }
    h3{
      font-size: 24px;
      margin-bottom: 6px;
    }
  }

  .book-step{
    padding-left: 90px;
    h4{
      font-size: 32px;
    }
    p{
      font-size: 18px;
    }
    .item{
      border-bottom: 0;
      border-left: 1px solid #00000070;
      text-align: left;
    }
  }

  .consultations{
    .consultation-card{
      margin-bottom: 80px;
    }
    .img-wrap{
      img{
        max-width: 500px;
      }
      h4{
        font-size: 32px;
        padding: 15px 10px;
      }
    }
    p{
      font-size: 26px;
    }
    h5{
      font-size: 20px;
    }
  }

  .booking-faqs{
    .left{
      width: 50%;
    }
    li{
      font-size: 22px;
      padding: 25px 20px 25px 50px;
    }
  }

  .about-banner{
    padding-top: 0;
    p{
      font-size: 32px;
      max-width: 650px;
      margin: 0 auto 0;
    }
    h1{
        font-size: 24px;
    }
  }

  .about-me{
    &.about-practice{
      .founder-img{
        width: 350px;
        margin-bottom: 30px;
      }
    }
    h3{
      font-size: 36px;
      line-height: 38px;
      margin-bottom: 50px;
    }
    .founder-img{
      max-width: 400px;
    }
    .content{
      max-width: 60%;
      padding-left: 20px;
      border-left: 1px solid #00000070;
      p{
        font-size: 34px;
        margin-bottom: 30px;
      }
    }
    .btn-journey{
      margin: 40px 0 60px;
    }
    .btn-title{
      font-size: 32px;
    }
    .btn-approach{
      font-size: 32px;
      margin-bottom: 40px;
    }
    ul{
      gap: 40px;
    }
    li{
      width: calc(50% - 20px);
      font-size: 22px;
    }
  }

  .sec-expertise{
    .sec-title{
      font-size: 38px;
      max-width: 650px;
      margin: 0 auto;
    }
    .expertise {
      h4{
        margin-top: 16px;
        font-size: 30px;
      }
    }
    .expertise-info{
      margin: 60px auto 0;
      max-width: 500px;
      i{
        font-size: 48px;
      }
      p{
        font-size: 30px;
      }
    }
  }

  footer {
    h4{
      font-size: 24px;
    }
    img{
      max-width: 180px;
    }
    p,
  span,
  a {
    font-size: 24px;
  }
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}