/*
Theme Name: HelloDoc
Theme URI: https://example.com/hellodoc
Author: Your Name
Author URI: https://example.com
Description: HelloDoc is a clean, modern, professional WordPress theme built for business, healthcare, and corporate websites. Fully custom-coded, fast, responsive, and easy to customize.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hellodoc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout
*/

/* 1. Root Variables ---------------------------------------------------- */
:root {
  --hd-primary: #2f6f5e;      /* deep teal/green - professional .hd-header-innerhealthcare/business tone */
  --hd-primary-dark: #234f43;
  --hd-secondary: #d9a441;    /* warm gold accent */
  --hd-text: #2c2c2c;
  --menu-item: rgba(10, 14, 21, 0.80);
  --hd-text-light: #6b6b6b;
  --hd-bg: #ffffff;
  --hd-bg-alt: #f6f8f7;
  --hd-border: #e4e7e6;
  --hd-radius: 10px;
  --hd-shadow: 0 4px 20px rgba(0,0,0,0.06);
  --hd-shadow-hover: 0 8px 30px rgba(0,0,0,0.10);
  --hd-container: 100%;
  --hd-font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --hd-font-body: 'DM Sans';
  --hd-transition: all 0.25s ease;

  /* Header-specific */
  --hd-header-dark: #0f1b2b;
  --hd-header-radius: 18px;
}

/* 2. Reset & Base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hd-font-body);
  color: var(--hd-text);
  background: var(--hd-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /*overflow: hidden !important;*/
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hd-primary); text-decoration: none; transition: var(--hd-transition); }
a:hover { color: var(--hd-primary-dark); }
ul, ol { padding-left: 1.2rem; }
figure { margin: 0; }

/* 3. Typography ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hd-font-heading);
  color: var(--hd-text);
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 1rem;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.2rem; color: var(--hd-text-light); }
.hd-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hd-secondary);
  margin-bottom: 0.6rem;
  display: inline-block;
}
.elementor-button {
    line-height: normal !important;
    padding: 16px 24px !important;
}

/* 4. Layout / Containers -------------------------------------------------- */
.hd-container {
  max-width: var(--hd-container);
  margin: 0 auto;
  padding: 0 24px;
}
.hd-section { padding: 80px 0; }
.hd-section-alt { background: var(--hd-bg-alt); }
.hd-grid { display: grid; gap: 32px; }
.hd-grid-2 { grid-template-columns: repeat(2, 1fr); }
.hd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hd-grid-4 { grid-template-columns: repeat(4, 1fr); }
.hd-flex { display: flex; align-items: center; }
.hd-flex-between { display: flex; align-items: center; justify-content: space-between; }
.hd-text-center { text-align: center; }

/* 5. Header ---------------------------------------------------------------- */
/* Outer wrap gives the floating, inset feel from the design */
.hd-header-wrap {
  background: var(--hd-bg);
  position: sticky;
  top: 0;
  z-index: 999;
}
.hd-site-header {
  max-width: var(--hd-container);
  margin: 0 auto;
  max-width: 1280px;
  /*background: var(--hd-bg);*/
  /*box-shadow: var(--hd-shadow);*/
  /*transition: box-shadow 0.2s ease;*/
}
.hd-header-wrap{
    border-bottom: 1px solid var(--hd-border);
}
.hd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0px;
  max-width: 1280px;
  margin: auto;
}

/* Branding: icon + title + tagline, stacked tightly */
.hd-site-branding { display: flex; align-items: center; }
.hd-site-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hd-text);
}
.hd-site-title-wrap:hover { color: var(--hd-text); }
.hd-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--hd-header-dark);
  flex-shrink: 0;
}
.hd-site-title-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hd-site-title {
  font-family: var(--hd-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hd-header-dark);
}
.hd-site-description {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--hd-text-light);
  margin: 0;
}
.contactus_confirmation{
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: -20px;
    text-align: center;
    
}
.hd-logo img { max-height: 50px; width: auto; }

.hd-header-cta { display: flex; align-items: center; gap: 12px; }
.hd-header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hd-text);
  margin-right: 4px;
}
body .hd-site-header .hd-header-cta a.headr_bluebtn{
    border-radius: 16px;
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 32, 73, 0.60) 0%, #002049 100%);
    display: flex;
    padding: 15px 25px;
    justify-content: space-between;
    align-items: center;
    border: 0px;
    color: white;
    line-height: normal;
    border: 1px solid #002049;
}
body #hd-header-cta a.headr_bluebtn{
    justify-content: center;
}
body .hd-site-header .hd-header-cta a.headr_leftbtn{
    border-radius:16px;
    border: 1px solid rgba(10, 14, 21, 0.20);
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: normal;
}

/* 6. Navigation -------------------------------------------------------------- */

.menu__mainclass {
    padding: 15px 25px;
    border-radius: 12px;
    background: #FFF;
}
.hd-primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.hd-primary-nav li { position: relative; width:100%}
/*.hd-primary-nav > ul > li.menu-item-has-children > a { padding-right: 4px; }*/
.hd-primary-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(10, 14, 21, 0.80);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
/*.hd-primary-nav a:hover,*/
/*.hd-primary-nav .current-menu-item > a { color: var(--hd-primary); }*/
/*{*/
.hd-primary-nav li a{
    padding: 8px;
}
.hd-primary-nav li a:hover{
    background: rgba(0, 32, 73, 0.05);
    padding: 8px;
    border-radius: 8px;
}
/* Chevron indicator for dropdown items */
.hd-primary-nav li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  opacity: 0.65;
}

.hd-primary-nav .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: var(--hd-shadow-hover);
  /*border: 1px solid var(--hd-border);*/
  border-radius: var(--hd-radius);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--hd-transition);
  z-index: 20;
  display: grid;
  margin: 0px !important;
}
#primary-menu ul.sub-menu{
    gap: 10px !important;
}
.hd-primary-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hd-primary-nav .sub-menu a { padding: 8px 12px; border-radius: 6px; }
.hd-primary-nav .sub-menu a::after { display: none; }
.hd-primary-nav .sub-menu a:hover { background: var(--hd-bg-alt); }

.hd-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hd-menu-toggle span {
  display: block;
  /*width: 26px;*/
  /*height: 3px;*/
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--hd-transition);
}

.hd-menu-toggle{
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hd-menu-toggle .hd-line{
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    margin: 5px auto;
    transition: .3s ease;
}

.hd-menu-toggle .hd-close{
    display: none;
    font-size: 40px;
    line-height: 44px;
    font-weight: 300;
    color: #000;
    text-align: center;
    margin-top: -5px;
}

/* Menu Open */
.hd-menu-toggle.active .hd-line{
    display: none;
}

.hd-menu-toggle.active .hd-close{
    display: block;
}

/* 8. Buttons ------------------------------------------------------------------- */
.hd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--hd-transition);
}
.hd-btn-primary {
  background: var(--hd-primary);
  color: #fff !important;
}
.hd-btn-primary:hover {
  background: var(--hd-primary-dark);
  transform: translateY(-2px);
}
.hd-btn-outline {
  background: transparent;
  border-color: var(--hd-border);
  color: var(--hd-text) !important;
}
.hd-btn-outline:hover {
  border-color: var(--hd-header-dark);
  transform: translateY(-1px);
}
.hd-btn-dark:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
}

/* Small header-sized button variant */
.hd-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hd-btn-arrow svg { 
    display: block;
    height: 20px;
    width: 20px;
}

/* 10. Content / Post ------------------------------------------------------------- */
.hd-content-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 60px 0;
}
.hd-content-wrap.no-sidebar { grid-template-columns: 1fr; }
.hd-entry-header { margin-bottom: 24px; }
.hd-entry-title { font-size: 2.2rem; }
.hd-entry-meta {
  font-size: 0.9rem;
  color: var(--hd-text-light);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hd-entry-thumbnail { margin-bottom: 30px; border-radius: var(--hd-radius); overflow: hidden; }
.hd-entry-content h2 { margin-top: 2rem; }
.hd-entry-content img { border-radius: var(--hd-radius); }
.hd-entry-content blockquote {
  border-left: 4px solid var(--hd-primary);
  margin: 1.5rem 0;
  padding: 0.5rem 1.5rem;
  background: var(--hd-bg-alt);
  border-radius: 0 var(--hd-radius) var(--hd-radius) 0;
  font-style: italic;
}
.hd-tags { margin-top: 2rem; display: flex; gap: 10px; flex-wrap: wrap; }
.hd-tags a {
  background: var(--hd-bg-alt);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* Article card for archive/index listing */
.hd-post-card {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  overflow: hidden;
  margin-bottom: 32px;
  transition: var(--hd-transition);
  background: #fff;
}
.hd-post-card:hover { box-shadow: var(--hd-shadow-hover); }
.hd-post-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hd-post-card-body { padding: 24px; }
.hd-post-card-body h2 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.hd-post-card .hd-entry-meta { margin-bottom: 0.8rem; }

/* Pagination */
.hd-pagination { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.hd-pagination a, .hd-pagination span {
  padding: 10px 16px;
  border: 1px solid var(--hd-border);
  border-radius: 8px;
  color: var(--hd-text);
}
.hd-pagination .current { background: var(--hd-primary); color: #fff; border-color: var(--hd-primary); }
.hd-pagination a:hover { border-color: var(--hd-primary); color: var(--hd-primary); }

/* 11. Sidebar / Widgets ------------------------------------------------------------ */
.hd-sidebar .widget {
  background: var(--hd-bg-alt);
  border-radius: var(--hd-radius);
  padding: 24px;
  margin-bottom: 28px;
}
.hd-sidebar .widget h2, .hd-sidebar .widget .widget-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--hd-secondary);
}
.hd-sidebar .widget ul { list-style: none; padding: 0; margin: 0; }
.hd-sidebar .widget li { padding: 8px 0; border-bottom: 1px solid var(--hd-border); }
.hd-sidebar .widget li:last-child { border-bottom: none; }

.ts-swiper .swiper-slide{
    height: 275px !important;
}
.ts-swiper .swiper-slide a{
    height: 100% !important;
}
/* 12. Comments ------------------------------------------------------------------- */
.hd-comments { margin-top: 50px; }
.hd-comments-title { margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; padding-left: 40px; }
.hd-comment {
  border: 1px solid var(--hd-border);
  border-radius: var(--hd-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.hd-comment-author { font-weight: 600; }
.hd-comment-meta { font-size: 0.85rem; color: var(--hd-text-light); margin-bottom: 10px; }
.hd-comment-reply a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hd-primary);
}
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hd-border);
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: var(--hd-font-body);
}
#respond textarea { min-height: 140px; }

