*{ padding:0; margin:0; box-sizing:border-box;}
html {scroll-behavior: smooth;}
body{padding: 0;margin: 0;background: #fff;font-family: "DM Sans", serif;overflow-x: hidden;}
p {font-weight: 400; font-size: 18px;color: var(--grey);}
input, select, textarea , button{transition: all 0.5s ease;-webkit-transition: all 0.5s ease;}
a {text-decoration:none;transition: all 0.5s ease;-webkit-transition: all 0.5s ease;outline:none;outline: 0;}
a::after , a::before{text-decoration:none;transition: all 0.5s ease;-webkit-transition: all 0.5s ease;}
a:focus {text-decoration:none;-webkit-box-shadow: none !important;box-shadow: none !important;outline: none !important;}

a, .btn, input, select, textarea, button, img{outline: 0 !important;box-shadow: none;}
input {border: 0;outline: 0;}
ul{margin:0;padding:0;list-style:none;}
img{max-width:100%}
:focus {outline: 0 none;box-shadow: inherit;}

select{color: #000;text-shadow: 0 0 0 #000;}
a img{outline: 0;}
input, select, textarea{outline: 0;-webkit-border-radius: 0;box-shadow: none;}
[type=submit], [type=submit]:focus {cursor: pointer;box-shadow: none;}
[type=submit]{cursor: pointer;}
p:empty {display: none;}

:root {
  --blue: #030E4F;
  --orange: #F49F1C;
  --black: #222222;
  --white : #ffffff;
  --grey : #3E3E3E;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "DM Sans", serif;
	font-weight: 600;
}
/*Header*/
#header {
	background: transparent;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}
.fixhead {
    background: var(--blue) !important;
    box-shadow: 1px 1px 30px #888;
    position: fixed !important;
}
.main-logo {
    width: 165px;
    height: 100px;
	object-fit: cover;
}
ul#menu-main-menu {
    list-style-type: none;
}
ul#menu-main-menu li {
    margin-left: 40px;
}
ul#menu-main-menu li a {
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.1;
}
ul#menu-main-menu li a:after {
    content: '';
    width: 80%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 50%;
	transform: translateX(-50%);
    opacity: 0;
}
ul#menu-main-menu li a:hover {
    color: var(--orange);
}
ul#menu-main-menu li.menu-item-28 a:hover {
    color: var(--white);
}
ul#menu-main-menu li a:hover:after {
    opacity: 1;
	background: var(--orange);
}
ul#menu-main-menu li.current-menu-item a, ul#menu-footer-menu li.current-menu-item a {
	color: var(--orange);
}
ul#menu-main-menu li.current-menu-item a:after {
	opacity: 1;
	background: var(--orange);
}
li.menu-item-28 a {
    background: var(--orange);
    padding: 15px 30px;
    border-radius: 10px;
	border: 1.5px solid var(--orange);
}
li.menu-item-28 a:after {
    display: none;
}
li.menu-item-28 a:hover {
	color: #fff;
	background: #21295acf;
}
body.logged-in header {
    margin-top: 32px;
}
.homebanner {
    height: 90vh;
}
.homebanner img {
    object-fit: cover;
    object-position: top center;
}
.homebanner-content {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	z-index: 2;
}
.banner-content h1 {
    font-size: 86px;
    line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: 10px;
}
.banner-text-content {
    width: 90%;
    margin: 0 auto;
}
.banner-text-content * {
    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
	color: var(--white);
	text-wrap: balance;
}
.theme-btn {
	position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
  padding: 15px 40px;
  border-radius: 10px;
  background: var(--orange);
  border: 1.5px solid var(--orange);
}
.theme-btn:hover,
.theme-btn:active {
  color: #fff;
  background: #21295acf;
}
.homebanner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 95%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 81.58%);
    left: 0;
    bottom: 0;
    opacity: 70%;
    z-index: 1;
}
.homebanner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 62%;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    left: 0;
    top: -100px;
}
#footer {
    background: #fbfbfb;
}
.footer-content * {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey);
    font-weight: 400;
	text-wrap: balance;
}
.footer-content :last-child {
    margin-bottom: 0px;
}
.footer-content {
    margin-top: 20px;
}
.footer-heading {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 20px;
}
ul#menu-footer-menu li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.1;
}
ul#menu-footer-menu li a:hover {
    color: var(--orange);
}
ul#menu-footer-menu li:not(:last-child) {
    margin-bottom: 16px;
}
.footer-signup-content {
    font-size: 18px;
    line-height: 1.8;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}
