:root{
	--primary-color			: #F29215;
	--secondery-color		: #F8F8F8;
	--text-color			: #000000;
	--accent-color			: #942790;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: 'SFProDisplayMedium';
}
* {
	box-sizing: border-box;
  }
  @font-face {
    font-family: 'SFProDisplayMedium';
    src: url('../fonts/SFProDisplayMedium.eot');
    src: url('../fonts/SFProDisplayMedium.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayMedium.woff2') format('woff2'),
         url('../fonts/SFProDisplayMedium.woff') format('woff'),
         url('../fonts/SFProDisplayMedium.ttf') format('truetype'),
         url('../fonts/SFProDisplayMedium.svg#SFProDisplayMedium') format('svg');
}
@font-face {
    font-family: 'SFProDisplayBold';
    src: url('../fonts/SFProDisplayBold.eot');
    src: url('../fonts/SFProDisplayBold.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayBold.woff2') format('woff2'),
         url('../fonts/SFProDisplayBold.woff') format('woff'),
         url('../fonts/SFProDisplayBold.ttf') format('truetype'),
         url('../fonts/SFProDisplayBold.svg#SFProDisplayBold') format('svg');
}
@font-face {
    font-family: 'SFProDisplaySemibold';
    src: url('../fonts/SFProDisplaySemibold.eot');
    src: url('../fonts/SFProDisplaySemibold.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplaySemibold.woff2') format('woff2'),
         url('../fonts/SFProDisplaySemibold.woff') format('woff'),
         url('../fonts/SFProDisplaySemibold.ttf') format('truetype'),
         url('../fonts/SFProDisplaySemibold.svg#SFProDisplaySemibold') format('svg');
}
@font-face {
    font-family: 'SFProDisplayRegular';
    src: url('../fonts/SFProDisplayRegular.eot');
    src: url('../fonts/SFProDisplayRegular.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayRegular.woff2') format('woff2'),
         url('../fonts/SFProDisplayRegular.woff') format('woff'),
         url('../fonts/SFProDisplayRegular.ttf') format('truetype'),
         url('../fonts/SFProDisplayRegular.svg#SFProDisplayRegular') format('svg');
}
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: 'SFProDisplayMedium';
    font-size: 16px;
    color: #767676;
 
    min-height: 100vh;


}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-fluid {
    width: 100%;
    padding: 0 120px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
section {
  padding: 120px 0;
}
h1{
    font-size: 80px;
    line-height: 73px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
}
h2{
    font-weight: 400;
    font-size: 56px;
    line-height:60px;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
}
h3{
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
}
h4{
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
}
h5{
    font-size:19px;
    line-height: 26px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
}
p{
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #919191;
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: 'SFProDisplayMedium';
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
 text-transform: capitalize;
  position: relative;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  height: 54px;
  width:259px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:20px 24px;
  border-radius: 8px;
  border: 2px solid #91258E;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #91258E;
  background-color:transparent;
  font-family: 'SFProDisplayMedium';
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #fff;
	transition: all 0.3s linear;
	background-color: #F29215;
  border-color: #F29215;
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #942790;
  backdrop-filter: blur(20px);
}
.main-header .common-btn {
  font-size: 16px;
  height: 50px;
}
.outer-menu {
    padding: 0;
    height: 98px;
    max-height: 98px;    
    padding:24px 0;
}
.outer-menu ul li{
    margin:0 12px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:var(--white-color);
    padding:10px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: #222;
}
.contact-phone,
.contact-message {
  padding: 10px;
  margin-right: 3px;
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  max-height: 70px;
  width: auto;
  height: 50px;
  display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: 0;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color:#942790!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
   -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
  box-shadow: 0 3px 4px rgba(0,0,0,.07);

}
.is-sticky .common-btn {
  background-color: #fff;
  color: #000;
}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;

}
.is-sticky .outer-menu {
  height: 77px;
  padding: 12px 0;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: 80px;
  width: auto;
}
.menu-logo {
  display: none;
}

/*single product */ 
.custom-product-layout {
    padding: 60px 0;
}

.product-short-box {
    background: #EEEEEE;
    padding: 25px;
    border-radius: 15px;
}

.short-description {
    margin-bottom: 20px;
}

.acf-product-details {
    margin-bottom: 20px;
}

.row.detIlrow {
    margin-top: 30px;
     margin-bottom: 20px;
}
.apply-now-btn {
    display: inline-block;
    background: #F29215;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
}

.apply-now-btn:hover {
    background: #e57c00;
}
.acf-product-details h3 {
    color: #91258E;
    font-family: 'SFProDisplayMedium';
    margin-bottom: 7px;
    text-transform: capitalize;
    padding: 20px 0px;
}

 .singleProduct ul li {
    color: #343232;
      list-style: disc !important;
}

.product-video iframe{
  border-radius: 32px;
}
.singleProduct{
      margin: 50px 0px;
}
h4.prTitle {
    min-height: 40px;
}
.shortCont {
    min-height: 72px;
}
.shortCont {
    margin-bottom: 20px;
}
.service-item  span.woocommerce-Price-amount.amount {
    color: #91258E;
    font-size: 25px !important;
}
.service-item .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol{
   color: #91258E;
    font-size: 25px !important;
}
.apply-now-btn:hover {
    background: var(--accent-color);
}

.cta-wrap.educCta{
      background: linear-gradient(90deg, #2800B7 0%, #752582 100%);
}

button#place_order:hover {
    background: var(--accent-color);
}
/* .page-id-204 .woocommerce-notices-wrapper{
  display: none;
}    */
/* checkout */
/* Remove 2 column layout */
.blog-details {
    min-height: 40vh;
}
.checkout_coupon input#coupon_code {
    border: 1px solid #DEDEDE !important;
    border-radius: 12px !important;
    color: #919191 !important;
    font-size: 16px !important;
    padding: 12px 16px;
    box-shadow: none !important;
    background-color: #fff;
}
.page-id-204 form.woocommerce-form.woocommerce-form-login.login p {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.page-id-204 form.woocommerce-form.woocommerce-form-login.login input[type="text"] ,.page-id-204 form.woocommerce-form.woocommerce-form-login.login input[type="password"] {
    border: 1px solid #DEDEDE !important;
    border-radius: 12px !important;
    color: #919191 !important;
    font-size: 16px !important;
    padding: 12px 16px;
    box-shadow: none !important;
    background-color: #fff;
}

.page-id-204 form.woocommerce-form.woocommerce-form-login.login input[type="checkbox"]:checked::before {
 
    bottom: 5px;
}
.page-id-204 button.woocommerce-button.button.woocommerce-form-login__submit

 {
    background-color: #F29215;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 16px;
    border: none;
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    width: 15% !important;
    height: 63px !important;
    text-decoration: none;
}
.checkout_coupon button.button {
    background-color: #F29215;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 16px;
    border: none;
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    width: 20% !important;
    height: 63px !important;
    text-decoration: none;
}
.woocommerce-checkout .col2-set {
    display: block;
}
.woocommerce-checkout .blog-details-img {
    display: none;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
}

/* Make ALL form rows full width */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.woocommerce-checkout .blockOverlay {
    display: none !important;
}

.woocommerce-checkout .processing {
    display: none !important;
}
.checform .woocommerce-billing-fields__field-wrapper p.form-row{
  display: flex;
  flex-direction: column;
  gap: 2px;
margin-bottom: 2px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper input.input-text, .woocommerce-checkout .woocommerce-billing-fields__field-wrapper select, .woocommerce-checkout .woocommerce-billing-fields__field-wrapper textarea {
    border: 1px solid #DEDEDE !important;
    border-radius: 12px !important;
    color: #919191 !important;
    font-size: 16px !important;
    padding: 12px 16px;
    box-shadow: none !important;
    background-color: #fff;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
    border: 1px solid #DEDEDE !important;
    border-radius: 20px !important;
    height: auto;
    padding: 10px 14px;
}
.woocommerce-additional-fields__field-wrapper p {
    display: flex;
    gap: 2px;
    flex-direction: column;
}
.woocommerce-input-wrapper textarea.input-text, .woocommerce-checkout .woocommerce-input-wrapper textarea {
    border: 1px solid #DEDEDE !important;
    border-radius: 20px !important;
    color: #919191 !important;
    font-size: 16px !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    background-color: #fff !important;
    resize: vertical;
}

.woocommerce-additional-fields {
    margin-top: 20px;
}
.form-row.place-order {
    display: flex;
    flex-direction: column;
    padding: 2px;
    gap: 2px;
}
.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 2px;
}
.woocommerce-checkout  label {
    font-size: 18px;
    line-height: 30px;
    color: #919191;
}
.cart_item .product-quantity{
  display: none;
}
.cart_item .product-name{
   font-size: 20px;
    line-height: 30px;
    color: #919191;
}
button#place_order {
  background-color: #F29215;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 16px;
    border: none;
    font-size: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    width: 100%;
    height: 72px;
        text-decoration: none;
}
.corfee{
  color: #91258E;
    font-family: 'SFProDisplayMedium';
    margin-bottom: 7px;
    text-transform: capitalize;
    padding: 20px 0px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
}
.woocommerce-checkout a.button.wc-forward {
    display: none;
}
.woocommerce-privacy-policy-text p {
    font-size: 18px !important;
}
.woocommerce-checkout .woocommerce-notices-wrapper {
    display: none;
}
.woocommerce {
    margin: 20px auto;
}
/* order page */