/* 13. Footer --------------------------------------------------------------------- */
.footer_col_large{
    flex: 0 0 30%;
}
.footer_col_large p{
    color:  rgba(10, 14, 21, 0.70);
    font-family: "DM Sans";
    font-size: Content Width;
    font-style: normal;
    font-weight: 400;
    line-height:  24px;
}
.footer_col_large img,
.footer_icons img
{
    margin-bottom: 30px;
}
.site-footer ul li a:hover{
    color: #B38F5D;
}
.footer_col_small{
   flex: 0 0 20%;
}
.site-footer{
    background-color: rgba(10, 14, 21, 0.05);
    padding: 50px 0 20px;
    
}
#field_7_12{
    display:none;
}
#field_21_9{
    display: none;
}

.site-footer .container{
    max-width: 1280px;
    margin: auto;
    padding: 16px 8%;
    background: #FFF;
    backdrop-filter: blur(40px);
    padding: 32px;
    border-radius: 16px;
}

/*.footer-top{*/
/*    display:grid;*/
/*    grid-template-columns:2fr 1fr 1fr 1.5fr;*/
/*    gap:50px;*/
/*}*/

    .footer-top {
        gap: 46px;
        display: flex;
        justify-content: space-between;
    }
    .middle_coll2 {
    display: flex;
    justify-content: space-between;
    gap: 0px 50px;
    width: 100%;
    margin-top: 10px;
}
.middle_coll2 .footer_col_small {
    flex: 0 48%;
}
/*.footer-widget{*/
/*    margin-bottom:20px;*/
/*}*/

.footer-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget li{
    margin-bottom:12px;
}

.footer-widget a{
    text-decoration: none;
    color:  #0A0E15;
    font-family: 'DM Sans';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.contact-info__item{
    display: flex;
    gap: 20px;
    align-items: center;
}
.contact-info__icon{
    width: 24px;
    height: 24px;
}
.contact-info__link{
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.contact-info .contact-info__item  a:hover{
    color: #B38F5D !important;
}
.contact-info{
    display: grid;
    gap: 10px;
}
.footer-widget a:hover{
    color:#2b6be4;
}

.footer-contact{
    background:#f7f7f7;
    padding:30px;
    border-radius:15px;
}

.footer-middle{
    margin-top:40px;
    border-top:1px solid #e6e6e6;
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}
.footer-middle .footer-content{
    width: 30%;
}
.footer-middle  .footer_icons{
    width: 70%;
    border-left: 1px solid rgba(10, 14, 21, 0.20);
    padding-left: 40px;
}
.footer_icons img{
    width: 150px;
    height: auto;
}
/* Social Icons */
.social-icons{
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: end;
}

.social-icons .title{
    color: #0071E3;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-right: 10px;
}

.social-icons .icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 14, 21, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons .icon svg{
    width: 20px;
    height: 20px;
    display: block;
}

/*.social-icons .icon svg path{*/
/*    fill: #0071E3;*/
/*    fill-opacity: 0.7;*/
/*    transition: all 0.3s ease;*/
/*}*/

.social-icons .icon:hover{
    background: #0071E3;
    transform: translateY(-2px);
}

.social-icons .icon:hover svg path{
    fill: #fff;
    fill-opacity: 1;
}
.footer-content p{
        color: #0071E3;
        font-family: "DM Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
        line-height: 24px;
    }

.footer-content .has-nested-images{
    display: flex;
    justify-content: space-between;
}
.footer-content .has-nested-images figure{
    width: 48% !important;
}
.footer-content .has-nested-images img{
    width: 210px;
    height: auto;
}
.footer-note{
    flex:1;
    color:#555;
    line-height:1.8;
}

.footer-social ul{
    display:flex;
    gap:15px;
    list-style:none;
    margin:0;
    padding:0;
}

.footer-bottom{
    margin-top:30px;
    border-top:1px solid #e6e6e6;
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-policy ul{
    display:flex;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
}

.footer-policy a{
    text-decoration:none;
    color:#666;
}
.footer_copyright p{
    color: rgba(10, 14, 21, 0.70);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.footer_menu .menu{
    display: flex;
    gap: 20px;
}
.footer_menu .menu a{
    color: rgba(10, 14, 21, 0.70);
}
.footer-bottom p{
    margin: 0px !important;
}
.social-icons svg{
    height: 40px;
    width: 40px;
}
/* 14. Forms ----------------------------------------------------------------------- */
.hd-search-form { position: relative; }
.hd-search-form input[type="search"] {
  width: 100%;
  padding: 12px 46px 12px 16px;
  border: 1px solid var(--hd-border);
  border-radius: 8px;
}
.hd-search-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  background: var(--hd-primary);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
}

/* 15. Utilities --------------------------------------------------------------------- */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  overflow: hidden;
  height: 1px; width: 1px;
}
.hd-mt-0 { margin-top: 0; }
.hd-mb-0 { margin-bottom: 0; }


/*new css*/
.elementor-heading-title span {
    color: #B38F5D;
}
.step-card .elementor-icon-box-title span > span {
    display: block;
    font-size: 16px;
    color: #B38F5D;
    margin-bottom: 15px;
}
.step-card p {
    font-size: 14px !important;
}
.gradient-btn .elementor-button-link {
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 32, 73, 0.60) 0%, #002049 100%) !important;
}
.elementor-button-icon {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}
.step-card2 .elementor-icon-box-title span > span {
    display: inline-block;
    font-size: 18px;
    margin-right: 7px;
}
.step-card2 .elementor-icon-box-title {
    margin-bottom: 0;
}


/* ==========================================================================
   Team Slider — Styles
   Place in: /assets/team-slider.css inside your child theme
   ========================================================================== */
 .team__section .swiper-wrapper{
     justify-content: center;
 }
.ts-slider-wrap {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 0 8px;
}
 
/* Nav arrows */
.ts-slider-nav {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-bottom: 20px;
}
.ts-nav-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #e2ded7;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #3a3a3a;
	transition: all 0.25s ease;
}
.ts-nav-btn:hover {
	background: #B38F5D;
	border-color: #B38F5D;
	color: #fff;
}
.ts-nav-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.ts-nav-btn.swiper-button-disabled:hover {
	background: #fff;
	color: #3a3a3a;
	border-color: #e2ded7;
}
 
/* Swiper container */
.ts-swiper {
	overflow: hidden;
	padding: 6px 4px 14px;
}
/*body .ts-swiper .swiper-slide {*/
/*	height: 320px !important;*/
/*}*/
 #team-slider-1 .ts-swiper .swiper-slide{
     height: 350px !important;
 }
  #team-slider-1 .ts-swiper .swiper-slide a{
      height: 100% !important;
  }
/* Card */
.ts-card {
    position: relative;
    display: block;
    padding: 22px 20px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border-radius: 16px;
    backdrop-filter: blur(3.904px);
    box-shadow: inset 0 0 20px rgba(179, 143, 93, 0.25) !important;
    text-align: center;
}
.ts-card:hover {
	transform: translateY(-6px);
    box-shadow: inset 0 0 20px rgba(179, 143, 93, 0.25), 0 5px 10px 0 rgba(0, 0, 0, 0.10) !important;
	background: #fff;
	border-radius: 16px;
	
}

 
/* Badge (e.g. FRANZCP) */
.ts-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #0e2a47;
    letter-spacing: 0.03em;
    padding: 5px 10px;
    border-radius: 6px;
    transition: opacity 0.25s ease;
    color:  #FFF;
    text-align: center;
    font-family:"DM Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 4px;
    background: #002049;
    text-transform: uppercase;
}

/*.ts-card:hover .ts-badge {*/
/*	opacity: 0;*/
/*}*/
 
/* Hover arrow icon */
.ts-card-arrow {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #1a1a1a;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translate(6px, -6px) scale(0.85);
	transition: all 0.25s ease;
	pointer-events: none;
}
.ts-card:hover .ts-card-arrow {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}
 
/* Avatar */
.ts-avatar {
    width: 96px;
    height: auto;
    margin-bottom: 16px;
    margin: auto;
}
.ts-avatar img {
    object-fit: cover;
    display: block;
    width: 96px;
    height: 120px !important;
    border-radius: 500px !important;
}
.ts-avatar-placeholder {
	width: 100%;
	height: 100%;
	background: #e7e2d8;
}
.ts-name {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--other-Heading-Color, var(--Neutrals-BLACK, #0A0E15));
    text-align: center;
    font-family: var(--Font-HeadingFont, "DM Sans");
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Numerics-32, 32px);
    text-transform: capitalize;
    margin-top: 22px;
}
.ts-excerpt {
	margin: 0 0 16px;
	font-size: 14px;
	color: #6f6f6f;
	line-height: 1.4;
	text-transform: capitalize;
}
 
/* Tags */
.ts-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.ts-tag {
	font-size: 12px;
	color: #4a4a4a;
	background: #fff;
	border: 1px solid #e2ded7;
	padding: 6px 12px;
	border-radius: 20px;
	line-height: 1;
	white-space: nowrap;
}
 
/* No results */
.ts-no-results {
	color: #6f6f6f;
	font-size: 14px;
}




/* ==========================================================================
   Team Grid — Styles (no slider/carousel)
   ========================================================================== */
.ts-grid-wrap {
	max-width: 100%;
	margin: 0 auto;
	--ts-columns: 4;
}

.ts-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.ts-grid-item {
	width: calc((100% - 48px) / 4);
	height: 100%;
}

.ts-grid-item .ts-card {
	display: block;
	height: 100%;
	background: #fff;
}


/**************************************************

Testimonial style are start here

**************************************************/