.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newsletter input {
    height: 55px;
	padding: 15px 30px;
}
.newsletter p {
    margin-bottom: 0px;
}
.emailbox input {
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 15px;
    padding: 0px 20px;
    width: 100%;
}
.wpcf7-spinner {
    position: absolute;
	top: 50%;
    transform: translateY(-50%);
}
.emailbox {
    width: 100%;
}
.emailbox .wpcf7-form-control-wrap {
    width: 100%;
    display: inline-block;
    padding-right: 20px;
}
.form-captcha-text {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    color: rgb(62 62 62 / 65%);
    margin-top: 20px;
}
.copyright-text {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 1.3;
    color: var(--grey);
}
.copyright-sec {
    border: 1px solid rgb(62 62 62 / 20%);
    padding: 20px 0px;
}
.social-links a {
    margin-left: 20px;
    width: 35px;
    height: 35px;
    border: 1px solid rgb(62 62 62 / 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a svg path {
    fill: rgb(62 62 62 / 50%);
}
.social-links a:hover {
    border-color: var(--orange);
}
.social-links a:hover svg path {
    fill: var(--orange);
}
.common-padding {
    padding: 100px 0px;
}
.top-padding {
    padding-top: 100px;
}
.home-about-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.black-heading {
    font-size: 45px;
    line-height: 1.3;
    color: var(--black);
	letter-spacing: 2px;
}
.common-content * {
    color: var(--grey);
    font-size: 18px;
    line-height: 1.7;
}
.home-about-sec .theme-btn {
    margin-top: 20px;
}
.consultation-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
.consultation-sec:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    z-index: 1;
}
.consultation-sec .container {
    position: relative;
    z-index: 2;
}
.consultation-sec .white-heading {
    text-wrap: balance;
}
.white-heading {
    font-size: 45px;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 20px;
	letter-spacing: 2px;
}
ul.contact-info li a, ul.contact-info li p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey);
    font-family: "Sora", serif;
    margin-left: 20px;
    width: fit-content;
}
ul.contact-info li {
    display: flex;
    margin-bottom: 20px;
}
.location-sec .row {
    width: 80%;
    margin: 0 auto;
}
ul.contact-info li svg {
    width: 35px;
    height: 35px;
}
.direction-link {
    margin-left: 55px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--orange);
    font-family: "Sora", serif;
    text-decoration: underline;
}
ul.contact-info li a:hover {
    color: var(--orange);
}
.direction-link:hover {
    color: var(--blue);
}
.location-sec .black-heading {
    margin-bottom: 20px;
}
.location-map p {
    margin-bottom: 0px;
}
.location-map iframe {
    width: 100%;
	border-radius: 10px;
}
.consultation-sec .theme-btn {
    font-family: 'Sora';
}
.services-content * {
    color: var(--white);
    font-family: 'Sora';
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
	text-wrap: balance;
}
.service-item {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 36px 27px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
}
.service-title {
    font-size: 21px;
    line-height: 1.4;
	font-weight: 500;
    color: var(--white);
    font-family: 'Sora';
    margin-top: 20px;
	letter-spacing: 0.02em;
}
.service-icon {
    height: 75px;
}
.services-list {
    margin-top: 40px;
    margin-bottom: 40px;
}
.services-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service-item:hover {
    background: linear-gradient(129deg, rgba(248, 248, 248, 0.12) 27.63%, rgba(247, 247, 247, 0.12) 112.11%);
    backdrop-filter: blur(15px);
}
.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-response-output {
    position: absolute;
    font-size: 13px;
    margin: 0px !important;
    bottom: -36px;
    left: 0px;
}
.contact-sec form {
    position: relative;
}
.contact-sec form .wpcf7-response-output {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.newsletter-form {
    position: relative;
}
.wpcf7-not-valid {
    border: 1px solid #dc3232 !important;
}
.emailbox input::placeholder {
    font-family: 'Sora';
    color: rgb(62 62 62 / 40%);
    font-size: 16px;
}
.newsletter .theme-btn {
    font-family: 'Sora';
}
.inner-page-banner {
    height: 60vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.inner-page-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 81.58%);
    opacity: 50%;
    z-index: 1;
}
.innerbanner-title {
    font-size: 70px;
    line-height: 1.1;
    z-index: 2;
    margin: 0px;
	letter-spacing: 5px;
}
.who-we-are-sec img, .our-mission-sec img {
    border-radius: 10px;
}
.our-mission-sec {
    background: var(--blue);
}
.our-mission-sec .common-content * {
    color: var(--white);
}
.form-group input {
    height: 55px;
    border-radius: 15px;
    border: 1px solid rgb(0 0 0 / 15%);
    padding: 0px 20px;
}
.form-group textarea {
    border-radius: 15px;
    border: 1px solid rgb(0 0 0 / 15%);
    padding: 20px;
    resize: none;
    height: 180px;
}
.form-group>p {
    margin-bottom: 40px;
}
.contact-form-wrapper {
    margin-top: 40px;
}
.form-group input::placeholder, .form-group textarea::placeholder {
	font-family: 'Sora';
    color: rgb(62 62 62 / 40%);
    font-size: 16px;
}
.contact-subtitle {
    text-wrap: balance;
}
.main-services-list .col-lg-6:nth-child(odd) {
    padding-right: 20px;
}
.main-services-list .col-lg-6:nth-child(even) {
    padding-left: 20px;
}
.main-service-title {
    font-size: 22px;
    line-height: 1.1;
    color: var(--blue);
    margin-top: 24px;
}
.main-service-price span {
    color: var(--orange);
    font-weight: 900;
}
.main-service-item {
    margin-bottom: 50px;
}
.main-services-list {
    margin-top: 40px;
    padding: 0 80px;
}
.service-book-btn .service-item {
    background: var(--orange);
    border-color: var(--orange);
}
.contact-subtitle a {
    color: var(--grey);
	text-decoration: underline;
}
.contact-subtitle a:hover {
    color: var(--orange);
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--blue);
}
.form-captcha-text a {
    color: rgb(62 62 62 / 65%);
}
.form-captcha-text a:hover {
    text-decoration: underline;
}
.copyright-text a {
    color: var(--grey);
	text-decoration: underline;
}
.copyright-text a:hover {
    color: var(--orange);
}
.grecaptcha-badge {
    bottom: 80px !important;
    z-index: 1;
}
.doctor-sec .common-content p:last-child {
    margin-bottom: 0px;
}
.privacy-policy .copyright-text a {
    color: var(--orange);
}
ul.contact-info li:nth-child(1) svg {
    margin-top: 4px;
}