.my-courses-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    border-radius: 24px;
       padding: 0px 0px 10px 0px;
}

.course-card:hover {
    transform: translateY(-6px);
}

.course-content p {
    margin-bottom: 2px;
    padding: 0px 10px;
}
.course-image img {

    object-fit: cover;
    border-radius: 12px;
    border-radius: 24px 24px 0 0;
    width: 100%;
    height: auto;
}
.course-content {
    margin-top: 15px;
    text-align: center;
}

.order-meta {
    font-size: 14px;
    margin: 15px 0;
    text-align: left;
}

.view-btn,
.view-order-btn {
    display: inline-block;
    padding: 8px 18px;
    background: #942790 ;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin: 5px;
}

.view-order-btn {
    background: #F29215;
}
.course-content h4 {
    margin-bottom: 2px;
    min-height: 58px;
    padding-left: 10px;
    padding-right: 10px;
}
strong.product-quantity {
    display: none;
}
.course-content p{
  padding: 10px 0px;
  color: #91258E;
  font-size: 18px;
}
th.order-actions--heading {
    display: none;
}

.order_details a.woocommerce-button.button.pay.order-actions-button,.order_details a.woocommerce-button.button.cancel.order-actions-button{
  display: none;

}
p.woocommerce-customer-details--phone {
      margin-bottom: 0px;
    font-size: 18px !important;
    font-weight: 500;
    font-family: 'SFProDisplayMedium' !important;
}
p.woocommerce-customer-details--email {
   font-size: 18px !important;
    font-weight: 500;
    font-family: 'SFProDisplayMedium' !important;
}
.ne-accordion-content p{
    color: #919191;
    font-size: 18px !important;
}
p.orderNotice {
    color: #919191;
}
td.woocommerce-table__product-name.product-name a {
    color: #919191;
        font-weight: 600;
}
table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    font-size: 18px;
}
td.woocommerce-table__product-name.product-name {
    font-size: 18px;
}
td.woocommerce-table__product-total.product-total span.woocommerce-Price-amount.amount {
    font-size: 18px;
}
.woocommerce-customer-details address {
    font-size: 18px;
    font-weight: 500;
    font-family: 'SFProDisplayMedium' !important;
    color: #919191;
}
/*my account header footer */
.page-id-205:not(.logged-in) header, .page-id-205:not(.logged-in) footer {
    display: none;
}
/* Hide header & footer only for logged-out users on page 205 */
body.page-id-205:not(.logged-in) {
    overflow: hidden;
}
/* Remove Elementor full container padding */
body.page-id-205:not(.logged-in) .e-con-full {
    padding: 0 !important;
}
body.woocommerce-lost-password:not(.logged-in) header,
body.woocommerce-lost-password:not(.logged-in) footer {
    display: none;
}

body.woocommerce-lost-password:not(.logged-in) {
    overflow: hidden;
}

/*checkout */
.create-account p#account_password_field {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.create-account input#account_password {
    border: 1px solid #DEDEDE !important;
    border-radius: 12px !important;
    color: #919191 !important;
    font-size: 16px !important;
    padding: 12px 16px;
    box-shadow: none !important;
    background-color: #fff;
}
/* order page end */
/* login page */
/* Wrapper layout */
.ne-login-wrapper {
    display: flex;
    min-height: auto;
        height: 100vh;
    overflow: hidden;
}
.page-id-205 .inner-hero-section {
    padding: 0px 0 0;
}
/* Right form section */
.ne-login-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Vertical center */
    align-items: center;       /* Horizontal center */
    padding: 40px;
}

/* Form width */
.ne-form {
    width: 100%;
    max-width: 400px;
}

/* Logo styling */
.ne-logo-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.ne-login-logo {
    max-width: 180px;
    height: auto;
}

/* Center subtitle */
.ne-subtitle-login {
    text-align: center;
    margin-bottom: 30px;
}

/* Button full width */
.ne-login-btn {
    width: 100%;
    margin-top: 15px;
}
.ne-login-form input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 15px;
}
.labelLogin {
    font-size: 16px;
    font-weight: 500;
    color: #919191;
    margin-bottom: 2px;
    text-align: start;
}
.ne-login-btn {
    width: 100%;
    height: 64px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F29215 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1 !important;
    cursor: pointer !important;
}
.ne-login-btn:hover{
  text-decoration: none;
}
.ne-login-form input::placeholder {
    color: #919191;
    font-weight: 500;
    font-size: 15px;
    opacity: 1;
}

.ne-login-form input::-webkit-input-placeholder {
    color:#919191;
     font-weight: 500;
    font-size: 15px;
}

.ne-login-form input::-moz-placeholder {
    color: #919191;
     font-weight: 500;
    font-size: 15px;
}
/* lost password */
/* ============================= */
/* LOST PASSWORD FULL LAYOUT */
/* ============================= */

.ne-lost-wrapper {
    display: flex;
    justify-content: center;      /* Horizontal Center */
    align-items: center;          /* Vertical Center */
    min-height: 100vh;       /* Light background (optional) */
    padding: 20px;
    overflow-y: hidden;
}