.eh-testimonial-slider-wrapper{
    position:relative;
    max-width:1200px;
    margin:0 auto;
    overflow:hidden;
    background:#fff;
    margin: 0px;
}

/* white fade left */
.eh-testimonial-slider-wrapper::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:170px;
    height:100%;
    background:linear-gradient(to right,#fff 0%,rgba(255,255,255,0) 100%);
    z-index:20;
    pointer-events:none;
}

/* white fade right */
.eh-testimonial-slider-wrapper::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:170px;
    height:100%;
    background:linear-gradient(to left,#fff 0%,rgba(255,255,255,0) 100%);
    z-index:20;
    pointer-events:none;
}

.eh-testimonial-slider{
    overflow:visible;
    padding:20px 0;
}

.eh-testimonial-slide{
    width:340px;
    opacity:.35;
    transform:scale(.90);
    transition:all .4s ease;
}

.eh-testimonial-slide.swiper-slide-prev,
.eh-testimonial-slide.swiper-slide-next{
    opacity:.65;
    transform:scale(.95);
}

.eh-testimonial-slide.swiper-slide-active{
    opacity:1;
    transform:scale(1);
    z-index:10;
    padding-bottom: 60px;
    width: 40% !important;
}
.eh-testimonial-slide.swiper-slide-prev,.eh-testimonial-slide.swiper-slide-next{
    width: 30% !important;
}

.eh-testimonial-card{
    border-radius: 16px;
    background: #F0F1F5;
    border: 1px solid rgba(10, 14, 21, 0.20);
    padding:35px 28px;
    text-align:center;
    min-height:350px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.4s;
}

.eh-testimonial-slide.swiper-slide-active .eh-testimonial-card{
    box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.15);
}

.eh-testimonial-stars{
    color: #B38F5D;
    font-size: 25px;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.eh-testimonial-content{
    color: #0A0E15;
    text-align: center;
    font-family: "DM Sans";
    font-size: Content Width;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}

.eh-testimonial-author{
    background:#fff;
    border-radius:14px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 5px 14px rgba(0,0,0,.05);
}

.eh-testimonial-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.eh-testimonial-meta{
    text-align:left;
}

.eh-testimonial-name{
    color: #0A0E15;
    /* Headings/Heading/Heading 6 */
    font-family:"DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    text-transform: capitalize;
    margin: 0px !important;
}

.eh-testimonial-date{
    color: rgba(10, 14, 21, 0.70);
    font-family:"DM Sans";
    font-size: Content Width;
    font-style: normal;
    font-weight: 400;
    line-height:22px; /* 157.143% */
}

.eh-testimonial-nav{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:40px;
}

.eh-testimonial-prev,
.eh-testimonial-next{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid #ddd;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
}

.eh-testimonial-prev:hover,
.eh-testimonial-next:hover{
    background: #B38F5D;
    color: white;
}


.homepage__faqs .e-n-accordion-item{
    border: 1px solid rgba(0, 32, 73, 0.10);
    border-radius: 16px;
}
.homepage__faqs .e-n-accordion-item .e-n-accordion-item-title{
    justify-content: space-between;
}
.homepage__faqs .e-n-accordion-item .e-opened{
     transform: rotate(45deg);
     transition: transform .3s ease;
}
.homepage__faqs .e-n-accordion-item .e-opened svg{
    background: rgba(10, 14, 21, 0.10);
    padding: 10px;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    border: 1px solid rgba(0, 32, 73, 0.10);
    margin-top: -10px;
}
.homepage__faqs .e-n-accordion-item .e-closed svg{
    background: none !important;
    padding: 10px;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    margin-top: -10px;
    border: 1px solid rgba(0, 32, 73, 0.10);
}

.faqs_page .e-n-accordion-item {
    border: 1px solid rgba(0, 32, 73, 0.10);
    border-radius: 16px;
    background: #FFFFFF; /* Change to your desired color */
    transition: background-color 0.3s ease;
}

/* Open accordion item */
.faqs_page .e-n-accordion-item[open] {
    background: #F8FAFC;
}

.faqs_page .e-n-accordion-item .e-n-accordion-item-title{
    justify-content: space-between;
}
.faqs_page .e-n-accordion-item .e-opened svg{
    background: #B38F5D;
    fill: #ffffff !important;
    padding: 10px;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    border: 1px solid rgba(0, 32, 73, 0.10);
    margin-top: -10px;
}
.faqs_page .e-n-accordion-item .e-closed svg{
    background: rgba(232, 237, 242, 1);
    padding: 10px;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    margin-top: -10px;
    border: 1px solid rgba(0, 32, 73, 0.10);
}



/*************************

Conditions Archieve

*************************/


.eh-cond-item-36539,
.eh-cond-item-36446{
    display: none !important;
}
.eh-cond-list {
    width: 100%;
    margin: 0 auto;
}
.eh-cond-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid #e5e5e5;
}
.eh-cond-num {
    flex: 0 0 auto;
    width: 50px;
    text-align: left;
}
.eh-cond-label {
    color:  #B38F5D;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}
.eh-cond-number {
    color: #0A0E15;
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    text-transform: capitalize;
    font-size: 40px;
}
.eh-cond-thumb {
    flex: 0 0 auto;
    width: 300px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}
.eh-cond-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.eh-cond-content {
    flex: 1 1 auto;
    min-width: 0;
}
.eh-cond-title {
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 166.667% */
    text-transform: capitalize;
}
.eh-cond-title a {
    color: #1a1a1a;
    text-decoration: none;
}
.eh-cond-title a:hover {
    text-decoration: underline;
}
.eh-cond-location {
    color:  rgba(10, 14, 21, 0.70);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.eh-cond-location svg {
    flex: 0 0 auto;
    color: #c99a3e;
    margin-right: 8px;
}
.eh-cond-excerpt {
    margin: 0 0 14px;
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0px;
}
.eh-cond-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.eh-cond-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    font-size: 16px;
    color: rgba(10, 14, 21, 0.70);
    background: #fff;
    font-weight: 400;
    font-family: "DM Sans";
}
.eh-cond-arrow {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.2s ease;
}
.eh-cond-arrow:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}
.eh-cond-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.eh-cond-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #c99a3e;
    border-radius: 6px;
    color: #c99a3e;
    text-decoration: none;
    font-size: 14px;
}
.eh-cond-pagination .page-numbers.current {
    background: #c99a3e;
    color: #fff;
    border-color: #c99a3e;
}
.border_button a{
    width: 180px !important;
}

.conditions__articles .elementor-post__card{
     padding: 10px !important;
     border-radius: 16px;
    border: 1px solid rgba(10, 14, 21, 0.20);
    background: #FFF;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.10) !important;
}
.conditions__articles .elementor-post__card:hover{
    box-shadow: 0 10px 10px 0 rgb(0 0 0 / 21%) !important;
}
.conditions__articles .elementor-post__thumbnail{
    border-radius: 16px;
}
.conditions__articles span.readmorebtnn{
    margin-left:15px !important;
}


/* =========================================
   MARQUEE VIEWPORT
========================================= */

.single__marquee {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    white-space: nowrap !important;
}


/* =========================================
   MARQUEE TRACK
========================================= */

.single__marquee-track {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap !important;
    width: max-content !important;
    white-space: nowrap !important;

    animation: singleMarquee 25s linear infinite;
    will-change: transform;
}


/* =========================================
   ICON LIST WIDGETS
========================================= */

.single__marquee-track .elementor-widget-icon-list {
    flex: 0 0 auto !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 60px 0 0 !important;
}


/* Elementor UL */

.single__marquee-track .elementor-icon-list-items {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;

    width: max-content !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* Individual item */

.single__marquee-track .elementor-icon-list-item {
    display: flex !important;
    flex: 0 0 auto !important;

    width: max-content !important;
    max-width: none !important;

    white-space: nowrap !important;
}


/* Text */

.single__marquee-track .elementor-icon-list-text {
    display: inline-block !important;
    white-space: nowrap !important;
}


/* =========================================
   LOOP
========================================= */

@keyframes singleMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-33.333333%, 0, 0);
    }
}


/* =========================================
   PAUSE
========================================= */

.single__marquee:hover .single__marquee-track {
    animation-play-state: paused;
}



.booking_blurr{
    backdrop-filter: blur(10px);
}



/* ===================================
   Booking Form
=================================== */

.booking__form .gform_wrapper {
border-radius: 16px;
border: 1.077px solid #FFF;
background: linear-gradient(
    180deg,
    #FFF 0%,
    rgba(255, 255, 255, 0.50) 100%
);
box-shadow:
    0 20px 40px 0 rgba(0, 0, 0, 0.10),
    inset 0 0 10.767px 0 rgba(10, 14, 21, 0.20);
backdrop-filter: blur(5.383362293243408px);
padding: 24px;
}

.booking__form .gform_heading {
    margin-bottom: 25px;
}

.booking__form .gform_title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.booking__form .gfield {
    margin-bottom: 20px;
}

.booking__form .gfield_label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px !important;
}

/* ===================================
   Inputs
=================================== */

.booking__form input:not([type="submit"]):not([type="file"]),
.booking__form textarea,
.booking__form select {
    width: 100%;
    border: 1px solid #d9d9d9 !important;
    border-radius: 8px !important;
    background: #fff;
    padding: 14px 18px !important;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: .3s;
}

.booking__form input:not([type="submit"]):not([type="file"]) {
    height: 52px;
}

.booking__form textarea {
    min-height: 120px;
    resize: vertical;
}

.booking__form input:focus,
.booking__form textarea:focus,
.booking__form select:focus {
    border-color: #123d7d !important;
    box-shadow: 0 0 0 3px rgba(18,61,125,.12);
    outline: none;
}

.booking__form ::placeholder {
    color: #999;
}

/* ===================================
   File Upload
=================================== */

/* File Upload */

.booking__form #input_2_6,
.booking__form #input_3_6{
    width:100%;
    height:56px !important;
    border:1px solid #d9d9d9 !important;
    border-radius:8px;
    background:#fff;
    padding:6px;
    box-sizing:border-box;
    font-size:14px;
    color:#666;
}

