/* Import Poppins and Cormorant Garamond fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
  --default-font: 'Poppins', sans-serif;
  --desktop-h1-font-size: 82px;
  --desktop-h1-line-height: 88px;
  --desktop-h2-font-size: 54px;
  --desktop-h2-line-height: 64px;
  --desktop-h3-font-size: 40px;
  --desktop-h3-line-height: 48px;
  --desktop-h4-font-size: 32px;
  --desktop-h4-line-height: 40px;
  --desktop-h5-font-size: 26px;
  --desktop-h5-line-height: 34px;
  --desktop-h6-font-size: 20px;
  --desktop-h6-line-height: 28px;
  --mobile-h1-font-size: 48px;
  --mobile-h1-line-height: 56px;
  --mobile-h2-font-size: 38px;
  --mobile-h2-line-height: 46px;
  --mobile-h3-font-size: 34px;
  --mobile-h3-line-height: 42px;
  --mobile-h4-font-size: 28px;
  --mobile-h4-line-height: 36px;
  --mobile-h5-font-size: 24px;
  --mobile-h5-line-height: 32px;
  --mobile-h6-font-size: 20px;
  --mobile-h6-line-height: 28px;
  --desktop-body-font-size: 16px;
  --desktop-body-line-height: 24px;
  --mobile-body-font-size: 16px;
  --mobile-body-line-height: 24px;
  --desktop-label-font-size: 16px;
  --desktop-label-line-height: 24px;
  --mobile-label-font-size: 16px;
  --mobile-label-line-height: 24px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

*:first-child {
  margin-top: 0;
}

*:only-child,
*:last-child {
  margin-bottom: 0 !important;
}

body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto !important;
  font-family: var(--default-font);
  font-size: var(--desktop-body-font-size);
  line-height: var(--desktop-body-line-height);
  color: var(--body-color);
}


table {
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: .9em;
  margin-block-end:15px;width: 100%
}

table td,table th {
  border: 1px solid hsla(0,0%,50%,.502);
  line-height: 1.5;
  padding: 15px;
  vertical-align: top
}

table th {
  font-weight: 700
}

table tfoot th,table thead th {
  font-size: 1em
}

table caption+thead tr:first-child td,table caption+thead tr:first-child th,table colgroup+thead tr:first-child td,table colgroup+thead tr:first-child th,table thead:first-child tr:first-child td,table thead:first-child tr:first-child th {
  border-block-start:1px solid hsla(0,0%,50%,.502)}

table tbody>tr:nth-child(odd)>td,table tbody>tr:nth-child(odd)>th {
  background-color: hsla(0,0%,50%,.071)
}

table tbody tr:hover>td,table tbody tr:hover>th {
  background-color: hsla(0,0%,50%,.102)
}

table tbody+tbody {
  border-block-start:2px solid hsla(0,0%,50%,.502)}

@media(max-width: 767px) {
  table table {
      font-size:.8em
  }

  table table td,table table th {
      line-height: 1.3;
      padding: 7px
  }

  table table th {
      font-weight: 400
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--default-font);
  font-weight: 700;
  color: var(--primary-color);
}

h1 {
  font-size: var(--desktop-h1-font-size);
  line-height: var(--desktop-h1-line-height);
  font-style: italic;
  font-family: Cormorant Garamond;
}

h2 {
  font-size: var(--desktop-h2-font-size);
  line-height: var(--desktop-h2-line-height);
  font-weight: 500;
  font-style: italic;
  font-family: Cormorant Garamond;
  }

h3 {
  font-size: var(--desktop-h3-font-size);
  line-height: var(--desktop-h3-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

h4 {
  font-size: var(--desktop-h4-font-size);
  line-height: var(--desktop-h4-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

h5 {
  font-size: var(--desktop-h5-font-size);
  line-height: var(--desktop-h5-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

h6 {
  font-size: var(--desktop-h6-font-size);
  line-height: var(--desktop-h6-line-height);
  font-weight: 500;
  font-family: Cormorant Garamond;
}

a,
a:visited {
  color: inherit;
}

@media (max-width: 1279px) {
  body {
      font-size: var(--mobile-body-font-size);
      line-height: var(--mobile-body-line-height);
  }

  h1 {
      font-size: var(--mobile-h1-font-size);
      line-height: var(--mobile-h1-line-height);
  }

  h2 {
      font-size: var(--mobile-h2-font-size);
      line-height: var(--mobile-h2-line-height);
  }

  h3 {
      font-size: var(--mobile-h3-font-size);
      line-height: var(--mobile-h3-line-height);
  }


  h4 {
      font-size: var(--mobile-h4-font-size);
      line-height: var(--mobile-h4-line-height);
  }

  h5 {
      font-size: var(--mobile-h5-font-size);
      line-height: var(--mobile-h5-line-height);
  }

  h6 {
      font-size: var(--mobile-h6-font-size);
      line-height: var(--mobile-h6-line-height);
  }
}

@media (min-width: 768px) {
  .desktop-image {
      display: block;
  }

  .mobile-image {
      display: none;
  }
}

@media (max-width: 767px) {
  .desktop-image {
      display: none;
  }

  .mobile-image {
      display: block;
  }
}

strong {
  font-weight: 500 !important;
}

em {
  font-style: italic !important;
}

.italic {
  font-style: italic !important;
}

.font--400 {
  font-weight: 400 !important;
}

.font--300 {
  font-weight: 300 !important;
}

blockquote {
  background: #EDEDED;
  padding: 12px 16px;
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
  margin-left: 0;
  margin-right: 0;
}

blockquote * {
  color: var(--black-100);
}

blockquote:before {
  content: '';
  width: 100%;
  max-width: 4px;
  background: var(--primary-color);
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
  margin-top: 33px;
  margin-bottom: 0;
}

.wysiwyg-content h1:first-child,
.wysiwyg-content h2:first-child,
.wysiwyg-content h3:first-child,
.wysiwyg-content h4:first-child,
.wysiwyg-content h5:first-child,
.wysiwyg-content h6:first-child {
  margin-top: 0;
}

.wysiwyg-content p,
.wysiwyg-content ul,
.wysiwyg-content ol,
.wysiwyg-content blockquote {
  margin-top: 12px;
  margin-bottom: 0;
}

.wysiwyg-content blockquote:before {
  background: var(--black-100);
}

.wysiwyg-content p:first-child,
.wysiwyg-content ul:first-child,
.wysiwyg-content ol:first-child,
.wysiwyg-content blockquote:first-child {
  margin-top: 0;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 6px;
}

.wysiwyg-content .wp-block-image {
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

.wysiwyg-content .wp-block-image .wp-element-caption {
  text-align: center;

}

.button-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: center;
  border: solid 1px #EEC433;
  background: #EEC433;
  padding: 24px 32px;
  border-radius: 200px;
  text-transform: uppercase;
  transition: all 200ms ease;
  display: block;
  width: fit-content;
  min-width: 209px;
  text-decoration: none;
}

.btn.btn-outline {
  color: #fff;
  border: solid 1px #fff;
  background: transparent;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 12px 32px;
}
.btn.btn-black {
  background: #020202;
  border-color: #020202;
  color: #fff;
}
.btn.btn-black.btn-whatsapp:hover .icon:last-child svg path {
  fill: #020202;
}
.btn.btn-whatsapp:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .button-wrapper,
  .btn {
    width: 100%;
  }
}
.column-arrow {
  min-height: 50px;
  position:relative;
}

.column-arrow .down-arrow-animated {
  position: absolute;
  left: 0;
  right: 0;
}

.column-arrow .down-arrow-animated span {
  display: block;
  width: 13px;
  height: 13px;
  border-bottom: 3px solid #143830;
  border-right: 3px solid #143830;
  transform: rotate(45deg);
  margin: -2px auto;
  -webkit-animation: animate-down-arrow 2s infinite;
  animation: animate-down-arrow 2s infinite;
}

.column-arrow .down-arrow-animated span:nth-child(2) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.column-arrow .down-arrow-animated span:nth-child(3) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

@-webkit-keyframes animate-down-arrow {
  0% {
      opacity: 0;
      -webkit-transform: rotate(45deg) translate(-8px, -8px);
  }

  50% {
      opacity: 0.7;
  }

  100% {
      opacity: 0;
      transform: rotate(45deg) translate(8px, 8px);
  }
}

@keyframes animate-down-arrow {
  0% {
      opacity: 0;
      -webkit-transform: rotate(45deg) translate(-8px, -8px);
  }

  50% {
      opacity: 0.7;
  }

  100% {
      opacity: 0;
      transform: rotate(45deg) translate(8px, 8px);
  }
}

.doctor-card {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  align-items: center;
}

.doctor-card .doctor-card__avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  display: block;
}

.doctor-card .doctor-card__avatar .doctor-card__avatar-img,
.doctor-card .doctor-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.doctor-card .doctor-card__details {
  display: flex;
  flex-flow: column nowrap;
  gap: 6px;
  min-width: 0;
}

.doctor-card .doctor-card__name {
  margin: 0;
  color: #fff;
  font-family: cormorant garamond;
  font-family: Cormorant Garamond;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  letter-spacing: 0%;
  text-transform: capitalize;

}

.doctor-card .doctor-card__name a {
  color: inherit;
  font: inherit;
  text-decoration: none;
  font-style: inherit;
}

.doctor-card .credentials-list  {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 8%;
  text-transform: uppercase;
  color: #EEC433;
}
.doctor-card .doctor-card__verified {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.doctor-card .doctor-card__verified svg {
  width: 100%;
  height: 100%;
  display: block;
}

.doctor-card .doctor-card__title {
  margin: 0;
  color: #701446;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.doctor-card .doctor-card__credentials {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  gap: 4px 0;
}

.doctor-card .doctor-card__credential {
  position: relative;
  margin: 0;
  padding: 0 12px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}

.doctor-card .doctor-card__credential:first-child {
  padding-left: 0;
}

.doctor-card .doctor-card__credential:last-child {
  padding-right: 0;
}

.doctor-card .doctor-card__credential + .doctor-card__credential::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 8px;
  margin-top: -4px;
  background: #000;
}

@media (max-width: 767px) {
  .doctor-card {
      gap: 12px;
      align-items: flex-start;
      margin-top: 8px;
  }

  .doctor-card .doctor-card__details {
      gap: 4px;
      flex: 1 1 0;
  }

  .doctor-card .doctor-card__name {
      font-size: 20px;
      line-height: 28px;
      align-items: flex-start;
      gap: 0;
  }

  .doctor-card .doctor-card__verified {
      width: 16px;
      height: 16px;
  }

  .doctor-card .doctor-card__title {
      font-size: 12px;
      line-height: 20px;
      letter-spacing: 0.72px;
  }

  .doctor-card .doctor-card__credential {
      font-size: 10px;
      line-height: 16px;
      padding: 0 8px;
  }

  .doctor-card .doctor-card__credential + .doctor-card__credential::before {
      height: 6px;
      margin-top: -3px;
  }

  .doctor-card .doctor-card__name strong {
    display: block;
  }
}

ul.checked {
  list-style: none;
  padding-left: 0 !important;
  margin-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

ul.checked li {
  position: relative;
  padding-left: 34px;
  text-align: left;
} 

ul.checked li:before {
  content: '';
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0px;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ONLY FOR PAGE 404 */
.page-404-section {
  background-color: #F7F3E3;
  padding: 140px 20px;
}

.page-404-section .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.page-404-section .wrap h1 {
  margin-bottom: 8px;
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}

.page-404-section .icon-wrap {
  display: flex;
  height: 100px;
  width: 240px;
}

.page-404-section .wrap p {
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.page-404-section .wrap a {
  color: #000 !important;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .page-404-section {
      padding: 80px 20px;
  }

  .page-404-section .wrap h1 {
      font-size: 24px;
      line-height: 32px;
      text-align: center;
  }

  .page-404-section .wrap p {
      font-size: 18px;
      line-height: 26px;
  }

  .page-404-section .wrap {
      gap: 40px;
  }

  .page-404-section .wrap a {
      display: block;
  }
}