/* Form Card */
.ne-lost-form {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.ne-lost-logo-wrap {
    text-align: center;
    margin-bottom: 25px;
}

.ne-lost-logo {
    max-width: 160px;
    height: auto;
}

/* Form Layout */
form.woocommerce-ResetPassword.lost_reset_password {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Message Text */
form.woocommerce-ResetPassword.lost_reset_password > p:first-child {
    text-align: center;
    font-size: 18px;
    color:#919191;
;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Label */
form.woocommerce-ResetPassword.lost_reset_password label {
    font-size: 16px;
    font-weight: 500;
    color:#919191;

    margin-bottom: 6px;
    text-align: left;
    width: 100%;
}

/* Input Field */
form.woocommerce-ResetPassword.lost_reset_password input[type="text"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Input Focus Effect */
form.woocommerce-ResetPassword.lost_reset_password input[type="text"]:focus {
    border-color: #919191;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Button */


/* Button Hover */
.restButtn:hover {
    background: #942790;
}

/* Remove default Woo spacing */
form.woocommerce-ResetPassword.lost_reset_password p {
    margin: 0;
}
form.woocommerce-ResetPassword.lost_reset_password p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}
.restButtn, form.woocommerce-ResetPassword.lost_reset_password button {
    width: 100%;
    height: 64px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #F29215 !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1 !important;
    cursor: pointer !important;
}
 form.woocommerce-ResetPassword.lost_reset_password button:hover{
  text-decoration: none;
}
body.wp-singular.page-template-default.page.page-id-205{
    height: 100%;
    margin: 0;
   
}
/* our products section*/
.services-image.productsour img {
   
	    height: auto !important;

}
.services-image.education img {
 
    height: 195px !important
}
h4.prTitle.ourpro {
    min-height: 20px;
    margin-bottom: 0px;
	text-align:center;
}
.service-item.homserv img{
  width:391px !important;
  height: 122px !important;

}
.service-item.homserv {
    flex: 0 0 calc(33.33% - 20px);
}
.container-fluid.ourPdcov {
    /* width: calc(60% - 16px); */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}
.blog-details.ourProdet {
    width: calc(60% - 16px);
}
.blog-details-img.ourImage {
    width: calc(40% - 16px);
}
.blog-details-img.ourImage  img{
	width:100%;
}
/* Responsive */
@media (max-width: 480px) {
    .ne-lost-form {
        padding: 25px;
    }
}

/* Responsive */
@media (max-width: 991px) {
	
   .course-content h4{
    font-size: 18px;
  }
    .product-wrapper {
        flex-direction: column;
    }

    .left-content,
    .right-sidebar {
        width: 100%;
    }
}

@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section {
  position: relative;
  padding: 0;
}
.hero-image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 500px 0 260px;
}
.hero-section h1 {
  margin:0 auto 27px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 400;
  max-width: 900px;
}
.hero-section p {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 32px;
  color: var(--white-color);
  letter-spacing: 0;
}
.hero-content {
  max-width: 1073px;
  text-align: center;
  margin: 0 auto;
}
.hero-content .common-btn {
  cursor: pointer;
}
.hero-content .btn-wrap {
  gap: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.hero-content .common-btn.white-btn {
  background-color: #fff;
  border-color: #fff;
  color: #000000;
}
.hero-content .common-btn.white-btn:hover {
  background-color: transparent;
  color: #fff;
}
.hero-content .common-btn.border-btn {  
  border: 1px solid #fffd;
  color: #fff;
}
.hero-content .common-btn.border-btn:hover {
  background-color: #fff;
  color: #000000;
}


/* about  */

.about-section {
  position: relative;
  background: #F2F2F2;
}
.about-section .common-btn {
  margin: 0 auto;
  display: table;
}
.about-image {
  width:calc(35.8% - 60px);
  background: #91258E;
  box-shadow: 0px 4px 54px 12px rgba(145, 37, 142, 0.35);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 356px;
}
.about-content {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 120px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.about-text h2 {
   color: #000000;
    text-transform: capitalize;
    margin: 0;
}
.about-text p {
  margin:0;
  text-align: justify;
}
.about-logo {
  align-items: center;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width:calc(64.2% - 60px);
}


/* services-section */

.services-section {
  position: relative;
  padding: 96px 0;
}
.services-section .common-btn {
  display: table;
  margin: 0 auto;
}
.section-title {
  margin-bottom: 40px;
  text-align: center;
}
.service-title h2 {
  margin-bottom: 26px;
}
.service-title p {
  color: #373737;
  margin-bottom: 12px;
}
.service-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.service-item {
  width: calc(50% - 12px);
  padding: 16px 16px 24px;
  background: #F9F8F8;
  border-radius: 24px;
}
.services-image img {
  border-radius: 16px;
}
.service-item p {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 24px;
    color: #646464;
}
.services-text h3 {
  margin-bottom: 16px;
}
.service-item .common-btn {
  width: 100%;
  background: #F29215;
  color: #000000;
  border: none;
}
.service-item .common-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.services-text {
  padding-top: 32px;
}


/*  testimonials */
.testimonials {
  background: url(../images/testimonials-bg.jpg) no-repeat center top;
  background-size: cover;
  position: relative;
}
.testimonials h2 {
  max-width: 750px;
  margin: 0 0 40px;
  font-size: 80px;
  line-height: 80px;
  color: #FFFFFF;
  font-family: 'SFProDisplayMedium';
}
.testimonials p {
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  
}
.testimonials .section-title {
  margin-bottom: 52px;
  text-align: left;
}

/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 16px;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
}
.testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-content {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  padding: 24px 24px 32px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  position: relative;
}
.testimonial-content::before {
  width: 138.19px;
  height: 132px;
  background:url(../images/quote.svg) no-repeat center #92268E;
  border-radius: 16px;
  padding: 41.25px;
  content: "";
  left: 24px;
  top: 24px;
  position: absolute;
}


/* Text */
.testimonial-text p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0 !important;
  color: #202020;
}
.testimonial-author,
.testimonial-location {
  text-align: left;
  font-size: 32px;
  line-height: 32px;
  color: #202020;
  font-weight: 400;  
}
.testimonial-location p {
  font-size: 18px !important;
  line-height: 18px !important;
  color: #202020;
  font-weight: 400;
  margin: 0 !important;
}
.testimonial-top-content {
  position: relative;
  padding:20px 0 20px 162px;
}
.ratings {
  margin-top: 16px;
}
.ratings li {
  display: inline-block;
  vertical-align: top;
  margin:0 7px 0 0;
}
.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  position: absolute !important;
  top: 10px;
  z-index: 10;
}
.slick-slider {
  position: relative;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(108, 108, 108, 0.3);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 3.58594px 35.8594px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(9.41309px);
  width: 72px;
  height: 72px;
  border-radius: 72px;
  padding: 8px;
  text-align: center;
  font-size: 0;
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 72px;
  left: 0;
  top: 0;
  background-image: url(../images/arrow-right-slider.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-slider .slick-prev {
  right: 52px;
  left: auto;
  display: none !important;
}
.testimonial-slider .slick-next {
  right:-36px;
}
.testimonial-text {
  margin-top: 32px;
}
.testimonial-slider button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EAEAEA;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 2.5px;
  font-size: 0;
}
.testimonial-slider .slick-active button {
  background: #F29215;
}
.testimonial-slider .slick-dots {
  margin-top: 24px;
  text-align: center;
}
.testimonial-slider .slick-dots li{
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

/* cta  */

.cta-section {
  position: relative;
  background: #CFCFCF;
}
.cta-wrap {
  background: linear-gradient(90deg, #75A3BA 0%, #000D18 100%);
  border-radius: 64px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px 24px 24px 40px;
  gap: 56px;
  flex-wrap: wrap;
  display: flex;
}
.cta-content {
  width: calc(42% - 28px);
  margin: 0;
}
.cta-content h2{
line-height: 64px;
color: #FFFFFF;
margin-bottom: 32px;
text-transform: none;
font-family: 'SFProDisplaybold';
}
.cta-content p {
font-size: 32px;
line-height: 40px;
color: #FFFFFF;
margin: 0 0 24px;
}
.cta-content .common-btn {
  background-color: #F29215;
  margin-right: 10px;
  color: #000;
  border: none;
}
.cta-content .common-btn.white-btn {
  background-color: #ffffff;
  color: #000;
}
.cta-img {
  width: calc(58% - 28px);
} 
.cta-img img {
  border-radius:40px;  
}

/* contact */

  .contact-page-section {
     position: relative;
     padding-top: 180px !important;
  }
  .contact-info {
    margin-top:56px;
    width: 488px;
  }
  .contact-img{
    background: #E8E8E8;
    border-radius: 32px;
    padding: 131px 32px 120px;
    height: 100%;
    margin: 0 4px;
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
    .contact-info h4 {
      text-transform: capitalize;
      font-size: 24px;
      line-height: 28px;
      margin-bottom: 15px;
    }
     .contact-info p {
      font-size: 22px;
      line-height: 30px;
      margin-bottom: 16px;
     }
   .contact-content {
      background: rgba(13, 13, 13, 0.001);
      border: 2px solid rgba(189, 189, 189, 0.4);
      border-radius: 32px;
      padding: 30px 40px 40px;
      margin:  0 4px;
  }
  h2.contact-title {
      margin-bottom: 16px;
      font-size: 48px;
      line-height: 60px;
      text-transform: capitalize;
      color: #942790;
  }
  .contact-page-section .contact-title {
    max-width: 575px;
  }
  .contact-description {
      color: #373737;
      margin-bottom: 26px;
  }
  .contact-address {
    max-width: 212px;    
  }
  .contact-email,
    .contact-phone {
    position: relative;
  }
  .contact-form,
  .contact-content form {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  .form-row {
      display: flex;
      gap: 32px;
  }
  .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
  }
  .form-label {
      font-size: 16px;
      line-height: 16px;
      color: #942790;
      opacity: 0.5;
      margin-bottom: 8px;
  }
  .required {
      color: #ff0000;
  }
  .form-input,
  .contact-content input[type="text"],
  .contact-content input[type="email"],
  .contact-content input[type="tel"],
  .contact-content select,
  .contact-content textarea {
      background: rgba(225, 225, 225, 0.73) !important;
      border: 1px solid #A6A6A6 !important;
      border-radius: 8px !important;
      padding: 24px 16px !important;
      font-size: 20px !important;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 26px;
      color: rgba(130, 130, 130, 0.5);
      outline: none;
      width: 100%;
      height:62px;
  }
  .contact-content textarea {
    height: 134px;
  }
  .contact-content .form-group p {
    margin: 0 !important;
  }
  .form-input:focus {
      outline:none;
      color: #000000;
  }
 
  .country-picker {
      display: flex;
      align-items: center;
      gap: 8px;
      padding:17px 16px;
      cursor: pointer;
      position: relative;
  }
  .country-picker::after {
    position: absolute;
    top: 50%;
    right:0;
    content: "";
    width: 1px;
    height: 32px;
    background-color: #7E7E7E;
    transform: translate(0, -50%);
  }
  .country-flag {
      width: 24px;
      height: 24px;
  }
  .dropdown-arrow {
      width: 12px;
      height: 12px;
  }
  .phone-number {
      flex: 1;
      border: none;
      background: transparent;
      padding:17px 16px;
      font-size: 20px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      width: 100%;
  }
  .phone-number:focus {
      outline: none;
      color: #000000;
  }
  .dropdown-input {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: url(../images/arrow-down.svg) no-repeat right 15px center #f7f7f7;
      /* background-color: #f7f7f7; */
      border: none;
      border-radius: 8px;
      padding:17px 16px;
      font-size: 20px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      line-height: 28px;
      color: rgba(130, 130, 130, 0.5);
      cursor: pointer;
      appearance: none;
  }
  .dropdown-input:focus {
      outline:none;
  }
  .contact-content .textarea {
      min-height: 134px;
      resize: vertical;
  }
  .contact-content .common-btn {
      background-color: #F29215;
      color: #ffffff;
      padding: 20px 40px;
      border-radius: 16px;
      border: none;
      font-size: 24px;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
      text-transform: capitalize;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background-color 0.3s ease;
      margin-top: 15px;
      width: 100%;
      height: 72px;
  }
  .submit-btn:hover {
      background-color: #333333;
  }
  .submit-btn img {
      width: 24px;
      height: 24px;
  }
    .contact-content form p {
      margin: 0 !important;
    }
    .contact-phone,  .contact-email {
      padding:15px 10px 10px 64px;
      position: relative;
    }
    .contact-phone::before, .contact-email::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 56px;
      height: 56px;
      border-radius: 56px;
      padding: 10px;
      background: url(../images/phone-icon.svg) no-repeat center #FFFFFF;
      text-align: center;
    }
    .contact-email::before {
      background: url(../images/mail-icon.svg) no-repeat center #FFFFFF;
    }
    .contact-img img {
      margin: 0 auto;
    }
.map {
  padding: 0 !important;
}
   /* Footer */
  .footer {
      background: linear-gradient(95.53deg, #942790 23.34%, #40073E 97.2%);
      color: #ffffff;
      padding: 96px 0;
  }
    .footer-logo {
      margin-bottom: 40px;
    }
  .footer-logo p {
    font-size: 22px;
    line-height:30px;
    color: #FFFFFF;
    max-width: 294px;
  }
  .footer-content {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
  }
  .footer h3 {
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 64px;
    max-width: 350px;
    opacity: 0.6;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer-address {
    max-width: 290px;
  }
  .footer-title {
      font-size: 24px;
      line-height: 28px;
      text-transform: capitalize;
      color: #fff;
      margin-bottom: 15px;
  }
  .footer-section li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-section li a {
      font-size: 22px;
      font-weight: 500;
      line-height: 26px;
      color:#fff;
      text-decoration: none;
      margin-bottom: 7px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5;
  }
  footer .social-icon li a {
    background: rgba(0, 0, 0, 0.12) !important;
    color: #fff !important;
   }
    .footer-link a {
      color:var(--primary-color);
    }
  .footer-link:hover,
  .footer-section li a:hover {
      color:var(--primary-color);
  }  
  .footer-copyright {
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#fff;
      border-top: 1px solid #fff;
      padding: 16px 0;
      opacity: 0.7;
  }
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#fff;
     margin: 0;
     text-align: right;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }
  .footer-link {
    line-height: 30px;
  }
  .footer-link a {
    color: #fff;
  }

  /* inner banner */
   .inner-hero-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    border-radius: 0 0 24px 24px;
    margin: 0 19px;
  }
  .inner-hero-content h1 {
   font-size: 64px;
    line-height: 71px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 32px;
  }
   .inner-hero-content h1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 174px;
    height: 16px;
    border-radius: 16px;
    background-color: #FFFFFF;
   }
  .inner-hero-section {
    padding:60px 0 0;
  }

  /* About page */

  .about-page-section .about-content {
    margin-bottom: 0;
  }
  .founder-section {
    position: relative;
    background: #F2F2F2;
    padding: 0;
  }
  .founder-section h2 {
    text-align: right;
    max-width: 394px;
    margin:0 0 0 auto;    
  }
  .founder-section p {
    color: #919191;
    background:url(../images/founder-quote.svg) no-repeat left top;
    padding-top: 72px;
    padding-left: 72px;
    margin-bottom: 20px;
  }
  .founder-section  h4 {
    font-size: 24px;
    line-height: 32px;
    color: #737070;
    text-align: right;
    margin: 0;
  }
  .vission-mision {
    position: relative;
    background: #F2F2F2;
    padding:80px 0;
  }
  .vission-mision-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:stretch;
    padding: 0px;
    gap: 32px;
  }
  .vission-mision-item {
    padding: 16px;
    background: #FFFFFF;
    border-radius: 32px;
    width: calc(50% - 16px);
  }
  .vission-icon {
    width: 128px;
    height: 128px;
    background: #91258E;
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    margin-bottom: 24px;
  }
    .vission-mision-item h3{
      color: #91258E;
      font-family: 'SFProDisplayMedium';
      margin-bottom: 7px;
      text-transform: capitalize;
    }
     .vission-mision-item p {
      color: #919191;
      margin: 0;
     }

  /* Service section */

.service-page-section,
.testimonials-page-section {
  position: relative;
  padding: 96px 0;
}
.service-page-section .section-title {
  text-align: left;
}
.service-page-section h2 {
  font-size: 48px;
  line-height: 32px;
  text-transform: capitalize;
}
.service-page-section p{
  color: #646464;
}
.service-page-section .service-wrap {
  justify-content: start;
  align-items: stretch;
  margin: 0;
}
.service-page-section .service-item {
  width: calc(33.3% - 16px);
  background: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 24px;
  padding: 0;
}
.service-page-section .service-item .services-image img {
  border-radius: 24px 24px 0 0;
  width: 100%;
  height: auto;
}
.service-page-section .service-item .services-text {
  padding: 12px 24px 24px;
}
.service-page-section .service-item .services-text h4 {
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.service-page-section .service-item .services-text p {
  font-size: 18px;
  line-height: 22px;
  color: #7E7E7E;
  margin-bottom: 12px;
}
.service-page-section .service-item .services-text .common-btn {
  height: 48px;
  font-size: 16px;
  color: #fff;
}
.service-cat-education .cta-wrap {
  background: linear-gradient(90deg, #2800B7 0%, #752582 100%);
}
.service-cat-education .cta-wrap h2 {
  color: #C4E8FF;
}
/* Contact page */

.contact-page-section {
  position: relative;
  padding: 64px 0;
}
.contact-info h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 28px;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.contact-info p {
  color: #383838;
  line-height: auto;
  opacity: 0.5;
  margin-bottom: 13px;
}
.contact-info p a {
  color: #383838;
}
.social-icon ul li {
  margin: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: top;
}
.social-icon ul li a {
  width: 44px;
  height: 44px;
  background: #444444;
  border-radius: 44px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 41px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon p {
  margin-bottom: 15px;
}
.social-icon ul li a:hover {
   background: #646464;
   color: #fff;
}
.contact-info p {
  display: flex;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
.contact-info p span:first-child {
  width: 17%;
}
.contact-info p span:last-child {
  width: 83%;
  padding-left: 10px;
}
.map {
  padding-bottom: 120px;
}

/* gallery */

.gallery-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-list-item {
 width: calc(33.3% - 11px);
 margin: 0;
}
.gallery-list-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-page-section {
  text-align: center;
}
.gallery-page-section h2 {
  text-transform: capitalize;
}
/* doctors page */

.doctors-page-section,
.dovtors-hero {
  background-color: #F4F4F4;
}
.doctors-wrap {
  display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 24px;
align-self: stretch;
flex-wrap: wrap;
}
.doctors-item {
  border: 1px solid #D2D2D2;
  border-radius: 24px;
  overflow:hidden;
  width: calc(20% - 20px);
  position: relative;
  padding-bottom: 94px;
}
.doctors-image {
  width: 100%;
  height: 254px;
  background: #C9CFD4;
  border-radius: 24px 24px 0px 0px;
  overflow: hidden;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-direction: column;
}
.doctors-item:first-child .doctors-image {
  align-items:flex-start;
  justify-content: flex-start;
}
.doctors-item img {
  border-radius: 24px 24px 0px 0px;
  display: block;
  margin:0 auto;
}
.doctors-text {
  padding:22px 15px;
  background-color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  transition: all 0.3s ease;
}
.doctors-text h4 {
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 24px;
}
.doctors-text p {
  color: #7E7E7E;
  margin-bottom: 0 !important;
  font-weight: 400;
}
.doctors-text .common-btn,
.lab-text .common-btn {
  margin-top: 9px;
  width: 100%;
  background-color: #F29215;
  border: none;
  display: none;
  height: 48px;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  color: #fff;
}
.doctors-item:hover .doctors-text .common-btn {
   display: block;
   transition: all 0.3s ease;
}
.doctor-filter-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 40px;
    padding: 0;
}
.filter-label {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    color: #252323;
}
.filter-select {
    padding: 8px 10px;
    border:none;
    background: #FFFFFF;
    border-radius: 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 18px 24px;
    height: 52px;
    color: #646464;
}

/* lab tests */

.lab-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
}
.lab-item {
  padding: 24px 16px;
  background: #FFFFFF;
  border-radius: 24px;
  width: calc(25% - 12px);
}
.lab-item h4.lab-title {
  text-align: center;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  padding-bottom: 12px;
  border-bottom: 1px solid #A5A5A5;
  margin-bottom: 16px;
}
.lab-item p {
  color: #707070;
  min-height: 43px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 26px;
}
.lab-text h4 {
font-size: 24px;
line-height: 29px;
margin-bottom: 16px;
}
.lab-text h4 span {
  color: #942790;
}
.lab-text .common-btn { 
  display: block;
}
.lab-test-cta-section {
  padding-bottom: 0 !important;
  background-color: #F4F4F4;
}
.lab-test-cta-section .cta-wrap {
  background: linear-gradient(89.98deg, #2B3984 0.01%, #E8E8EA 99.46%);
}
.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 45px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color: #000 !important;
    color: var(--white-color);
    border-radius: 8px !important;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color: var(--primary-color);
		color: var(--white-color);
	}
  .wpcf7-spinner {
    display: none;
  }
  .education-service .blog-details-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;   
    gap: 32px; 
  }
    .education-service  .blog-details-img   {
      width: calc(40% - 16px);
  }
    .education-service  .blog-details-img .specifications {
      background: #EEEEEE;
      border-radius: 24px;
      padding: 40px 32px;
      margin-bottom: 40px;
    }
    .education-service  ul {
    margin-bottom: 30px;
    }
  .education-service  .blog-details-img .specifications ul {
  margin-bottom: 0;
  }
  .education-service h3 {
    color: #942790;
    margin-bottom: 24px;
 
  }
  .blog-details-img img,
    .blog-details-img iframe {
    border-radius: 32px;
  }
      .education-service  ul li {
        font-size: 24px;
        line-height: 29px;
        color: #000000;
        list-style: disc;
        margin-bottom: 5px;
      }
   .education-service  .blog-details   {
      width: calc(60% - 16px);
  }

 
  /* media query */
  @media only screen and (max-width: 1850px){	
    .service-list {
      justify-content: center;
    }
  }
  @media only screen and (max-width: 1800px){	
    .container-fluid {
      padding: 0 100px;
    }   
    .doctors-wrap {
      gap: 16px;
    }  
    .doctors-item {
      width: calc(20% - 8px);
    }
    .doctors-text h4,
    .doctors-text p {
      font-size: 22px;
    }
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 80px;
    }
    .hero-image {
      padding: 380px 0 220px;
    }
    .hero-section h1 {
      font-size: 90px;
      line-height: 90px;
      max-width: 1143px;
    }
    .hero-section p {
      font-size: 30px;
      line-height: 38px;
    }  
    .service-page-section, .testimonials-page-section {
      padding: 60px 0 140px 0;
    }
    .believe-items .believe-item-wrap {
      width: 32.5%;
    }
    .what-believe {
      padding: 100px 0 140px;
    }    
    .inner-hero-content h1 {
      font-size: 60px;
      line-height: 64px;
    }  
      .about-logo  {
        height:100px;
      }
       .contact-title {
      max-width: 85%;
    }
    .portfolio-content h2 {
      margin-bottom: 35px;
    }
  }
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
    .hero-image {
      padding: 300px 0 200px;
    }
    h1{
      font-size: 60px;
      line-height: 56px;
    }
     h2 {
      font-size: 50px;
      line-height: 56px;
    }
    p {
      font-size: 22px;
      line-height: 30px;
    }   
     .hero-section h1 {
      font-size: 84px;
      line-height: 84px;
      max-width: 1060px;
    }
     .hero-section p {
      font-size: 26px;
      line-height: 28px;
    }
    .hero-content {
      max-width: 1180px;
    }
    .blog-details ul li,
    .education-service ul li {
      font-size: 22px;
      line-height: 30px;
    }
    .services-section h3 {
      font-size: 30px;
      line-height: 40px;
    }
    .services-section p {
      margin-bottom: 30px;
    }
    .service-item {
      padding: 18px;
    }
    .service-icon {
      width: 60px;
      height: 60px;
    }   
    .cta-img {
      width: calc(54% - 28px);
    }
    .cta-content {
      width: calc(46% - 28px);
      margin: 0;
    }
    .testimonials {
      padding-top: 100px;
      padding-bottom: 80px;
    } 
    .testimonial-content {
      padding: 15px 15px 25px;
    }
    .contact-section {
      padding: 100px 0;
    }
    .contact-title {
      margin-bottom: 30px;
    }
    .contact-content .submit-btn { 
      margin-top: 15px;
    }
    .footer {
      padding: 70px 0;
    }
    .footer h3 {
      font-size: 38px;
      line-height: 38px;
      margin-bottom: 50px;
    }
    .footer-title {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-link,
      .footer-section li a {
      font-size: 20px;
    }
    .footer-section li {
      margin-bottom: 5px;
    }
    .inner-hero-img {
      padding: 100px 0 60px;
    }
    .inner-hero-content h1 {
      font-size: 56px;
      line-height: 60px;
    } 
    .what-believe {
      padding: 80px 0 110px;
    }
    .service-title h4 {
      font-size: 18px;
      line-height: 30px;
    }
    .service-title {
      padding: 12px 15px;
    }
    .custom-service-content h3 {
      margin-bottom: 30px;
      font-size: 42px;
      line-height: 50px;
    }
    .custom-service-content .common-btn {
      padding: 19px 45px;
      height: 66px;
    }   
    .contact-title {
      max-width: 85%;
    }
    .cta-content h2 {
      line-height: 50px;
      margin-bottom: 20px;
    }
    .cta-content p {
      font-size: 28px;
      line-height: 34px;
    }
    .testimonials h2 {
      font-size: 70px;
      line-height: 70px;
    }
    .about-content {
      gap: 100px;
    }    
    .testimonial-content::before {
      width: 128px;
      height: 122px;
      left: 15px;
    }
    .testimonial-top-content {
      padding-left: 152px;
    }
    .vission-icon {
      width: 120px;
      height: 120px;
    }
    .doctor-filter-bar {
      margin-bottom: 35px;
    }
    .doctors-item {
      width: calc(25% - 12px);
    }
    .lab-item h4.lab-title {
      font-size: 22px;
      line-height: 27px;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }          
    .service-page-section, .testimonials-page-section {
      padding: 50px 0 120px 0;
    }
    .custom-services {
      margin-top: 50px;
      padding: 16px;
    }
    .mt-64 {
      margin-top: 30px;
    }     
     .contact-title {
      max-width: 90%;
    }
    .service-item span {
      font-size: 22px;
    }
    .service-icon {
      margin-right: 10px;
    }
     .hero-image {
      padding: 280px 0 180px;
    }
     .about-logo {
      height: 90px;
    }
    .testimonials p {
      max-width: 1190px;
    }
    .testimonials h2 {
      margin: 0 0 36px;
    }
    .testimonial-author {
      font-size: 28px;
    }
    .lab-item h4.lab-title,
    .lab-text h4 {
      font-size: 22px;
      line-height: 27px;
    }
    .lab-item p {
      font-size: 16px;
      line-height:21px;
    }
    
  }
  @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    }
    .outer-menu {
      padding: 20px 0;
    }
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
    }
    .hero-image {
      padding: 250px 0 150px;
    }
    h1{
      font-size: 54px;
      line-height: 50px;
      margin-bottom: 25px;
    }
     h2 {
      font-size: 46px;
      line-height: 46px;
      margin-bottom: 25px;
    }
    h3 {
      font-size: 30px;
      line-height: 30px;
    }
    .inner-hero-content h1::after { 
      height: 12px;
      width: 120px;
    }
    .inner-hero-content h1 {
      padding-bottom: 28px;
    }
    p,
    .blog-details ul li,
    .education-service ul li {
      font-size: 20px;
      line-height: 28px;
    }
    .hero-section h1 {
      font-size: 80px;
      line-height: 80px;
      max-width: 1012px;
    }
     .hero-section p {
      font-size: 22px;
      line-height: 26px;
     }
      .hero-content {
        max-width: 1000px;
      }
    .gallery h3 {
      font-size: 20px;
    }
    section,
    .services-section {
      padding: 90px 0;
    }
    .cta-content h2 {
      line-height: 46px;
      margin-bottom: 15px;
    }
     .cta-content p {
      font-size: 26px;
      line-height: 30px;
    }
    .services-section h3 {
      font-size: 28px;
      line-height: 36px;
    }
    .services-content {
      padding-left: 0;
    }
    .services-section p {
      margin-bottom: 25px;
      font-size: 20px;
      line-height: 24px;
    }
    .common-btn, .appointment-btn {
      width: 246px;
    }
    .service-item {
      padding: 15px;
    } 
    
     .service-icon {
      width: 56px;
      height: 56px;
    }  
    .testimonials h2 {
      max-width: 640px;
      margin: 0 0 30px;
    }   
    .testimonials {
      padding-top: 80px;
      padding-bottom: 70px;
    }
  
    .ratings {
      margin-top: 6px;
    }
    .ratings li img {
      width: 20px;
      height: auto;
    }
    .testimonials p {
      max-width: 1125px;
      margin: 0 0 25px;
    }
    .contact-section {
      padding: 90px 0;
    }
    .footer {
      padding: 60px 0;
    }
    .footer h3 {
      font-size: 34px;
      line-height: 34px;
      margin-bottom: 40px;
      max-width: 310px;
    }    
     .about-content {
      gap: 60px;
      margin-bottom: 40px;
    }
    .about-image {
        width: calc(35.8% - 30px);
    }
    .about-text {
      width: calc(64.2% - 30px);
    }
     .inner-hero-img {
        padding: 90px 0 60px;
     }
     .inner-hero-content h1 {
        font-size: 46px;
        line-height: 50px;
     }      
     .about-page-content {
      padding-left: 20px;
    }
    .about-page-content p {
      font-size: 18px;
      line-height: 30px;
    }
    .counter-section .stat-item .stat-number {
      font-size: 48px;
      line-height: 34px;
    }
    .what-believe {
      padding: 70px 0 90px;
    }
    .believe-items .believe-item-wrap {
      width: 32.4%;
    }
    .service-page-section, .testimonials-page-section {
      padding: 50px 0 100px 0;
    }
    .custom-services {
      gap: 40px;
    }
    .review-content {
      padding: 82px 0;
    }  
    .contact-info h2 {
      font-size: 40px;
    }
     .gallery-page-section h3 {
      font-size: 38px;
      line-height: 44px;
    }      
    .gallery-carousel-box img {
      height: 450px;
    }
     .testimonials h2 {
      font-size: 65px;
      line-height: 63px;
    }
    .footer-logo {
      margin-bottom: 30px;
    }
    .testimonial-content::before {
      width: 110px;
      height: 102px;
    }
    .testimonial-top-content {
      padding-left: 130px;
    }
      .testimonial-author {
        font-size: 24px;
      }
      .testimonial-text p {
        font-size: 18px;
        line-height: 26px;
      }
      .cta-wrap {
        padding: 24px 20px 24px 20px;
      }
      .contact-section {
        padding-top: 140px !important;
      }
      .service-page-section .service-item .services-text p {
        font-size: 16px;
        line-height: 20px;
      }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }  
    .contact-now-box .common-btn {
      margin-left: 10px;
    }   
    .service-list {
      gap: 15px;
    }
    .service-title h4 {
      font-size: 16px;
      line-height: 28px;
    }
   .contact-info p span:first-child {
      width: 18%;
    }
    .about-logo {
      height: 80px;
    }   
     h1 {
      font-size: 52px;
      line-height: 50px;
      margin-bottom: 25px;
    }
     h2 {
      font-size: 40px;
      line-height: 40px;
      margin-bottom: 25px;
    }
    .hero-image {
      padding: 220px 0 150px;
    }
    .cta-content p {
      font-size: 22px;
      line-height: 28px;
    }
    .cta-wrap {
      gap: 40px;
    }
      .cta-content {
        width: calc(46% - 20px);
        margin: 0;
      }
      .cta-img {
        width: calc(50% - 20px);
      }
      .common-btn, .appointment-btn {
        width: 236px;
      }
      .contact-content {
        padding: 30px 30px 40px;
      }
      h2.contact-title {
        margin-bottom: 16px;
        font-size: 40px;
        line-height: 50px;
      }
      .contact-description {
        margin-bottom: 15px;
      }
      .founder-section h2 {
        max-width: 300px;
      }
      .lab-item h4.lab-title {
        font-size: 18px;
        line-height: 27px;
      }
      .lab-item p {
        font-size: 15px;
      }
  }
  @media only screen and (max-width: 1200px){	
    .outer-menu ul li a {
      font-size: 15px;
      line-height: 15px;
    }    
    .contact-now-box .common-btn {
      margin-left: 5px;
    }
    .outer-menu {
      padding: 12px 0;
      height: 80px;
    }
     .hero-image {
      padding: 200px 0 120px;
    }
    h1{
      font-size: 48px;
      line-height: 48px;
      margin-bottom: 20px;
    }
    h2 {
      font-size: 36px;
      line-height: 36px;
      margin-bottom: 20px;
    }
     h3 {
      font-size: 28px;
      line-height: 28px;
    }
    p,
    .blog-details ul li,
    .education-service ul li {
      font-size: 18px;
      line-height: 26px;
    }    
    section,
    .services-section {
      padding: 70px 0;
    }
    .gallery p {
      font-size: 24px;
      line-height: 32px;
    }
       .services-section h3 {
      font-size: 26px;
      line-height: 34px;
    }
    .services-content {
      padding-left: 0;
    }
     .common-btn, .appointment-btn {
        width: 215px;
        height: 48px;
        padding: 14px 15px;
      }
    .services-section p {
      margin-bottom: 20px;
    }
    .service-icon {
      width: 50px;
      height: 50px;
    }
    .service-icon img {
      width: 27px;
      height: auto;
    }
     .service-item span {
        font-size: 24px;
        line-height: 24px;
     }
     img.right-arrow {
      width: 27px;
      height: auto;
     }
    .service-item {
      margin-bottom: 0;
      width: calc(50% - 12px);
    }   
     .service-item span {
      font-size: 21px;
      line-height: 22px;
    }
     .service-icon {
      width: 46px;
      height: 46px;
    }
    .services-content ul {
      gap: 16px;
    }
    .testimonials h2 {
      max-width: 590px;
      margin: 0 0 25px;
    }    
    .testimonials {
      padding-top: 70px;
      padding-bottom: 70px;
    }
    .testimonial-content {
      padding: 15px 15px 25px;
    }
    .testimonials p {
      max-width: 980px;
      margin: 0 0 25px;
    }
    .contact-section {
      padding: 80px 0;
    }
    .contact-title {
      margin-bottom: 20px;
    }    
    .footer {
        padding: 60px 0 20px;
      }  
    .footer h3 {
      font-size: 34px;
      line-height: 34px;
      margin-bottom: 40px;
      max-width: 310px;
    }     
    .about-content {
      gap: 30px;
    }   
    .footer-link,
    .footer-section li a {
      font-size: 18px;
    }
    .form-row {
      gap: 20px;
    }
    .inner-hero-img {
        padding: 90px 0 50px;
    }
    .inner-hero-content h1 {
       font-size: 42px;
       line-height: 46px;
    }
  
      .about-page-content {
        padding-left: 10px;
      }
      .about-page-content p {
        font-size: 16px;
        line-height: 28px;
      }
      .counter-section .stats-grid {
        padding: 40px 0 0;
      }
      .believe-items .believe-item-wrap {
        width: 32.3%;
      } 
      .what-believe {
        padding: 60px 0 80px;
      }
      .believe-item h4 {
        font-size: 22px;
        line-height: 29px;
      }
      .believe-item p {
        font-size: 18px;
        line-height: 22px;
      }
      .believe-item {
        gap: 12px;
      }
      .counter-section .stat-item .stat-number {
        margin-bottom: 20px;
      } 
      .service-list {
        gap: 14px;
      }
      .service-title {
        left: 16px;
        right: 16px;
        bottom: 16px;
      }
      .custom-service-content h3 {
        margin-bottom: 20px;
        font-size: 38px;
        line-height: 42px;
      }
      .service-page-section, .testimonials-page-section {
        padding: 40px 0 80px 0;
      }     
      .contact-info h2 {
          font-size: 38px;
      }
      .gallery-page-section h3 {
      font-size: 32px;
      line-height: 38px;
    }
    .contact-info p span:first-child {
        width: 20%;
      }
     .hero-section h1 {
      font-size: 70px;
      line-height: 70px;
      max-width: 800px;
    }
    .hero-section h1 {
      margin: 0 auto 20px;
    }
    .hero-section p {
      font-size: 20px;
      line-height: 26px;
    }
     .hero-content {
      max-width: 900px;
    }    
    .testimonial-text p {
      font-size: 18px;
      line-height: 24px
    }
    .testimonial-author{
      font-size: 18px;
    }
    .testimonial-location {
      font-size: 16px;
    }
    .contact-content {
       margin-left: 20px;
    }  
      .inner-hero-section {
        padding: 50px 0 0;
      }
      .about-image {
        width: calc(35.8% - 15px);
        height: 280px;
      } 
      .about-text {
        width: calc(64.2% - 15px);
      }
       .testimonials h2 {
        font-size: 60px;
        line-height: 58px;
      }
      .testimonials .section-title {
        margin-bottom: 40px;
        text-align: left;
      }
        .testimonial-content::before {
        width: 90px;
        height: 82px;
        background-size: 40px auto;
      }
        .testimonial-top-content {
          padding:10px 0 10px 110px;
        }
        .testimonial-text {
          margin-top: 20px;
        }
        .vission-mision{
          padding: 70px 0;
        }
        .founder-section h2 {
          max-width: 250px;
        }
        .founder-section h4 {
          font-size: 20px;
          line-height: 28px;
        }
          .vission-icon {
            width: 100px;
            height: 100px;
          }
          .vission-icon img {
            width: auto;
            height: 55px;
          }
           .contact-section {
              padding-top: 140px !important;
            }
            .service-page-section .service-item .services-text {
              padding: 12px 15px 24px;
            }
            .service-page-section h2 {
              font-size: 40px;
              line-height: 32px;
            }
            .section-title,
            .doctor-filter-bar {
              margin-bottom: 30px;
            }
             .doctors-text h4, .doctors-text p {
                font-size: 20px;
              }
              .lab-item {
                width: calc(33.3% - 12px);
              }
  }
    @media only screen and (max-width: 1100px){	
       .believe-items .believe-item-wrap {
          width: 32.2%;
        }
        .believe-item {
          padding: 40px 20px;
        }      
        .custom-service-content h3 {
            margin-bottom: 14px;
            font-size: 34px;
            line-height: 37px;
         }
         .review-content .testimonial-author {
          font-size: 18px;
        }
        .review-content .testimonial-location {
          font-size: 16px;
        }
        .review-content {
          padding: 54px 0;
          background-size: 60px auto;
        }
        .review-content::after {
          background-size: 60px auto;
        }
         .blog-list-item h4 {
          font-size: 20px;
          line-height: 24px;
        }
        .contact-info p span:first-child {
          width: 23%;
        }
        .blog-details-img {
          margin-bottom: 40px;
        }
         .hero-image {
          padding: 170px 0 120px;
        }
          h1{
          font-size: 44px;
          line-height: 46px;
          margin-bottom: 15px;
        }
        h2 {
          font-size: 32px;
          line-height: 38px;
          margin-bottom: 15px;
        }
        .about-logo {
          height: 38px;
        }
          .service-item span {
          font-size: 18px;
          line-height: 18px;
        }
         .cta-content h2 {
            line-height: 36px;
            margin-bottom: 10px;
          }
         .service-icon {
          margin-right: 7px;
        }
        .gallery-carousel-box img {
          height: 400px;
        }
        
        .footer-link, .footer-section li a {
          font-size: 16px;
        }
        .social-icon ul li a {
          width: 42px;
          height: 42px;
        }
         .contact-info {
          width: 400px;
         }
          .contact-content {
            padding: 20px 20px 20px;
            margin-left: 0;
          }
          .ratings li {
            margin: 0 3px 0 0;
          }
            .testimonial-content::before {
              width: 70px;
              height: 62px;
              background-size: 40px auto;
            }
            .testimonial-top-content {
              padding: 10px 0 10px 100px;
            }
            .testimonial-text {
              margin-top: 0;
            }
            .testimonial-text p {
              font-size: 17px;
              line-height: 23px;
            }
            .cta-content {
              width: calc(50% - 20px);
              margin: 0;
            }
       .common-btn, .appointment-btn {
        width: 206px;
        height: 48px;
        padding: 14px 15px;
        font-size: 18px;
      }
      .cta-content p {
        font-size: 20px;
        line-height: 26px;
      }
      .cta-wrap {
        align-items: flex-start;
      }
      
    }
  @media only screen and (max-width: 991px){
    .singleProduct {
    margin: 24px 0px;
}
  
    .is-sticky .outer-menu {
      padding: 12px 0;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 44px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--white-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--white-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
   .gallery-page-section h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #fff;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--text-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	}  
  .hero-image {
    padding: 200px 0 100px;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  section {
    padding: 50px 0;
  }
   h1{
    font-size: 40px;
    line-height: 42px;
  }
  h2 {
    font-size: 30px;
    line-height: 36px;
  }
   .founder-section h2 {
    max-width: 200px;
  }
   .hero-section h1 {
    font-size: 60px;
    line-height: 60px;
    max-width: 800px;
  }
   .hero-section p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .about-content {
    display: block;
  }
    .services-section .col-md-6,
  .portfolio-section .col-lg-5,
  .portfolio-section .col-lg-7,
  .about-page-text .col-md-4,
  .about-page-text .col-md-8 {
    width: 100%;
  }
  .about-text,
  .contact-title,
  .portfolio-content h2 {
    max-width: 100%;
  }
  .services-content {
    padding-top: 30px;
  }
  .cta-img,
  .cta-content {
    width: 100%;
  }  
  .cta-img h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .cta-img p {
    font-size: 18px;
  }
.testimonials p {
    max-width: 580px;
    margin: 0 0 25px;
  }
  .testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact-content {
    margin-left: 0;
    margin-top: 30px;
    padding: 25px 20px 20px;
  }
   .contact-section {
    padding: 60px 0;
  }
  .portfolio-images {
    gap: 10px;
  }
   .gallery-image img {
    width: auto;
    height: 400px;
  }
  .inner-hero-img {
    padding: 80px 0 40px;
  }
   .inner-hero-content h1 {
    font-size: 38px;
    line-height: 40px;
  } 
  .about-page-img img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
  }
   .about-page-content {
    padding-left: 0;
  }
   .counter-section .stat-item .stat-number {
    font-size: 38px;
    line-height: 29px;
  }
    .believe-items .believe-item-wrap {
    width: 48.5%;
  }
  .believe-items {
    justify-content: center;
  }
  .what-believe {
    padding: 50px 0 60px;
  } 
  .service-title h4 {
    font-size: 14px;
    line-height: 26px;
  }
   .custom-services {
    gap: 20px;
  }
  .custom-service-content p {
    color: #373737;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .custom-service-content .common-btn {
    padding: 14px 35px;
    height: 60px;
  }
   .service-page-section, .testimonials-page-section {
    padding: 40px 0 60px 0;
  }
  .menu-logo {
    display: block;
  }  
  .contact-info h2 {
      font-size: 36px;
  }
  .social-icon {
    margin-top: 20px;
  }
  .contact-page-section .contact-title {
    max-width: 100%;
  }
  .review-image {
    width: 60%;
  }
  .blog-list .col-md-4 {
    width: 50%;
  } 
  .align-right {
    margin-bottom: 30px;
    float: none;
  }
  .contact-info p span:first-child {
    width: 12%;
  }
  .gallery-list {
    gap: 10px;
  }  
  .map .col-md-6 {
    width: 100%;
  }
  .map .col-md-6:last-child {
    margin:20px 0 0;
  } 
     .hero-image {
      padding: 150px 0 100px;
    }    
    .about-image, .about-text {
      width: 100%;
    }  
  .about-image {
    margin-bottom: 30px;
  }
  .navbar-brand img {
    height: 50px;
    width: auto;
  }
  .about-logo {
    height: 60px;
  }
   .gallery-image img {
    height: 350px;
  }
 .footer .col-md-3,
 .footer .col-md-2,
 .footer .col-md-4 {
    width: 50%;
  }
   .footer .col-md-3:first-child,
    .footer .col-md-3:nth-child(2) {
      margin-bottom: 20px;
   }
   .inner-hero-section {
      padding: 40px 0 0;
    }
    .service-list-item {
      width: 49%;
    }
    .about-image {
      height: 200px;
    }
    section, .services-section {
      padding: 50px 0;
    }
     .services-section p {
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 22px;
      }
      .services-text {
      padding-top: 20px;
    }
    .testimonials h2 {
      font-size: 50px;
      line-height: 48px;
    }
    .testimonials p {
      font-size: 26px;
      line-height: 34px;
    }
    .testimonial-text p {
      font-size: 17px;
      line-height: 23px;
    }
    .testimonials .section-title {
      margin-bottom: 30px;
      text-align: left;
    }
    .cta-wrap {
      border-radius: 40px;
      gap: 30px;
    }
    .contact-img {
      padding: 30px 32px 30px;
    }
    .contact-info {
      margin-top: 20px;
    }
    .footer {
      padding: 40px 0 10px;
    }
    .main-header {
      backdrop-filter:none;
    }
     .vission-icon {
      width: 80px;
      height: 80px;
    }
    .vission-icon img {
      width: auto;
      height: 50px;
    }
    .vission-mision {
      padding: 50px 0;
    }
    .gallery-list-item {
      width: calc(50% - 5px);
    }
    .service-page-section .service-item {
      width: calc(50% - 16px);
    }
    .section-title {
        margin-bottom: 25px;
      }
      .doctors-image {
        width: 100%;
        height: 200px;
      }
      .doctors-text {
        padding: 15px 10px;
      }
      .doctors-item {
        padding-bottom: 78px;
      }
       .doctors-text h4, .doctors-text p {
          font-size: 18px;
        }
        .lab-item {
          width: calc(50% - 8px);
        }
.education-service .blog-details-img,
.education-service .blog-details {
  width: 100%;
}
.education-service .blog-details-wrap {
  gap: 0;
}
.education-service h3 {
  margin-bottom: 15px;
}

}
@media (min-width: 768px) and (max-width: 1024px) {
  .checkout_coupon button.button {
    width: 100% !important;
 }
  .page-id-204 button.woocommerce-button.button.woocommerce-form-login__submit

 {
    
    width: 100% !important;
 }
  .course-content p {
  
    font-size: 18px !important;
}
  .my-courses-wrapper {
   
    grid-template-columns: repeat(2, 1fr);
   
}
   
   .course-content h4{
    font-size: 18px;
  }
  .view-btn, .view-order-btn {

    padding: 5px 15px;
  }
}
@media only screen and (max-width: 767px){
	.blog-details.ourProdet {
    width: 100%;
}
.blog-details-img.ourImage {
   width: 100%;
}
	 .service-item.homserv {
        flex: 0 0 100%;
    }
  
  .checkout_coupon button.button {
    width: 100% !important;
 }
   .page-id-204 button.woocommerce-button.button.woocommerce-form-login__submit

 {
    
    width: 100% !important;
 }
 .checkout_coupon button.button {
    width: 100%;
 }
  .course-content h4 {
    min-height: 46px;
}
  .my-courses-wrapper {
   
    grid-template-columns: repeat(1, 1fr);
  }
  .course-content h4{
    font-size: 18px;
  }

  .singleProduct {
    margin: 24px 0px;
}
  .outer-menu {
    padding: 12px 20px;
    height: 68px;
  }
  .hero-image {
    padding: 150px 0 70px;
  }
  p, .hero-section p, .blog-details ul li, .education-service ul li {
    font-size: 16px;
    line-height: 24px;
  }
  h1{
    font-size: 36px;
    line-height: 38px;
  }
  .hero-section h1 {
    margin-bottom: 15px;
    font-size: 50px;
    line-height: 50px;
  } 
  
  .footer-brand-logo {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 300px;
  }
 .hero-section {
    padding: 0;
  }
   .hero-image {
    padding: 100px 0 50px;
    border-radius: 0;
  } 
   .gallery-image img {
    width: auto;
    height: 350px;
  }
   .inner-hero-img {
    padding: 70px 0 30px;
    margin: 0 10px;
  } 
  .counter-section .stats-grid {
    flex-wrap: wrap;
  }
  .counter-section .stat-item {
    width: calc(33.33% - 22px);
    text-align: center;
    margin-bottom: 20px;
  }
    .believe-item {
    padding: 36px 15px;
  }
    .believe-item h4 {
    font-size: 19px;
    line-height: 25px;
  }
   .believe-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .counter-section .stat-label {
  max-width: 100%;
}
  .inner-hero-content h1 {
    font-size: 34px;
    line-height: 38px;
  }
  .service-list-item {
    width: 48%;
  }
   .custom-service-content h3 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 27px;
  }
   .founder-section h4 {
    font-size: 18px;
    line-height: 25px;
  }
  .contact-info h2 {
      font-size: 30px;
  }
  .review-image {
    width: 80%;
  }
  .blog-list-item {
    margin-bottom: 0;
   }
   .blog-details h6 {
    font-size: 20px;
    line-height: 24px;
  }
  .footer-copyright {
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 15px; 
  }   
  .testimonial-slider .slick-prev, .testimonial-slider .slick-next {
    top: -46px;
  }
  .map iframe {
    height: 280px !important;
  }
  .blog-details-img {
  border-radius: 30px;
  margin-bottom: 30px;
}
.navbar-brand {
  max-width: 175px;
}
.contact-contact-info  {
  margin: 0;
}
 .contact-contact-info .contact-info p span:first-child {
    width: 15%;
  }
   .cta-img h2 {
    font-size: 36px;
    line-height: 36px;
  }
 
   section {
    padding: 40px 0;
  }
    .contact-section {
    padding: 40px 0;
  }
  .footer-copyright {
    margin-top: 30px;
  }
  .footer-link, .footer-section li a {
    font-size: 16px;
  }
  .service-item {
    width: 100%;
  }
  .testimonials h2 {
    font-size: 40px;
    line-height: 38px;
  }
  .testimonial-slider .slick-next {
    display: none !important;
  }
  .vission-mision-item {
    width: 100%;
  }
  .founder-section p {
    padding-top: 60px;
    padding-left: 50px;
    margin-bottom: 15px;
    background-size: 60px auto;
  }
  .contact-section {
  padding-top: 90px !important;
}
.service-page-section .service-item .services-text {
  padding: 12px 10px 15px;
}
.service-page-section .service-item .services-text h4 {
  font-size: 18px;
  line-height: 20px;
}
.service-page-section h2 {
  font-size: 36px;
  line-height: 32px;
}
.service-page-section p {
  margin-bottom: 20px;
}
 .section-title,
 .doctor-filter-bar {
    margin-bottom: 20px;
  }
   .doctors-item {
    width: calc(50% - 8px);
  }
   h3 {
    font-size: 24px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 600px){   
  .hero-image {
    padding: 80px 0 30px;
    border-radius: 0;
  }
    .hero-section h1 {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 40px;
  }
 .services-section h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .form-input,
  .phone-number,
  .dropdown-input{
    padding: 12px 16px;
    font-size: 16px;
  }
  .testimonial-slider .slick-prev, .testimonial-slider .slick-next {
    top: auto;
    bottom: -55px;
  }
   h1, h2 {
    font-size: 30px;
    line-height: 35px;
  }
  h2.contact-title {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 30px;
  }
  .form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content select, .contact-content textarea {
    height: 50px;
  }
  .contact-content .common-btn {
    height: 60px;
    font-size: 20px;
    padding: 13px 40px;
  } 
  
   .believe-items .believe-item-wrap {
    width: 48.1%;
  }
  .custom-service-content {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.custom-services {
  display: block;
}
.custom-service-image img,
.service-list-item {
  width: 100%;
}
 .service-page-section, .testimonials-page-section {
    padding: 40px 0 50px 0;
  }
  .review-list-item {
    display: block;
    padding: 24px 24px 24px 24px;
  }
  .review-image {
    width: 100%;
    margin-bottom: 25px;
  }
  .review-content {
    width: 100%;
  }
  .blog-list .col-md-4 {
    width: 100%;
  } 
  .contact-info p span:first-child {
  width: 15%;
}
.form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content textarea,
.contact-content select {
  font-size: 16px !important;
}
.gallery-list {
    gap: 7px;
  } 
  .contact-contact-info {
    padding: 30px 15px;
  }
   .contact-contact-info .contact-info p span:first-child {
    width: 17%;
  }
  .social-icon ul li a {
  width: 40px;
  height: 40px;
  }
   .gallery-image img {
    width: auto;
    height: 300px;
  } 
  .contact-content .submit-btn {
    font-size: 20px;
    padding: 15px 40px;
    }
    
    .is-sticky .outer-menu {
      height: 60px;
      padding: 8px 0;
    }
    .is-sticky {
      height: 60px !important;
    }
    .cta-img img {
    border-radius: 20px;
  }
  .service-page-section .service-item,
   .lab-item {
    width: 100%;
  }
}
@media only screen and (max-width: 500px){
   
   .hero-section h1 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 34px;
  }
   h1, h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
   }
   p, .hero-section p, .blog-details ul li, .education-service ul li {
    font-size: 15px;
    line-height: 24px;
  }
  .gallery p, .blog-list-item h4  {
    font-size: 16px;
    line-height: 26px;
  } 
.about-img {
  border-radius: 20px;
}
    .cta-img h2 {
    font-size: 24px;
    line-height: 26px;
  }
    .cta-img p {
    font-size: 14px;
    line-height: 18px;
  }
   p, .hero-section p, .blog-details ul li, .education-service ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-description {
    margin-bottom: 20px;
  }
  .form-row {
    display: block;
  }
  .form-group {
    margin-bottom: 15px;
  }
   .contact-content .submit-btn {
    margin-top: 0;
  }
   .contact-section,
   .blog-details-section,
   .map {
    padding-bottom: 40px;
  }
  .form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content select, .contact-content textarea {
    padding: 13px 16px !important;
  }
   .footer h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
    max-width: 236px;
  }
  .footer-link,
  .footer-section li a {
    font-size: 16px;
  }
  .contact-form,
  .contact-content form {
    gap: 0;
  }
  .contact-content .submit-btn {
    padding: 15px 40px;
    font-size: 18px;
  }
 
    .inner-hero-content h1 {
    font-size: 32px;
    line-height: 36px;
  }
   .believe-items .believe-item-wrap {
    width: 100%;
  }
  .contact-info h2 {
      font-size: 26px;
  }
  .review-content .testimonial-author,
   .review-content .testimonial-location,
   .date {
    font-size: 14px;
  }
  .align-right {
    margin-bottom: 20px;
    float: none;
  }
  .blog-details h6 {
    font-size: 16px;
    line-height: 20px;
  }
  .hero-content .common-btn {
    font-size: 14px;
  }
   .contact-info p span:first-child {
    width: 20%;
  }
  .form-input, .contact-content input[type="text"], .contact-content input[type="email"], .contact-content input[type="tel"], .contact-content textarea,
  .contact-content select {
  font-size: 14px !important;
}
.gallery-list {
  column-count: 1;
}
.blog-details-img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.outer-menu {
    padding: 6px 0;
    height: 54px;
  }
    .navbar-brand img {
    height: 40px;
    width: auto;
  }
   .contact-contact-info .contact-info p span:first-child {
    width: 21%;
  }
   .footer .col-md-3,
   .gallery-list-item {
    width: 100%;
  }
  .footer-logo {
    text-align: left;
    margin-top: 20px;
    }
    .footer-logo img {
  margin-left: 0;
  margin-bottom: 20px;
}
 
  .service-item {
    width: 100%;
  }
    .gallery-image img {
    width: auto;
    height: 250px;
    border-radius: 24px;
  }
    .portfolio-content h2 {
    margin-bottom: 10px;
  }
    .cta-img h2 {
    font-size: 30px;
    line-height: 30px;
  }
  
    .inner-hero-section {
      padding: 30px 0 0;
    }
    .contact-info {
    width: auto;
  }
   .contact-img {
    padding: 30px 15px 30px;
  }
  .contact-info p {
  display: flex;
  font-size: 14px;
  line-height: 26px;
  }
  .cta-img img {
    border-radius: 20px;
  }
  .common-btn, .appointment-btn {
    width: auto;
    height: 48px;
    padding: 14px 20px;
    font-size: 16px;
  }
   .testimonials h2 {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 15px;
  }
  .testimonials p {
    font-size: 20px;
    line-height: 24px;
  }
   .testimonial-text p {
    font-size: 17px;
    line-height: 23px;
  }
  .testimonial-content {
    border: 30px;
  }
   .cta-content h2 {
    line-height: 30px;
    margin-bottom: 10px;
  }
   .cta-wrap {
    padding: 24px 15px 24px 15px;
  }
   .cta-content p {
    font-size: 16px;
    line-height: 22px;
  }
  .cta-content .common-btn {
    margin-right: 5px;
  }
   .common-btn, .appointment-btn {
    font-size: 14px;
    padding: 12px 15px;
  }
  .footer-logo img {
    width: auto;
    height: 80px;
  }  
   .founder-section h4 {
    font-size: 16px;
    line-height: 25px;
  }
   .inner-hero-content h1::after {
    height: 8px;
  }
  .inner-hero-content h1 {
    padding-bottom: 20px;
  }
  .founder-section p {
    padding-left: 15px;
  }
  .contact-section {
    padding-top: 80px !important;
  }
    .doctors-item {
    width: 100%;
  }
    .doctors-image {
    width: 100%;
    height: 300px;
  }
    .doctors-item {
    padding-bottom: 74px;
  }
  .filter-label {
  font-size: 16px;
  line-height: 18px;
  }
  .filter-select {
    font-size: 14px;
  line-height: 17px;
  border-radius: 12px;
  padding: 15px 14px;
  height: 45px;
  }
  .doctor-filter-bar {
    gap: 8px;
  }
}
@media only screen and (max-width: 400px){
   .service-item span {
    font-size: 18px;
    line-height: 20px;
  }
   img.right-arrow {
    width: 20px;
    height: auto;
  }
   .service-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .service-icon img {
    width: 21px;
    height: auto;
  }
  .portfolio-img-box-2 {
      width: calc(30% - 10px);
  }
  .portfolio-img-2 figure {
    margin-bottom: 10px;
  }
  .gallery-image img {
    width: auto;
    height: 320px;
  }
  
  .inner-hero-content h1 {
    font-size: 28px;
    line-height: 28px;
  }
    .custom-service-content h3 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 27px;
  }
   .custom-service-content .common-btn {
    padding: 14px 22px;
    height: 55px;
    font-size: 16px;
  }
   .inner-hero-img {
    padding: 60px 0 30px;
  }
   .contact-info p span:first-child {
    width: 100%;
    display: block;
  }
  .contact-info p {
    display: block;
  }
  .contact-info p span:last-child {
    width: 83%;
    padding-left: 0;
    display: block;
  }
   .hero-section h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 32px;
  }
  .common-btn, .appointment-btn {
    font-size: 14px;
    padding: 12px 18px;
  }
 
    .about-image {
    height: 120px;
  }
  .services-image img {
    border-radius: 8px;
  }
   .services-section h3 {
    font-size: 22px;
    line-height: 22px;
  }
   .services-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
  }
  .testimonials h2 {
    font-size: 30px;
    line-height: 32px;
  }
   h2.contact-title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 28px;
  }
  .contact-content {
    padding: 25px 15px 20px;
  }
  .doctor-filter-bar {
    flex-wrap: wrap;
  }
   .filter-label {
    width: 100%;
  }
   .service-page-section h2 {
    font-size: 31px;
    line-height: 30px;
  }
}