.booking__form #input_2_6::file-selector-button{
    height:42px;
    padding:0 18px;
    border:none;
    border-radius:6px;
    background:#f5f5f5;
    color:#444;
    font-size:14px;
    margin-right:15px;
    cursor:pointer;
}

.booking__form #input_2_6::file-selector-button:hover{
    background:#ececec;
}

/* Safari */

.booking__form input[type="file"]::-webkit-file-upload-button {
    height: 52px;
    padding: 0 18px;
    border: none;
    border-right: 1px solid #d9d9d9;
    background: #f5f5f5;
    color: #333;
    cursor: pointer;
}

/* Description */

.booking__form .gfield_description {
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

/* ===================================
   Submit Button
=================================== */

.booking__form .gform_footer,
.booking__form .gform_button_wrapper {
text-align: center;
    margin-top: 0px !important;
    justify-content: center;
}

.booking__form input[type="submit"], .booking__form .gform_button {
    min-width: 170px;
    height: 52px;
    border: none;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    border-radius: 16px !important;
    background: var(--other-Brand-Btn-Color, radial-gradient(50% 100% at 50% 0%, var(--Colors-Brand-Primary-60, rgba(0, 32, 73, 0.60)) 0%, var(--Colors-Brand-Primary, #002049) 100%)) !important;
    padding: 16px 24px !important;
}

.booking__form input[type="submit"]:hover,
.booking__form .gform_button:hover {
    background: linear-gradient(90deg,#1b4f97,#0c2f62);
    transform: translateY(-2px);
}

/* ===================================
   Validation
=================================== */

.booking__form .validation_message {
    color: #d63638;
    font-size: 13px;
}

.booking__form .gfield_error input,
.booking__form .gfield_error textarea,
.booking__form .gfield_error select {
    border-color: #d63638 !important;
}

/* ===================================
   Gravity Forms Gap
=================================== */

.booking__form .gform-theme--foundation .gform_fields,
.booking__form .gform_fields {
    grid-row-gap: 10px !important;
}
#gform_submit_button_2{
       border-radius: var(--Numerics-16, 16px);
    background: var(--other-Brand-Btn-Color, radial-gradient(50% 100% at 50% 0%, var(--Colors-Brand-Primary-60, rgba(0, 32, 73, 0.60)) 0%, var(--Colors-Brand-Primary, #002049) 100%));
    padding: 16px 24px;
}
.booking__form .gform_required_legend{
    display: none !important;
}
.booking__form .instruction {
    display: none;
}
#gform_2_validation_container {
    display: none !important;
}
.gform-theme--framework .gform_validation_errors{
    display: none !important;
}
#validation_message_4_4{
    display: block !important;
}
#gfield_upload_rules_3_6{
    display: none !important;
}
.booking__form .textarea {
    min-height: 80px !important;
}


/* ===================================
   Referral Form (HelloDoc)
   Scoped to custom class: refferal__forms
=================================== */

.refferal__forms .gform_wrapper {
    border-radius: 16px;
    border: 1.077px solid #FFF;
    background: linear-gradient(
        180deg,
        #FFF 0%,
        rgba(255, 255, 255, 0.50) 100%
    );
    box-shadow:
        0 20px 40px 0 rgba(0, 0, 0, 0.10),
        inset 0 0 10.767px 0 rgba(10, 14, 21, 0.20);
    backdrop-filter: blur(5.383362293243408px);
    padding: 24px;
}

.refferal__forms .gform_heading {
    margin-bottom: 25px;
}

.refferal__forms .gform_title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.refferal__forms .gform_required_legend {
    display: none !important;
}

.refferal__forms .instruction {
    display: none;
}

.refferal__forms .gfield {
    margin-bottom: 20px;
}

.refferal__forms .gfield_label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px !important;
}

.refferal__forms .gform-theme--framework .gform_validation_errors,
.refferal__forms .gform_validation_container {
    display: none !important;
}

/* ===================================
   Section Headings (Referrer Details / Patient Details / Reason for referral)
=================================== */

.refferal__forms .gsection_title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    padding-bottom: 14px;
    /*border-bottom: 1px solid #e6e6e6;*/
}

.refferal__forms .gsection_title span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-left: 4px;
}

.refferal__forms .gfield--type-section {
    margin-bottom: 20px;
}
.refferal__forms #gform_submit_button_7 {
    border-radius: 16px;
    background: radial-gradient(
        50% 100% at 50% 0%,
        rgba(0, 32, 73, 0.60) 0%,
        #002049 100%
    );
    padding: 16px 24px;
}

/* ===================================
   Inputs
=================================== */

.refferal__forms input:not([type="submit"]):not([type="file"]):not([type="radio"]),
.refferal__forms textarea,
.refferal__forms select {
    width: 100%;
    border: 1px solid #d9d9d9 !important;
    border-radius: 8px !important;
    background: #fff;
    padding: 14px 18px !important;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: .3s;
}

.refferal__forms input:not([type="submit"]):not([type="file"]):not([type="radio"]) {
    height: 52px;
}

.refferal__forms textarea {
    min-height: 120px;
    resize: vertical;
}

.refferal__forms input:focus,
.refferal__forms textarea:focus,
.refferal__forms select:focus {
    border-color: #123d7d !important;
    box-shadow: 0 0 0 3px rgba(18,61,125,.12);
    outline: none;
}

.refferal__forms ::placeholder {
    color: rgba(10, 14, 21, 0.50);
    font-family: "DM Sans";
    font-size: 15.5px;
    font-weight: 400;
}

/* ===================================
   Radio Group 1 — "Referrer is a:" (circle style)
=================================== */

.refferal__forms #input_7_13 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.refferal__forms #input_7_13 .gchoice {
    display: flex;
    align-items: center;
    gap: 10px;
}

.refferal__forms #input_7_13 input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #c7c7c7;
    background: #fff;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: .2s;
    box-shadow: none;
}

.refferal__forms #input_7_13 input[type="radio"]:checked {
    border-color: #0c2f62;
}

.refferal__forms #input_7_13 input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0c2f62;
    transform: translate(-50%, -50%);
}

.refferal__forms #input_7_13 label {
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

/* ===================================
   Radio Group 2 — "Reason for referral" (checkbox-style square)
=================================== */

.refferal__forms #input_7_32 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.refferal__forms #input_7_32 .gchoice {
    display: flex;
    align-items: center;
    gap: 10px;
}

.refferal__forms #input_7_32 input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #c7c7c7;
    background: #fff;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: .2s;
    box-shadow: none;
}

.refferal__forms #input_7_32 input[type="radio"]:checked {
    border-color: #0c2f62;
    background: #0c2f62;
}

.refferal__forms #input_7_32 input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(45deg);
}

.refferal__forms #input_7_32 label {
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

/* ===================================
   File Upload
=================================== */

.refferal__forms #input_7_6 {
    width: 100%;
    height: 56px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
    box-sizing: border-box;
    font-size: 14px;
    color: #666;
}

.refferal__forms #input_7_6::file-selector-button {
    height: 42px;
    padding: 0 18px;
    border: none;
    border-radius: 6px;
    background: #f5f5f5;
    color: #444;
    font-size: 14px;
    margin-right: 15px;
    cursor: pointer;
}

.refferal__forms #input_7_6::file-selector-button:hover {
    background: #ececec;
}

/* Safari */
.refferal__forms input[type="file"]::-webkit-file-upload-button {
    height: 52px;
    padding: 0 18px;
    border: none;
    border-right: 1px solid #d9d9d9;
    background: #f5f5f5;
    color: #333;
    cursor: pointer;
}

/* Drag & drop zone (if multifile/drop UI is enabled on the field) */
.refferal__forms .gform_drop_area,
.refferal__forms .gform_fileupload_multifile {
    width: 100%;
    min-height: 140px;
    border: 1.5px dashed #d9d9d9;
    border-radius: 12px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
}

.refferal__forms .gform_drop_instructions {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.refferal__forms .gform_button_select_files {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #222;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
    transition: .2s;
}

.refferal__forms .gform_button_select_files:hover {
    background: #f5f5f5;
}

.refferal__forms #gfield_upload_rules_7_6 {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

/* Description */
.refferal__forms .gfield_description {
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}

/* ===================================
   Footer note + Submit Button
=================================== */

.refferal__forms .gform-footer,
.refferal__forms .gform_button_wrapper {
    text-align: center;
    margin-top: 10px !important;
    justify-content: center;
}

.refferal__forms .gform_footer p,
.refferal__forms .footer-note {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.refferal__forms input[type="submit"],
.refferal__forms .gform_button {
    min-width: 170px;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #0c2f62, #1b4f97);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.refferal__forms input[type="submit"]:hover,
.refferal__forms .gform_button:hover {
    background: linear-gradient(90deg, #1b4f97, #0c2f62);
    transform: translateY(-2px);
}

/* ===================================
   Validation
=================================== */

.refferal__forms .validation_message {
    color: #d63638;
    font-size: 13px;
}

.refferal__forms .gfield_error input,
.refferal__forms .gfield_error textarea,
.refferal__forms .gfield_error select {
    border-color: #d63638 !important;
}

#gform_7_validation_container {
    display: none !important;
}

/* ===================================
   Gravity Forms Gap
=================================== */

.refferal__forms .gform-theme--foundation .gform_fields,
.refferal__forms .gform_fields {
    grid-row-gap: 10px !important;
}
.refferal__forms .gform_title{
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 34px;
    font-weight: 700;
}
.refferal__forms h3{
    color: var(--other-Heading-Color, var(--Neutrals-BLACK, #0A0E15));
    font-family: var(--Font-Face, "DM Sans");
    font-size: 23px;
    font-weight: 700;
}
.refferal__forms .gfield_label {
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 16.5px;
    font-weight: 500;
}
.refferal__forms .gform-field-label{
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 15.5px;
    font-weight: 500;
}
.refferal__forms #input_7_32 input {
    border-radius: 14px;
    border: 1px solid #C8CDD8;
    background: #FFF;
}
.refferal__forms input:focus{
    outline: none !important;
    box-shadow: none !important;
}
.refferal__forms textarea {
    outline: none !important;
    box-shadow: none !important;
}
.refferal__forms .gform_title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}







/* ===================================
   Join Us / Work With Us Form
   Class: .workus__form
=================================== */


/* ===================================
   FORM WRAPPER
   Width / margin intentionally NOT set
=================================== */

.workus__form .gform_wrapper {
    padding: 24px !important;
    border-radius: 16px !important;
    border: 1px solid #ffffff !important;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.50) 100%
    ) !important;
    box-shadow:
        0 20px 40px 0 rgba(0, 0, 0, 0.10),
        inset 0 0 10.767px 0 rgba(10, 14, 21, 0.20) !important;
    backdrop-filter: blur(5.38px);
    box-sizing: border-box;
}


/* ===================================
   HEADING
=================================== */

.workus__form .gform_heading {
    margin: 0 0 25px !important;
    padding: 0 !important;
}

.workus__form .gform_title {
    margin: 0 !important;
    padding: 0 !important;
    color: #0A0E15 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}


/* Hide required legend */

.workus__form .gform_required_legend {
    display: none !important;
}


/* ===================================
   FORM GRID
=================================== */

.workus__form .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 20px !important;
    row-gap: 32px !important;
}

.workus__form .gfield {
    margin: 0 !important;
    padding: 0 !important;
}


/* Half width fields */

.workus__form .gfield--width-half {
    grid-column: span 1 !important;
}


/* Full width fields */

.workus__form .gfield--width-full,
.workus__form .gfield--type-textarea,
.workus__form .gfield--type-fileupload {
    grid-column: 1 / -1 !important;
}


/* ===================================
   LABELS
=================================== */

.workus__form .gfield_label {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #0A0E15 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 16.5px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

.workus__form .gfield_required,
.workus__form .gfield_required_asterisk {
    color: #d63638 !important;
    font-family: "DM Sans", sans-serif !important;
}


/* ===================================
   INPUTS
=================================== */

.workus__form input:not([type="submit"]):not([type="file"]):not([type="radio"]),
.workus__form textarea,
.workus__form select {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #333333 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    transition: 0.3s ease !important;
    box-shadow: none !important;
}


/* Text inputs */

.workus__form input:not([type="submit"]):not([type="file"]):not([type="radio"]),
.workus__form select {
    height: 52px !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
}


/* Textarea */

.workus__form textarea {
    min-height: 120px !important;
    height: 120px !important;
    padding: 14px 18px !important;
    resize: vertical !important;
}


/* ===================================
   PLACEHOLDER
=================================== */

.workus__form input::placeholder,
.workus__form textarea::placeholder {
    color: rgba(10, 14, 21, 0.50) !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 15.5px !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}


/* ===================================
   INPUT FOCUS
=================================== */

.workus__form input:focus,
.workus__form textarea:focus,
.workus__form select:focus {
    outline: none !important;
    border-color: #123d7d !important;
    box-shadow: 0 0 0 3px rgba(18, 61, 125, 0.12) !important;
}


/* ===================================
   ROLE RADIO
=================================== */

.workus__form #field_21_8 {
    grid-column: 1 / -1 !important;
}

.workus__form #field_21_8 .gfield_label {
    margin-bottom: 8px !important;
}


/* Radio container */

.workus__form #field_21_8 .gfield_radio {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 32px 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* Individual radio */

.workus__form #field_21_8 .gchoice {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
}


/* Radio button */

.workus__form #field_21_8 input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1.5px solid #c7c7c7 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    position: relative !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}


/* Checked */

.workus__form #field_21_8 input[type="radio"]:checked {
    border-color: #0c2f62 !important;
}


/* Inner circle */

.workus__form #field_21_8 input[type="radio"]:checked::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #0c2f62 !important;
    transform: translate(-50%, -50%) !important;
}


/* Radio label */

.workus__form #field_21_8 .gform-field-label--type-inline {
    margin: 0 !important;
    padding: 0 !important;
    color: #0A0E15 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 15.5px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    cursor: pointer !important;
}


/* ===================================
   OTHER / SPECIFY FIELD
=================================== */

.workus__form #field_21_9 {
    grid-column: 1 / -1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Specify input */

.workus__form #field_21_9 input {
    height: 52px !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
}


/* ===================================
   FILE UPLOAD
=================================== */

.workus__form .ginput_container_fileupload {
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
}


/* File input */

.workus__form .ginput_container_fileupload input[type="file"] {
    width: 100% !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #666666 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 14px !important;
}


/* Choose file */

.workus__form input[type="file"]::file-selector-button {
    height: 42px !important;
    padding: 0 18px !important;
    margin-right: 15px !important;
    border: none !important;
    border-radius: 6px !important;
    background: #f5f5f5 !important;
    color: #444444 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
}


/* Safari */

.workus__form input[type="file"]::-webkit-file-upload-button {
    height: 42px !important;
    padding: 0 18px !important;
    margin-right: 15px !important;
    border: none !important;
    border-radius: 6px !important;
    background: #f5f5f5 !important;
    color: #444444 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 14px !important;
    cursor: pointer !important;
}


/* File description */

.workus__form .gfield_description,
.workus__form .instruction {
    margin: 8px 0 0 !important;
    padding: 0 !important;
    color: #888888 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}


/* ===================================
   SUBMIT BUTTON
=================================== */

.workus__form .gform_footer,
.workus__form .gform_button_wrapper,
.workus__form .gform-footer {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
}


/* Submit */

.workus__form input[type="submit"],
.workus__form .gform_button {
    min-width: 170px !important;
    height: 52px !important;
    padding: 16px 24px !important;
    border: none !important;
    border-radius: 14px !important;
    background: linear-gradient(
        90deg,
        #0c2f62,
        #1b4f97
    ) !important;
    color: #ffffff !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: 0.3s ease !important;
}


.workus__form #gform_submit_button_21 {
    border-radius: 16px;
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 32, 73, 0.60) 0%, #002049 100%) !important;
    padding: 16px 24px;
}


/* Hover */

.workus__form input[type="submit"]:hover,
.workus__form .gform_button:hover {
    background: linear-gradient(
        90deg,
        #1b4f97,
        #0c2f62
    ) !important;
    transform: translateY(-2px) !important;
}


/* ===================================
   VALIDATION
=================================== */

.workus__form .validation_message {
    margin-top: 5px !important;
    padding: 0 !important;
    color: #d63638 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.workus__form .gfield_error input,
.workus__form .gfield_error textarea,
.workus__form .gfield_error select {
    border-color: #d63638 !important;
}


/* Hide GF validation container */

.workus__form .gform_validation_errors,
.workus__form #gform_21_validation_container,
.workus__form .gform-theme--framework .gform_validation_errors,
.workus__form .gform_validation_container {
    display: none !important;
}






/*****************************

    newsletter form

******************************/

/* Wrapper */
.Newsletter__form .gform_wrapper {
    margin: 0;
}
#input_4_4{
    border-radius:  8px;
    border: 1px solid rgba(10, 14, 21, 0.30);
    background:#FFF;
    padding: 16px;
    height: 100%;
}
#input_4_4:focus{
    outline: none !important;
}
#input_5_4{
    border-radius:  8px;
    border: 1px solid rgba(10, 14, 21, 0.30);
    background:#FFF;
    padding: 16px;
    height: 100%;
}
#input_5_4:focus{
    outline: none !important;
}
.Newsletter__form form{
    display: flex;
    gap: 8px;
}
.Newsletter__form h2{
    display: none ;
}
.Newsletter__form form {
    margin: 0;
}

/* Form Layout */
.Newsletter__form .gform-body {
    width: 100%;
}

.Newsletter__form .gform_fields {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}

.Newsletter__form .gfield {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
}

/* Footer */
.Newsletter__form .gform_footer,
.Newsletter__form .gform_button_wrapper {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto;
}

/* Input */
.Newsletter__form input[type="text"],
.Newsletter__form input[type="email"] {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

.Newsletter__form input::placeholder {
    color: #666;
}

/* Submit Button */
.Newsletter__form input[type="submit"],
.Newsletter__form .gform_button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px 28px !important;
    min-width: 150px;
    height: auto !important;
    min-height: auto !important;
    line-height: normal !important;
    border: none !important;
    border-radius: 16px !important;
    background: radial-gradient( 50% 100% at 50% 0%, rgba(0, 32, 73, 0.6) 0%, #002049 100%) !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none!important;

    transition: all .3s ease;
}
.Newsletter__form input[type="submit"]:focus,
.Newsletter__form .gform_button:focus,
.gform_button.button:focus{
    outline: none !important;
}
.Newsletter__form input[type="submit"]:hover,
.Newsletter__form .gform_button:hover {
    transform: translateY(-2px);
}

/* Hide Labels */
.Newsletter__form .gfield_label,
.Newsletter__form .gform_required_legend {
    display: none !important;
}

/* Hide Validation */
.Newsletter__form .gfield_description,
.Newsletter__form .validation_message,
.Newsletter__form .gform_validation_errors {
    display: none !important;
}

.table__ofcontent ul li .elementor-toc__list-item-text-wrapper a.elementor-item-active{
    border-left: 2px solid #B38F5D !important;
    background: rgba(179, 143, 93, 0.06) !important;
    padding: 10px 8px 10px 16px !important;
}
.table__ofcontent ul li .elementor-toc__list-item-text-wrapper a:hover{
    border-left: 2px solid #B38F5D !important;
    background: rgba(179, 143, 93, 0.06) !important;
    padding: 10px 8px 10px 16px !important;
}
.table__ofcontent ul li .elementor-toc__list-item-text-wrapper a{
    border-left: 2px solid #E5E7EB !important;
    padding: 10px 8px 10px 16px !important;
}
.table__ofcontent ul li a:hover{
    text-decoration: none !important;
}
.table__ofcontent ul li{
    margin: 0px !important;
}


/* ==========================================
   Table of Contents - Privacy
========================================== */

.table__ofcontent_privacy .elementor-toc__list-wrapper{
    margin: 0 !important;
}

.table__ofcontent_privacy ul{
    margin: 0 !important;
    padding: 0 !important;
}

.table__ofcontent_privacy ul li{
    margin: 0 !important;
    list-style: none !important;
}

/* Normal Item */
.table__ofcontent_privacy ul li .elementor-toc__list-item-text-wrapper a{
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 16px 18px 33px !important;
    border-left: 1px solid #E5E7EB !important;
    border-bottom: 1px solid #E5E7EB !important;
    color: #6B7280;
    text-decoration: none !important;
    box-sizing: border-box;
}

/* Gold Dot */
.table__ofcontent_privacy ul li .elementor-toc__list-item-text-wrapper a::before{
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C7A56A;
}

/* Active Item */
.table__ofcontent_privacy ul li .elementor-toc__list-item-text-wrapper a.elementor-item-active{
    border-left: 2px solid #B38F5D !important;
    border-bottom: 1px solid #B38F5D !important;
    background: rgba(179, 143, 93, 0.06) !important;
    color: #B38F5D !important;
}
.table__ofcontent_privacy ul li .elementor-toc__list-item-text-wrapper a:hover{
    border-left: 2px solid #B38F5D !important;
    border-bottom: 1px solid #B38F5D !important;
    background: rgba(179, 143, 93, 0.06) !important;
    color: #B38F5D !important;
}

/* Keep dot same color on active */
.table__ofcontent_privacy ul li .elementor-toc__list-item-text-wrapper a.elementor-item-active::before{
    background: #C7A56A;
}

/* Hover */
.table__ofcontent_privacy ul li .elementor-toc__list-item-text-wrapper a:hover{
    text-decoration: none !important;
}



/* ==========================================
   Table of Contents - Billing
========================================== */

.table__ofcontent_billing .elementor-toc__list-wrapper{
    margin: 0 !important;
}

.table__ofcontent_billing ul{
    margin: 0 !important;
    padding: 0 !important;
    counter-reset: toc-counter;
}

.table__ofcontent_billing ul li{
    list-style: none !important;
    margin: 0 !important;
    counter-increment: toc-counter;
}

/* Normal Item */
.table__ofcontent_billing ul li .elementor-toc__list-item-text-wrapper a{
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 16px 18px 58px !important;
    color: #6B7280;
    text-decoration: none !important;
    box-sizing: border-box;
    border-radius: 8px;
    transition: all .3s ease;
}

/* Number Circle */
.table__ofcontent_billing ul li .elementor-toc__list-item-text-wrapper a::before{
    content: counter(toc-counter);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #D1D5DB;
    background: transparent;
    color: #6B7280;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

/* Hover & Active Item */
.table__ofcontent_billing ul li .elementor-toc__list-item-text-wrapper a:hover,
.table__ofcontent_billing ul li .elementor-toc__list-item-text-wrapper a.elementor-item-active{
    color: #B38F5D !important;
    background: #F7F3EB;
    border-radius: 8px;
}

/* Hover & Active Number Circle */
.table__ofcontent_billing ul li .elementor-toc__list-item-text-wrapper a:hover::before,
.table__ofcontent_billing ul li .elementor-toc__list-item-text-wrapper a.elementor-item-active::before{
    border-color: #B38F5D;
    background: #B38F5D;
    color: #FFFFFF;
}

.single.single-post .postscontent h1,
.single.single-post .postscontent h2,
.single.single-post .postscontent h3,
.single.single-post .postscontent h4,
.single.single-post .postscontent h5,
.single.single-post .postscontent h6
{
    margin-top: 20px!important;   
    margin-bottom: 10px!important;   
}


.team-breadcrumbs{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin:0 0 30px;
    padding:0;
    font-family:inherit;
    font-size:15px;
    line-height:1.5;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    margin-top: 40px;
}

.team-breadcrumbs a{
    color:  rgba(0, 32, 73, 0.60);
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.team-breadcrumbs a:hover{
    color:#163A63;
}

.team-breadcrumbs .separator{
    color:  rgba(0, 32, 73, 0.60);
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.team-breadcrumbs .current{
    color: #002049;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 600;
}


/*     Multiple Step Form style start here      */

#adhd_multiform .ginput_container_radio{
        display: flex;
        gap: 10px !important;
}
#adhd_multiform .gfield_radio{
        display: block !important;
}
#adhd_multiform .gfield-choice-input{
    border-radius: 100px;
    border: 1px solid rgba(10, 14, 21, 0.30);
    background:  rgba(10, 14, 21, 0.10);
    width: 16px;
    height: 16px;
    }
#adhd_multiform .gfield-choice-input .gform-field-label{
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 14px;
    font-weight: 500;
    line-height:22px; /* 157.143% */
    margin-left: 0px !important;
}
#adhd_multiform .gfield_radio .gchoice {
    border-radius: 12px;
    border: 1px solid rgba(0, 32, 73, 0.10);
    padding: 8px 16px;
    gap: 8px;
    flex: 1 0 0;
    background: none !important;
    align-items: center;
    margin-right: 12px !important;
    cursor: pointer;
}
#adhd_multiform .gform-field-label.gform-field-label--type-inline{
    margin-left: 0px !important;
}

#adhd_multiform .question-number {
    display: inline-block;
    margin-right: 8px;
    font-weight: 700;
    color: #0E3A34;
    background: rgba(179, 143, 93, 0.10);
    padding: 10px;
    color: #B38F5D;
    border-radius: 12px;
    width: 40px;
    height: 40px;
}

#adhd_multiform .gform_next_button {
    border-radius: 16px;
    background: radial-gradient(
        50% 100% at 50% 0%,
        rgba(0, 32, 73, 0.60) 0%,
        #002049 100%
    );
    padding: 16px 24px;
}
#adhd_multiform .gform_next_button,
#adhd_multiform .gform_previous_button,
#adhd_multiform .gform_button,
#adhd_multiform input[type="submit"],
#adhd_multiform input[type="button"],
#adhd_multiform button {
    border-radius: 16px !important;
    background: radial-gradient(
        50% 100% at 50% 0%,
        rgba(0, 32, 73, 0.60) 0%,
        #002049 100%
    ) !important;
    padding: 16px 24px !important;
    color: #fff !important;
    border: none !important;
}

#adhd_multiform .gform_previous_button {
    border-radius: 16px;
    border: 1px solid rgba(10, 14, 21, 0.20);
    padding: 16px 24px;
}
#adhd_multiform h3{
    color:  #0A0E15;
    /* Headings/Heading/Heading 3 */
    font-family: "DM Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 150% */
    text-transform: capitalize;
    margin-bottom: 0px !important;
}
#adhd_multiform p{
    color: rgba(10, 14, 21, 0.70);
    /* Headings/Subheading/SubHeading 2 */
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height:  24px; /* 150% */
    margin-bottom: 0px !important;
}
#adhd_multiform span{
    color: #B38F5D;
    /* Headings/Heading/Cap Label */
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
    text-transform: uppercase;
}
#adhd_multiform .gf_step_page_name{
    display: none !important;
}

#adhd_multiform .gform_fields{
    row-gap: 30px !important;
}
#adhd_multiform .gfield_label{
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    flex-wrap: nowrap;
    align-items: center;
}
#adhd_multiform .peragraph__withbgcolor{
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 32, 73, 0.10);
    background: rgba(0, 32, 73, 0.04);
}
#adhd_multiform .peragraph__withbgcolor p{
    border-left: 3px solid #B38F5D;
    padding-left: 16px;
}
#adhd_multiform .gform_title{
    display: none !important;
}
#adhd_multiform .main__svgcl{
    display: flex;
    gap :8px;
}
#adhd_multiform .result__tagsmain{
    display: grid;
    gap: 16px;
}
#adhd_multiform .gform_ajax_spinner {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

#adhd_multiform .gform-theme--foundation .gform-loader {
    align-self: center;
    animation: gformLoader 1.1s infinite linear;
    block-size: 10em;
    border-block-end: 5px solid #002049 !important;
    border-block-start: 5px solid #002049 !important;
    border-inline-end: 5px solid #b38f5d !important;
    border-inline-start: 5px solid #b38f5d !important;
}
#adhd_multiform #gform_submit_button_6 {
    border-radius: 16px;
    border: 1px solid rgba(10, 14, 21, 0.20);
    padding: 16px 24px;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 32, 73, 0.60) 0%, #002049 100%);
    background-clip: text; -webkit-background-clip: text;
    text-fill-color: transparent; 
    color #fff
}
#adhd_multiform #gform_previous_button_6{
    border-radius: 16px;
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 32, 73, 0.60) 0%, #002049 100%
    );
    color: #FFF;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}
#adhd_multiform #gf-page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#adhd_multiform #gf-page-loader.active {
    display: flex;
}

#adhd_multiform .gf-loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 32, 73, .2);
    border-top-color: #002049;
    border-radius: 50%;
    animation: gfSpin .8s linear infinite;
}
.main__classresult{
    display: grid;
    gap:16px !important;
}

.button-wrapper{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.button-wrapper .colorfullbtn{
    border-radius: 16px !important;
    background: radial-gradient(
        50% 100% at 50% 0%,
        rgba(0, 32, 73, 0.60) 0%,
        #002049 100%
    ) !important;
    padding: 16px 24px !important;
    border: none;
    cursor: pointer;
}
.button-wrapper .colorfullbtn svg{
    margin-top: 5px
}
.button-wrapper .withoutcolor{
    border-radius: 16px !important;
    border: 1px solid rgba(10, 14, 21, 0.20) !important;
    background: #fff !important;
    padding: 16px 24px !important;
    cursor: pointer;
}
.privacy_contentspace a{
    color: #B38F5D !important;
}

.button-wrapper a{
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:8px;
}

.button-wrapper .withoutcolor a{
    color: #fff;
}


.gform-theme--framework .gf_progressbar .percentbar_blue {
    background-color: #B38F5D !important;
}
.gform-theme--framework .gf_progressbar.gf_progressbar_blue{
    margin-top: 20px !important;
}
p.result__score{
    color: #0A0E15;
    font-family: "DM Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}
@keyframes gfSpin {
    to {
        transform: rotate(360deg);
    }
}
.rotate__iconbtn svg {
    transform: rotate(45deg);
}
.radicle_bgcolorboxxes{
    border-radius: 16px;
    background: radial-gradient(
        50% 100% at 50% 0%,
        rgba(0, 32, 73, 0.60) 0%,
        #002049 100%
    );
}
.elementor-element-8676ec3 .elementor-button.elementor-button-link.elementor-size-sm{
    padding: 0px !important;
}

/*****************************
 * 
 * fees page style start here
 * ********************************/

.feestable_hellodoc{
    width:80%;
    margin:auto;
}

.feestable_hellodoc table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    background:#fff;
    border:1px solid #c9d8e6;
    border-radius:30px;
    overflow:hidden;
      box-shadow: 0 4px 30px 0 #1f268717;
}
.feestable_hellodoc{
    border-radius: 30px 30px 30px 30px;
    margin-top: 30px;
    padding:40px;
}
/* Base Tab Style */
.fees__tabstable .e-n-tab-title{
    border-radius: 16px;
    padding: 12px 16px;
    background: #FFF;
    border: 1px solid transparent;
    transition: all .3s ease;
}

/* Hover + Active */
.fees__tabstable .e-n-tab-title[aria-selected="true"]:hover,
.fees__tabstable .e-n-tab-title[aria-selected="true"]{
    border-radius: 16px;
    border: 1px solid #B38F5D;
    background: var(--Neutrals-WHITE, #FFF);
    box-shadow: 0 0 8px 0 var(--Colors-Brand-Secondary75, rgba(179, 143, 93, 0.75)) inset, 0 4px 4px 0 rgba(32, 35, 38, 0.10);
    padding: 12px 16px;
    gap: 12px;
}
.feestable_hellodoc thead th{
    background:rgba(0, 32, 73, 0.20);
    padding:26px 36px;
    text-align:left;
    font-size:14px;
    font-weight:700;
    color:#0A0E15;
    border:none;
    font-family: 'DM Sans';
}

/* Divider below header */
.feestable_hellodoc thead tr{
    box-shadow: inset 0 -1px 0 #c9d8e6;
}

/* Body cells */
.feestable_hellodoc tbody td{
    padding:30px;
    background:#fff;
    border:none;
    font-family: 'DM Sans';
    font-size:18px;
    color:#001f4d;
}

/* Row divider */
.feestable_hellodoc tbody tr:not(:last-child) td{
    border-bottom:1px solid #c9d8e6;
}

/* Rounded corners */
.feestable_hellodoc thead tr th:first-child{
    border-top-left-radius:30px;
}

.feestable_hellodoc thead tr th:last-child{
    border-top-right-radius:30px;
}

.feestable_hellodoc tbody tr:last-child td:first-child{
    border-bottom-left-radius:30px;
}

.feestable_hellodoc tbody tr:last-child td:last-child{
    border-bottom-right-radius:30px;
}
.feestable_hellodoc table tbody>tr:nth-child(odd)>td, .feestable_hellodoc table tbody>tr:nth-child(odd)>th {
    background-color: #ffffff;
}
.feestable_hellodoc table tr:hover{
    background:none  !important
}
#feestable_hellodoc .e-n-tabs-heading{
    box-shadow: 0 4px 30px 0 #1f268717;
    width: 80%;
    margin-top: 24px !important;
    margin: auto;
    padding: 10px;
    border: 1px solid #1f26872b;
    border-radius: 20px;
}
#exsiting__adhdtable td{
    border-bottom:0px !important;
    padding-bottom:0px !important
}
#exsiting__adhdtable strong{
    margin-bottom:10px;
}
#exsiting__adhdtable:hover{
    background:none !important;
}
#last_adhdrow td {
    padding-top: 0 !important;
}
#exsiting__adhdtable p{
    margin-top:10px;
}

body .feestable_hellodoc.e-active-custom {
    display: block !important;
}    
#feestable_hellodoc .e-n-tab-title {
    background-color: inherit;
    border-color: rgba(10, 14, 21, 0.20);
    color: #000;
}
#feestable_hellodoc  .e-active-btn{
    border-radius: 16px;
    border: 1px solid #B38F5D;
    background: #FFF;
    box-shadow: inset 0 0 8px 0 rgba(179, 143, 93, 0.75), 0 4px 4px 0 rgba(32, 35, 38, 0.10);
}
#feestable_hellodoc .e-n-tab-title .e-n-tab-icon i {
    color: #000;
}
#feestable_hellodoc .e-n-tab-title.e-active-btn {
    border-radius: 16px;
    border: 1px solid #B38F5D;
    background: var(--Neutrals-WHITE, #FFF);
    box-shadow: 0 0 8px 0 var(--Colors-Brand-Secondary75, rgba(179, 143, 93, 0.75)) inset, 0 4px 4px 0 rgba(32, 35, 38, 0.10);
}
#feestable_hellodoc .e-n-tab-title.e-active-btn i {
    color: #fff;
}
.tags__feespage {
    max-width: fit-content !important;
    margin: auto !important;
    margin-bottom: 30px !important;
}
body #adhd_multiform .gfield_label.gform-field-label .gfield_required{
    display: none !important;
}
body  #adhd_multiform .gform-loader {
    height: 30px !important;
    width: 30px !important;
}
/* 16. Responsive ---------------------------------------------------------------------- */
.social-icons{
    --si-circle:#E6E7E9;            /* light grey circle */
    --si-glyph:#4A4E57;             /* dark grey icon */
    display:flex;
    align-items:center;
    gap:16px;
}
.social-icons a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--si-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
    padding: 10px;
}

.social-icons a:hover {
    /*transform:translateY(-2px);*/
    background: #B38F5D;
}

.social-icons a:hover svg {
    fill: #fff;
}
.social-icons svg{
    height:28px;
    width:auto;
    fill:var(--si-glyph);
    display:block;
}
.social-icons .si-yt svg{height:22px;}
.social-icons a:first-child {
    padding: 13px;
}
.elementor-element-f8f24a6{
    position: relative;
    height: 100px;
}
#validation_message_4_4{
    position: absolute;
}
.you__recieve P{
    margin-top: 10px!important;
}

.elementor-element-7cad4a8 {
    position: relative;
    height: 100px;
}
#validation_message_5_4{
    position: absolute;
    display: block !important;
}
#field_7_54 h3.gsection_title{
    color: var(--other-BodyText-Color, var(--Neutrals-Gray-70, rgba(10, 14, 21, 0.70)));
    text-align: left;
    font-family: var(--Font-Face, "DM Sans");
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
body #field_7_54{
    border-bottom: 0px !important;
}
#hd-header-cta{
    display: none;
}


#aboutus_btn input[type="submit"],
#aboutus_btn  .gform_button{
    background: #ffffff !important;
    color: #002049 !important;
    font-size: 16px;
    font-weight: 700 !important;
}
#aboutus_btn #validation_message_5_4{
    color: #ffffff !important;
}

@media (max-width: 1400px) {
    .hd-header-wrap {
        padding: 0px 3%;
    }
    .site-footer {
    padding: 50px 20px;
}
}
@media (max-width: 1300px) {
    .team-breadcrumbs{
        padding: 0px 15px;
    }
}
@media (max-width: 1280px) {
    .hd-header-wrap {
        padding: 16px 10px;
    }
}
@media (max-width: 1024px) {
    .hd-primary-nav.hd-nav-open ul { flex-direction: column; align-items: flex-start; gap: 4px; }
      .hd-hero-inner { grid-template-columns: 1fr; }
      .hd-content-wrap { grid-template-columns: 1fr; }
      .hd-footer-grid { grid-template-columns: 1fr 1fr; }
      .hd-grid-3, .hd-grid-4 { grid-template-columns: repeat(2, 1fr); }
      .hd-header-phone { display: none; }
      .footer-top{
        grid-template-columns:1fr 1fr;
    }
    .hd-header-inner {
        padding: 0px;
    }
    .wp-block-heading{
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    .footer_col_large {
        flex: 0 0 25%;
    }
    .footer-top {
        gap: 20px;
        display: flex;
        justify-content: space-between;
    }
      
     .middle_coll2 {
        gap: 0px 0px;
    }  
    body .hd-site-header .hd-header-cta a.headr_bluebtn {
        padding: 12px;
    }
    body .hd-site-header .hd-header-cta a.headr_leftbtn {
    padding: 12px;
    }
    .menu__mainclass {
        padding: 10px;
        border-radius: 12px;
        border: 1px solid #FFF;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(10, 14, 21, 0.10) inset;
    }
    .hd-primary-nav a{
        font-size: 16px;
    }
    body .hd-site-header .hd-header-cta a.headr_leftbtn {
        font-size: 12px;
    }
    body .hd-site-header .hd-header-cta a.headr_bluebtn {
        font-size: 12px;
    }
    .hd-primary-nav { display: none; }
    .hd-menu-toggle { display: block; }
    .menu__mainclass {
    box-shadow: none !important;
}
    .hd-primary-nav.hd-nav-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--hd-shadow);
        border-radius: 0 0 var(--hd-radius) var(--hd-radius);
        padding: 12px;
        /*margin-top: 8px;*/
    }
    .eh-testimonial-slide.swiper-slide-prev,.eh-testimonial-slide.swiper-slide-next{
    width: 55% !important;
}
.ts-grid {
		grid-template-columns: repeat(2, 1fr);
    }
    .ts-grid-item {
		width: calc((100% - 16px) / 2);
	}
}
@media (max-width: 768px) {
    .hd-header-wrap { padding: 12px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hd-footer-grid { grid-template-columns: 1fr; }
    .hd-grid-2, .hd-grid-3, .hd-grid-4 { grid-template-columns: 1fr; }
    .hd-btn-sm span:not(.hd-btn-arrow) { display: inline; }
    .hd-header-cta .hd-btn-sm { padding: 9px 14px; font-size: 14px; }
    
    .hd-primary-nav.hd-nav-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--hd-shadow);
        border-radius: 0 0 var(--hd-radius) var(--hd-radius);
        padding: 20px 24px;
    }
    .hd-primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
    .hd-primary-nav li.hd-sub-open > .sub-menu { display: block; margin-top:20px;
    }
    
    .hd-primary-nav li a{
        width: 100% !important;
        justify-content: space-between;
    }
    .footer-top{
        grid-template-columns:1fr;
    }
    .footer-middle,
    .footer-bottom{
        flex-direction:column;
    }
    
    .ts-name {
    	font-size: 16px;
    }
    .ts-avatar {
    	width: 100px;
    	height: 60px;
    }
    .ts-avatar img {
        width: 100%;
    }
    .ts-card {
    	padding: 18px 16px 20px;
    }
    .eh-testimonial-slide{ width:300px; }
    .eh-testimonial-card{ padding:30px 22px 24px; min-height:auto; }
    
    .footer-content .has-nested-images{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-middle .footer-content {
    width: 100%;
}
.footer-middle .footer_icons {
    width: 100%;
    border-left: 0px !important;
    padding-left: 0px;
}
.footer-bottom {
    gap: 20px;
}
.footer_col_large img, .footer_icons img {
    margin: auto;
    margin-bottom: 20px;
}
.footer-middle p{
    text-align: center;
}


    .eh-testimonial-slider-wrapper{
        padding:40px 15px;
    }

    .eh-testimonial-slide,
    .eh-testimonial-slide.swiper-slide-active,
    .eh-testimonial-slide.swiper-slide-prev,
    .eh-testimonial-slide.swiper-slide-next{
        opacity:1 !important;
        transform:none !important;
    }

    .eh-testimonial-card{
        min-height:auto;
        padding:25px 20px;
        box-shadow:none !important;
    }

    /* Remove left & right white fade */
    .eh-testimonial-slider-wrapper::before,
    .eh-testimonial-slider-wrapper::after{
        display:none;
    }
    .eh-testimonial-slide.swiper-slide-active {
        padding-bottom: 0px;
    }
    .eh-cond-item {
        flex-wrap: wrap;
        gap: 14px;
    }
    .eh-cond-num {
        order: 1;
        width: auto;
    }
    .eh-cond-arrow {
        order: 2;
        margin-left: auto;
    }
    .eh-cond-thumb {
        order: 3;
        width: 100%;
        height: 180px;
    }
    .eh-cond-content {
        order: 4;
        width: 100%;
    }
    
    
    .single__marquee{
        display:flex !important;
        flex-wrap:nowrap !important;
        align-items:center;
        overflow:hidden;
        width:100%;
    }

    .single__marquee .marquee-track{
        display:flex !important;
        flex-wrap:nowrap !important;
        align-items:center;
        width:max-content;
        animation:marquee 15s linear infinite;
        gap:20px;
    }

    .single__marquee .elementor-widget-icon-list{
        flex:0 0 auto !important;
        width:auto !important;
        margin:0;
    }

    .single__marquee .elementor-icon-list-items{
        display:flex;
        align-items:center;
    }

    .single__marquee .elementor-icon-list-item{
        white-space:nowrap;
    }
    .booking__form .gform_wrapper{
        padding:20px;
    }
    .booking__form input[type="submit"],
    .booking__form .gform_button{
        width:100%;
    }
        .Newsletter__form .gform_fields{
        flex-direction: column;
        align-items: stretch;
    }

    .Newsletter__form .gfield,
    .Newsletter__form .gform_footer,
    .Newsletter__form .gform_button_wrapper{
        width:100%;
    }

    .Newsletter__form input[type="submit"],
    .Newsletter__form .gform_button{
        width:100%;
    }
    .Newsletter__form form{
    display: grid;
    gap: 8px;
}
.single.single-post .postscontent h1,
.single.single-post .postscontent h2,
.single.single-post .postscontent h3,
.single.single-post .postscontent h4,
.single.single-post .postscontent h5,
.single.single-post .postscontent h6
{
    margin-top: 20px!important;   
    margin-bottom: 10px!important;   
}
.Newsletter__form .gform_button{
    width: 100% !important;
}
.refferal__forms .gform_title {
    font-size: 24px;
}
.refferal__forms .gfield {
    margin-bottom: 10px !important;
}
.refferal__forms textarea{
    min-height: 50px !important;
}
.feestable_hellodoc table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }

  .feestable_hellodoc thead {
    display: table-header-group;
  }

  .feestable_hellodoc tbody {
    display: table-row-group;
  }

  .feestable_hellodoc tr {
    display: table-row;
  }

  .feestable_hellodoc th,
  .feestable_hellodoc td {
    display: table-cell;
    padding: 10px 6px;
    font-size: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    vertical-align: middle;
  }

  .feestable_hellodoc thead tr th {
    font-size: 11px;
    padding: 10px 6px;
  }

  .feestable_hellodoc tbody tr td {
    font-size: 12px;
  }

  /* Remove card styles */
  .feestable_hellodoc tbody tr {
    border-bottom: 1px solid #e8edf3;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    box-shadow: none;
  }

  .feestable_hellodoc tbody tr td::before {
    content: none;
  }

  .feestable_hellodoc tbody tr td:first-child {
    background: transparent;
    border-radius: 0;
    padding: 10px 6px;
    display: table-cell;
  }
.feestable_hellodoc tbody tr td{
		padding: 10px;
	}
	.feestable_hellodoc tbody th,
	.feestable_hellodoc tbody td{
		text-align:left
	}
	
	.feestable_hellodoc {
    padding: 10px;
		margin-top: 10px;
}
	.feestable_hellodoc {
    width: 100%;
}
.feestable_hellodoc tbody tr#exsiting__adhdtable {
        border-bottom: 0px !important;
    }
	.tags__feespage {
    margin-bottom: 20px !important;
    margin-top: 10px !important;
}
.feestable_hellodoc{
    width: 100% !important;
}
.button-wrapper{
    display: grid;
    gap: 20px;
}
.ts-name {
    margin-top: 76px;
}
.elementor-element-f8f24a6 {
    height: 160px;
}
#validation_message_4_4 {
    bottom: 0px;
}
.footer-top {
    display: grid;
}
	.elementor-52 .elementor-element.elementor-element-60ed543 .elementor-heading-title {
    color: #0A0E15 !important;
}
.elementor-52 .elementor-element.elementor-element-edd1c52 .elementor-heading-title {
    color: rgba(10, 14, 21, 0.70) !important;
}
.blue_herrobtn .elementor-button{
    border-radius: var(--Numerics-16, 16px);
    background: var(--other-Brand-Btn-Color, radial-gradient(50% 100% at 50% 0%, var(--Colors-Brand-Primary-60, rgba(0, 32, 73, 0.60)) 0%, var(--Colors-Brand-Primary, #002049) 100%));
    box-shadow: 0 0 10px 0 var(--Neutrals-WHITE-60, rgba(255, 255, 255, 0.60)) inset;
    color: var(--white-white, #FFF);
}
.blue_herrobtn .elementor-button{
    color: #FFF !important;
    fill: #FFF !important;
}
.white_herrobtn .elementor-button{
    border-radius: var(--Numerics-16, 16px);
    border: 1px solid var(--Colors-Neutrals-Black-20, rgba(10, 14, 21, 0.20)) !important;
}
.white_herrobtn .elementor-button{
    color: #002049 !important;
    fill: #002049 !important;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 0%) !important;
}
}
@media (max-width: 480px) {
    .hd-header-inner {
        gap: 0px;
    }
    body .hd-site-header .hd-header-cta a.headr_leftbtn {
        padding: 10px;
    }
    .hd-header-cta .hd-btn-arrow{
        display: none;
    }
    .menu__mainclass {
        padding: 0px;
        box-shadow: none !important;
    }
    .site-footer {
        padding: 15px;
    }
    .hd-header-cta {
        gap: 5px;
    }
    .footer-middle .footer-col {
        width: 100%;
    }
    .site-footer .container {
        margin: 0px;
        padding: 15px;
        max-width: 100% !important;
    }
    .social-icons {
        justify-content: center;
    }
    .footer_copyright p{
        text-align: center;
    }
    .footer_col_large p{
        text-align: center;
    }
    .footer-widget ul{
        text-align: center;
    }
    .site-footer .wp-block-heading{
        text-align: center;
    }
    .site-footer p{
        margin: 0px !important;
    }
    .footer-top {
        gap: 10px;
    }
    .footer-contact .wp-block-heading{
        text-align: left;
    }
    .footer-middle {
        gap: 10px;
    }
    .footer-middle {
        margin-top: 30px;
        padding-top: 20px;
    }
    .footer-bottom{
        margin-top: 10px;
    }
    .footer-content .has-nested-images {
        justify-content: center;
        align-items: center;
    }
    .eh-testimonial-slider-wrapper {
        padding: 0px;
    }
    .eh-testimonial-nav {
        margin-top: 15px;
        margin-bottom: 20px;
}
.eh-testimonial-prev, .eh-testimonial-next {
    width: 30px;
    height: 30px;
}
.ts-nav-btn {
    width: 30px;
    height: 30px;
}
.eh-testimonial-slide.swiper-slide-active{
    width: 100% !important;
}
.eh-testimonial-slide.swiper-slide-prev,.eh-testimonial-slide.swiper-slide-next{
    width: 100% !important;
}
#dsktop__button a{
    display: none !important;
}
.border_button a{
    width: 100% !important;
}
.booking__form .gfield {
    margin-bottom: 10px !important;
}
body .booking__form .gform_footer, .booking__form .gform_button_wrapper {
    margin-top: 10px !important;
}
    .team-breadcrumbs{
       justify-content: start;
    }
#adhd_multiform .gfield_radio .gchoice {
    margin: 5px !important;
}
#adhd_multiform .gfield_label{
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}
#adhd_multiform .question-number {
    width: 35px !important;
    height: 35px !important;
    font-size: 12px;
    line-height: 18px;
}
#adhd_multiform h3 {
    margin: 15px 0px !important;
}
    #hd-header-cta{
        display: flex;
    }
    #hd-header-cta .hd-btn{
        width: 100%;
    }
    body #hd-header-cta.hd-header-cta .hd-btn-arrow{
        display: block !important;
    }
        #hd-header-cta{
        display: grid;
        gap: 15px;
        margin-top: 10px;
    }
    #hd-header-cta .hd-btn{
        width: 100%;
    }
    .wp-block-heading,.footer-top ul li{
        text-align: left !important;
    }
    	.ts-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.conditions_btn .elementor-button {
        line-height: normal !important;
        padding: 12px !important;
        font-size: 12px !important;
        width: 140px !important;
    }
    	.ts-grid-item {
		width: 100%;
	}
}