@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Spartan:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Fonts */
:root {
  --default-font: "Open Sans", sans-serif;
  --heading-font: "Open Sans", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #555555;
  --accent-color: #113163;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #444444;
  /* The default color of the main navmenu links */
  --nav-hover-color: #113163;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #113163;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7fcfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #113163;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--accent-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
}

.header .topbar a {
  color: #ffffff;
  padding: 0 10px;
  font-size: 14px;
}

.header .topbar .ddpu-tb-sub-sec-one a:first-child {
  border-right: 1px solid #fff;
}

.ddpu-tb-sub-sec-two a:hover .fa-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ddpu-tb-sub-sec-two a:hover .fa-youtube {
  color: #FF0000;
}

.ddpu-tb-sub-sec-two a:hover .fa-whatsapp {
  color: #25D366;
}

.ddpu-tb-sub-sec-two a:hover .fa-facebook-f {
  color: #1877F2;
}

.header .topbar i {
  font-size: 16px;
}

.ddpu-tb-sub-sec-two a {
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.ddpu-tb-sub-sec-two a:hover {
  background-color: #fff;
  color: #000;
  /* change as per theme */
}

.ddpu-tb-sub-sec-two a i {
  font-size: 14px !important;
  line-height: 1;
}


.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -78%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -78%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #1e5dab;
  background-color: #fff;
  font-size: 16px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
}

.footer .footer-about .logo {
  line-height: 1;
}

.footer .footer-about .logo img {
  max-height: 65px;
  /*filter: brightness(0) invert(1);*/
}

.footer .footer-about .logo span {
  color: #1e5dab;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
  color: #1e5dab;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e5dab;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #1e5dab;
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: white;
}

.footer .social-links a:hover .fa-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer .social-links a:hover .fa-youtube {
  color: #FF0000;
}

.footer .social-links a:hover .fa-whatsapp {
  color: #25D366;
}

.footer .social-links a:hover .fa-facebook-f {
  color: #1877F2;
}


.footer h4 {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #1e5dab;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 16px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1.6;
  color: #1e5dab;
}

.footer .footer-links ul a:hover {
  color: #113163;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 10px 0;
  border-top: 1px solid #1e5dab;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  font-size: 16px;
}

.copyright .credits {
  text-align: end;
}

.copyright .copyright-para {
  font-size: 16px;
}

.copyright .credits a {
  color: #1e5dab;
}

.footer-links h4 {
  color: #1e5dab;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  /* margin-bottom: 15px; */
  color: #1e5dab;
  line-height: 1.6;
}

.footer-contact-info i {
  font-size: 18px;
  margin-right: 10px;
  color: #1e5dab;
  width: 22px;
  text-align: center;
}

.footer-contact-info span {
  font-weight: 600;
  display: inline-block;
  /* margin-bottom: 3px; */
}

.footer-contact-info a {
  color: #1e5dab;
  text-decoration: none;
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

.footer-contact-info li {
  display: block !important;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  /* padding-bottom: 20px; */
  position: relative;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Breadcrumb Section
--------------------------------------------------------------*/
.ddpu-breadcrumb-sec {
  position: relative;
  background: url(../img/bg/ddpu-breadcrumb-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  padding: 120px 0 60px;
  z-index: 1;
}

.ddpu-breadcrumb-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 49, 99, 0.7);
  z-index: -1;
}

.ddpu-breadcrumb-sec h1 {
  /*color: #FFA000;*/
  color: #fff;
  text-transform: capitalize;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

.ddpu-breadcrumb-sec .bread-list {
  border-radius: 3px;
  background: transparent;
  display: inline-block;
  margin-left: 0px;
  margin-bottom: 0;
  padding-left: 0;
}

.ddpu-breadcrumb-sec ul li {
  display: inline-block;
  position: relative;
}

.ddpu-breadcrumb-sec ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.ddpu-breadcrumb-sec ul li i {
  margin: 0px 5px;
  font-size: 12px;
}

.ddpu-breadcrumb-sec ul li.active a {
  color: #FFA000;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
}

.hero .carousel-container {
  position: absolute;
  bottom: 60px;
  left: 90px;
  right: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
}

.ddpu-home-banner-cont {
  background: #113163;
  padding: 20px;
  border-radius: 6px;
  width: 50%;
  color: #fff;
}

@media (max-width: 1024px) {
  .hero .carousel-container {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .ddpu-home-banner-cont {
    width: 70%;
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .hero .carousel-container {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .ddpu-home-banner-cont {
    width: 85%;
  }
  
  .contact-us-cea-sec .con-cea-img-sec {
      margin: 0 auto;
  }
  
  .con-cea-cont-sec {
      text-align: center;
  }
  
  .footer .copyright p {
      text-align: center;
  }
  
  .pricingTable {
    padding: 25px 10px 60px !important;
}

.mp-one-content-para-sec h4 {
    margin-top: 12px;
}

.dentists-title-sec h2,
.psaso-title-sec h2,
.for-non-members-title-sec h2,
.what-is-ddpu-one-content-sec h4,
.our-exp-title-sec h2,
.membership-benefits-custom-title-sec h2 {
    padding-top: 20px;
}

.membership-benefits-points-subrow {
    margin-top: 0 !important;
}

.contact-us-form-title-sec h2 {
    text-align: center;
}

.contact-us-form-title-sec h2:after {
    margin: 0 auto;
}

.what-is-ddpu-one-content-second-sec {
    padding-top: 0 !important;
}

.staff-personnel-team-sec .col-xl-3 {
    margin-top: 20px;
}

.general-practice-content-sub-one-sec .gpcso-para-sec h3 {
    margin-top: 12px !important;
}

.general-practice-content-sec {
    margin-top: 16px;
}

.gpcso-para-mh-sec p {
    min-height: auto !important;
}
  
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 125px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* .hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */



/* == */

.hero h2 {
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 700;
  animation: fadeInDown 1.5s both;
  text-transform: uppercase;
  color: #ffffff;
}

.hero .btn-dark {
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 20px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    /* max-width: 60%; */
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 24px;
  line-height: 0;
  background: color-mix(in srgb, #113163, transparent 75%);
  /* background: color-mix(in srgb, var(--default-color), transparent 90%); */
  border-radius: 5px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 6%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 34px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 34px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.why-choose-ddpu-sec {
  padding: 60px 0;
  position: relative;
  background: #f8f9f9;
  z-index: 1;
  overflow: hidden;
}

.why-choose-ddpu-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/bg-1.jpg);
  background-size: contain;
  /*background-repeat: no-repeat;*/
  background-position: center center;
  opacity: 0.5;
  z-index: -1;
}

.why-choose-ddpu-sec .row {
  justify-content: center;
}

.why-choose-ddpu-sec .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.why-choose-ddpu-sec .service-item:hover .icon img {
  transform: rotateY(360deg);
}

.why-choose-ddpu-sec .service-item .icon img {
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.why-choose-ddpu-sec .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.why-choose-ddpu-sec .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.why-choose-ddpu-sec .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.why-choose-ddpu-sec .service-item p {
  line-height: 24px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
  text-transform: capitalize;
}

.why-choose-ddpu-sec .service-item .icon img {
  width: 50px;
}

.why-choose-ddpu-sec .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.why-choose-ddpu-sec .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  overflow: hidden;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 6px;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

@keyframes floatDown {
  0% {
    transform: translateY(-15px);
    opacity: 0.2;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(-15px);
    opacity: 0.2;
  }
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  bottom: 22%;
  right: 20px;
  width: 60px;
  height: 60px;
  background: url('../img/icon/quotes-icon.png') no-repeat center / contain;
  opacity: 0.2;
  z-index: 1;
  animation: floatDown 4s ease-in-out infinite;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 130px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  /* margin: 10px 0 5px 45px; */
  text-align: center;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000;
  /* margin: 0 0 0 45px; */
  text-align: center;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 32px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  position: relative;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #000;
  min-height: 325px;
  /*border-bottom: 2px solid #040A191A;*/
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.doctors .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.doctors .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.doctors .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.doctors .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.doctors .team-member .member-info {
  padding: 25px 15px;
}

.doctors .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.doctors .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.doctors .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 34px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-2 {
  padding: 60px 0;
}

.about-2 .about-img {
  position: relative;
  margin: 0;
}

.about-2 .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/home/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-2 .about-img img {
  position: relative;
  z-index: 2;
}

.ddpu-about-us-tab-sec .nav-link img {
  width: 35px;
  margin-right: 5px;
}

@media (max-width: 575px) {
    #progressWrapper {
      display: none !important;
  }
  
  #step2Box .col-4,
  #step3Box .col-4,
  #step4Box .col-4,
  #step5Box .col-4,
  #step6Box .col-4,
  #step7Box .col-4 {
      width: 100%;
      margin-top: 15px;
  }
    
  .about-2 .about-img {
    margin: 30px 0 0 30px;
  }

  .about-2 .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about-2 h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-2 h3 {
    font-size: 28px;
  }

  .about-2 .nav-pills li {
    width: 100%;
  }
}

.about-2 .nav-pills {
  /* border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%); */
  border-bottom: 3px solid #113163;
}

.about-2 .nav-pills li+li {
  margin-left: 0;
}

.about-2 .ddpu-about-us-tab-sec .nav-link.active {
  background-color: #113163;
  color: #ffffff;
}

.ddpu-about-us-tab-sec .nav-link.active img {
  filter: brightness(0) invert(1);
}

.about-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 600;
  color: #113163;
  padding: 15px 8px;
  margin-bottom: -2px;
  border-radius: 0;
}

.about-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about-2 .nav-link {
    font-size: 16px;
  }
}

.about-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.ddpu-about-us-ta-pe p {
  font-size: 18px;
}

.about-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/* ========= */
.btn {
  color: #113163;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 8px 15px;
  border-radius: 0;
  border: 1px solid #113163;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-out 0.0s;
}

.btn:hover,
.btn:focus {
  color: #fff;
}

.btn:before,
.btn:after,
.btn span:before,
.btn span:after {
  content: "";
  background-color: #113163;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  z-index: -1;
  transition: all 0.4s ease 0s;
}

.btn:after,
.btn span:before {
  left: auto;
  right: 0;
}

.btn span:before,
.btn span:after {
  transition-delay: 0.4s;
}

.btn:hover:before,
.btn:hover:after,
.btn:hover span:before,
.btn:hover span:after {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 30px;
  }
}

/* ========= */
.btn-dark {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 0;
  border: 1px solid #ffffff;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-out 0.0s;
}

.btn-dark:hover,
.btn-dark:focus {
  color: #fff;
}

.btn-dark:before,
.btn-dark:after,
.btn-dark span:before,
.btn-dark span:after {
  content: "";
  background-color: #FFA000;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  z-index: -1;
  transition: all 0.4s ease 0s;
}

.btn-dark:after,
.btn-dark span:before {
  left: auto;
  right: 0;
}

.btn-dark span:before,
.btn-dark span:after {
  transition-delay: 0.4s;
}

.btn-dark:hover:before,
.btn-dark:hover:after,
.btn-dark:hover span:before,
.btn-dark:hover span:after {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .btn-dark {
    margin-bottom: 30px;
  }
}


/* ========= */
.btn-blue {
  color: #113163;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 0;
  border: 1px solid #113163;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-out 0.0s;
}

.btn-blue:hover,
.btn-blue:focus {
  color: #fff;
  border: 1px solid #FFA000;
}

.btn-blue:before,
.btn-blue:after,
.btn-blue span:before,
.btn-blue span:after {
  content: "";
  background-color: #FFA000;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  z-index: -1;
  transition: all 0.4s ease 0s;
}

.btn-blue:after,
.btn-blue span:before {
  left: auto;
  right: 0;
}

.btn-blue span:before,
.btn-blue span:after {
  transition-delay: 0.4s;
}

.btn-blue:hover:before,
.btn-blue:hover:after,
.btn-blue:hover span:before,
.btn-blue:hover span:after {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .btn-blue {
    margin-bottom: 30px;
  }
}

/* ============ */
.join-membership-sec {
  position: relative;
  padding: 100px 0;
  background-image: url(../img/bg/join-membership-banner-img.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 1;
}

.join-membership-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 49, 99, 0.7);
  z-index: -1;
}

.join-membership-sec .row {
  align-items: center;
}

.join-membership-btn-sec {
  text-align: end;
}

.join-membership-content-sec h3 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
}

.join-membership-content-sec p {
  color: #ffffff;
  margin-bottom: 0;
}

.join-membership-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
}

.join-membership-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ffffff;
  left: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .footer .footer-top {
    padding: 30px 15px;
  }

  .footer .copyright {
    padding: 10px 15px;
  }

  .copyright .credits {
    text-align: center;
  }

  .footer-links h4 {
    margin-bottom: 0;
  }

  .footer .footer-links {
    margin-bottom: 0;
  }

  .join-membership-content-sec {
    margin-bottom: 20px;
  }

  .join-membership-btn-sec {
    text-align: center;
  }

  .join-membership-title {
    text-align: center;
  }

  .join-membership-title:after {
    right: 0;
  }

  .join-membership-content-sec p {
    text-align: center;
  }

  .testimonials {
    padding: 50px 0;
  }

  .why-choose-ddpu-sec {
    padding: 50px 0;
  }

  .why-choose-ddpu-sec::before {
    background-size: cover;
    opacity: 0.3;
  }

  .about-2 {
    padding: 50px 0;
  }

  .ddpu-home-banner-cont .btn-dark {
    margin-bottom: 0;
  }

  .hero .carousel {
    min-height: calc(100vh - 160px);
  }

  .aim-member-unique-sec .about-img {
    margin-bottom: 20px !important;
  }

  .vision-mission-content-sub-one-sec .vmcs-img-sec {
    margin-bottom: 12px;
  }

  .aim-member-unique-sec {
    padding: 50px 0 30px !important;
  }

  .aim-member-unique-sec .about-img img {
    height: 100% !important;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    display: block;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
  }
  
  .staff-personnel-team-sec .spt-card .spt-image img {
      height: auto !important;
  }
}

.why-choose-ddpu-btn-sec {
  margin-top: 20px;
  text-align: center;
}

/* ============ */
.aim-member-unique-sec {
  padding: 60px 0 60px;
}

.vision-mission-content-sub-one-sec {
  border: 1px solid #113163;
  padding: 15px 10px;
  margin-bottom: 20px;
}

.vision-mission-content-sub-one-sec .row {
  align-items: center;
}

.vision-mission-content-sub-one-sec .vmcs-img-sec {
  background: #113163;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 75px;
  border-radius: 50%;
}

.vision-mission-content-sub-one-sec .vmcs-img-sec img {
  width: 55px;
  padding: 5px;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  filter: brightness(0) invert(1);
}

.vision-mission-content-sub-one-sec:hover .vmcs-img-sec img {
  transform: rotateY(360deg);
}

.vision-mission-content-sub-one-sec .vmcs-para-sec h3 {
  font-size: 19px;
  font-weight: 600;
  color: #113163;
  text-transform: capitalize;
  margin-bottom: 12px;
  margin-top: 0;
}

.vision-mission-content-sub-one-sec .vmcs-para-sec p {
  color: #000000;
  margin-bottom: 0;
}

.aim-member-unique-sec .about-img {
  position: relative;
  margin: 0;
}

.aim-member-unique-sec .about-img:before {
  position: absolute;
  inset: -40px 0 0 -40px;
  content: "";
  background: url("../img/home/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.aim-member-unique-sec .about-img img {
  position: relative;
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 528px;
}

.mp-one-content-sec img {
    width: 100%;
}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .staff-personnel-team-sec .spt-card .spt-image img {
        height: 245px !important;
    }
    
    .general-practice-one-img-sec {
        margin-bottom: 20px;
    }
    
    .testi-one-card-sec .to-lower-sec p {
        min-height: 200px;
    }
    
  .hero .carousel {
    min-height: calc(100vh - 125px);
  }
  
  .aim-member-unique-sec .about-img {
      margin-bottom: 20px;
  }

  .hero h2 {
    font-size: 40px;
  }

  .vision-mission-content-sub-one-sec .vmcs-img-sec {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }

  .vision-mission-content-sub-one-sec .vmcs-img-sec img {
    width: 40px;
  }

  .aim-member-unique-sec .about-img img {
    height: auto;
  }

  .why-choose-ddpu-sec::before {
    background-position: center top;
    background-size: cover;
  }

  .testimonials .testimonial-item p {
    min-height: auto;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    display: block;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  .hero .carousel {
    min-height: calc(100vh - 150px);
  }

  .hero h2 {
    font-size: 40px;
  }

  .vision-mission-content-sub-one-sec .vmcs-img-sec {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }

  .vision-mission-content-sub-one-sec .vmcs-img-sec img {
    width: 40px;
  }

  .aim-member-unique-sec .about-img img {
    height: 530px;
  }

  .why-choose-ddpu-sec::before {
    background-position: center top;
    background-size: cover;
  }

  .testimonials .testimonial-item p {
    min-height: auto;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    display: block;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
  }
}


/* ========= */
.footer-links .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-links .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: #1e5dab;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-links .contact-item .contact-icon i {
  color: #fff;
  font-size: 16px;
}

.footer-links .contact-item .contact-info p {
  margin: 0;
  color: #1e5dab;
  font-size: 16px;
  line-height: 1.5;
}

.footer-links .contact-item .contact-info p a {
  color: #1e5dab;
}

/* ========= What Is DDPU ========== */
.what-is-ddpu-one-sec {
  padding: 60px 0;
}

.what-is-ddpu-one-sec .image-section .main-image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.what-is-ddpu-one-sec .image-section .main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.what-is-ddpu-one-sec .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.what-is-ddpu-one-sec .image-section .image-grid .grid-item {
  border-radius: 6px;
  overflow: hidden;
}

.what-is-ddpu-one-sec .image-section .image-grid .grid-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.what-is-ddpu-one-sec .image-section .image-grid .grid-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .what-is-ddpu-one-sec .image-section .main-image img {
    height: 300px;
  }

  .what-is-ddpu-one-sec .image-section .image-grid .grid-item img {
    height: 150px;
  }
}

/* === */

.what-is-ddpu-one-title-sec {
  position: relative;
  /* padding-bottom: 20px; */
}

.what-is-ddpu-one-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.what-is-ddpu-one-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.what-is-ddpu-one-content-sec h4 {
  font-size: 26px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 12px;
}

.what-is-ddpu-one-content-sec p {
  color: #000000;
}

.what-is-ddpu-one-content-second-sec {
  padding-top: 50px;
}

.what-is-ddpu-one-content-second-sec h4 {
  font-size: 26px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 12px;
}

.what-is-ddpu-one-content-second-sec p {
  color: #000000;
}

.what-is-ddpu-one-content-second-sec p:last-child {
  margin-bottom: 0;
}

/* ============ Staff Personnel ===================== */
.staff-personnel-team-sec {
  padding: 60px 0;
}

.staff-personnel-team-sec .row {
  justify-content: center;
}

.staff-personnel-team-sec .spt-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #113163;
  transition: all 0.3s ease;
  height: 100%;
}

.staff-personnel-team-sec .spt-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.staff-personnel-team-sec .spt-card .spt-image {
  position: relative;
  overflow: hidden;
}

.staff-personnel-team-sec .spt-card .spt-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.staff-personnel-team-sec .spt-card .spt-image .spt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 49, 99, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.staff-personnel-team-sec .spt-card .spt-image .spt-social {
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.staff-personnel-team-sec .spt-card .spt-image .spt-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.staff-personnel-team-sec .spt-card .spt-image .spt-social .social-link:hover {
  background: #00A79D;
  color: var(--contrast-color);
  transform: scale(1.1);
}

.staff-personnel-team-sec .spt-card .spt-image .spt-social .social-link i {
  font-size: 18px;
}

.staff-personnel-team-sec .spt-card .spt-image:hover .spt-overlay {
  opacity: 1;
}

.staff-personnel-team-sec .spt-card .spt-image:hover .spt-social {
  transform: translateY(0);
}

.staff-personnel-team-sec .spt-card .spt-image:hover img {
  transform: scale(1.1);
}

.staff-personnel-team-sec .spt-card .spt-content {
  padding: 15px;
  text-align: center;
}

.staff-personnel-team-sec .spt-card .spt-content .spt-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.staff-personnel-team-sec .spt-card .spt-content .spt-specialty {
  font-size: 14px;
  color: #000;
  font-family: var(--heading-font);
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .staff-personnel-team-sec .spt-card .spt-content {
    padding: 25px 20px;
  }

  .staff-personnel-team-sec .spt-card .spt-content .spt-name {
    font-size: 20px;
  }

  .staff-personnel-team-sec .spt-card .spt-content .spt-specialty {
    font-size: 15px;
  }

  .staff-personnel-team-sec .spt-card .spt-content .doctor-bio {
    font-size: 13px;
  }
}


/* ================= Our Experience ====================== */
.our-exp-title-sec {
  position: relative;
}

.our-exp-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.our-exp-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.our-exp-content-sec p {
  color: #000000;
}

.our-exp-title-sec p {
  font-weight: bold;
  color: #02746D;
  text-transform: capitalize;
  font-size: 18px;
}

.ddpu-listing-one {
  list-style: none;
  padding-left: 15px;
  margin: 0;
}

.ddpu-listing-one li {
  color: #000000;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.ddpu-listing-one li::marker {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #113163;
  font-size: 14px;
}
.ddpu-listing-one li::before {
    content: none !important;
}


/* ===============  ===================== */
.some-of-our-past-cases-one-sec {
  padding: 60px 0;
}

.some-of-our-past-cases-two-sec {
  padding: 60px 0;
  position: relative;
  background: #f8f9f9;
  z-index: 1;
  overflow: hidden;
}

.some-of-our-past-cases-two-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/bg-2.jpg);
  background-size: cover;
  /*background-repeat: no-repeat;*/
  background-position: center center;
  opacity: 0.2;
  z-index: -1;
}

.ddpu-listing-two {
  list-style: none;
  padding-left: 15px;
  margin: 0;
}

.ddpu-listing-two li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.ddpu-listing-two li a {
  color: #000000;
}

.ddpu-listing-two li::marker {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #0077a6;
  font-size: 14px;
}

/* ============ Our Method =================== */
.our-method-one-sec {
  padding: 60px 0;
}

.our-method-one-sec p {
  color: #000000;
  margin-bottom: 0;
}

.our-method-one-sec .row {
  align-items: center;
}

.our-method-one-img-sec img {
  border-radius: 6px;
}

.some-of-our-past-cases-one-sec {
  padding: 60px 0;
}

.our-method-two-sec {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.our-method-two-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/bg-3.jpg);
  background-size: cover;
  /*background-repeat: no-repeat;*/
  background-position: center bottom;
  opacity: 0.5;
  z-index: -1;
}

.our-method-two-col-sec {
  border: 1px solid #113163;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.our-method-two-col-sec .row {
  align-items: center;
}

.our-method-img-title-sec {
  text-align: center;
}

.our-method-img-title-sec img {
  width: 55px;
}

.omit-img-sec {
  border: 1px solid #113163;
  display: inline-block;
  padding: 6px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.our-method-img-title-sec h3 {
  font-size: 26px;
  font-weight: 700;
  color: #113163;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0
}

.our-method-two-para-sec p {
  color: #000000;
}

.our-method-two-para-sec p:last-child {
  margin-bottom: 0;
}


/* ================= Testimonials =================== */
.testimonial-one-sec {
  padding: 60px 0;
}

.testi-one-card-sec .to-upper-sec img {
  width: 110px !important;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
  border: 1px solid #113163;
}

.testi-one-card-sec {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  color: #000;
  margin-bottom: 24px;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: 0.3s;
  /* min-height: 340px; */
}

.testi-one-card-sec .to-upper-sec h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 12px;
}

.testi-one-card-sec .to-lower-sec p {
  margin-bottom: 0;
}

.testimonials-one-btn-sec {
  text-align: center;
  margin-top: 12px;
}

/* =============== Membership ==================== */
.membership-page-one-sec {
  padding: 60px 0;
}

.mp-one-para-sec p {
  color: #000000;
}

.mp-one-content-para-sec h4 {
  font-size: 26px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 12px;
}

.mp-one-content-para-sec p {
  color: #000000;
}

.mp-one-content-para-sec p:last-child {
  margin-bottom: 0;
}

.mp-one-content-img-sec img {
  width: 100%;
  border-radius: 6px;
}

.mp-one-content-sec {
  border: 1px solid #113163;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.mp-one-content-sec .row {
  display: flex;
  align-items: center;
}



/* ============================= */
/* Wrapper auto height */
#form-step-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: height 0.4s ease;
}

.af-border-sec {
  border: 1px solid #113163;
  position: relative;
  overflow: hidden;
}

/* IMAGE OVERLAY */
.af-border-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg/bg-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.af-border-sec>* {
  position: relative;
  z-index: 2;
}

/* Step Boxes */
.slider-step {
  background-color: #fafafa;
  padding: 30px;
  position: absolute;
  width: 100%;
  right: -100%;
  opacity: 0;
  top: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

/* First Step */
.first-step {
  right: 0;
  opacity: 1;
  z-index: 2;
}

/* Animations */
[data-anim="show-from--right"],
[data-anim="show-from--left"] {
  right: 0;
  opacity: 1;
  z-index: 3;
}

[data-anim="hide-to--right"] {
  right: -100%;
  opacity: 0;
}

[data-anim="hide-to--left"] {
  right: 100%;
  opacity: 0;
}

/* === */
.creative-med-title {
  background: linear-gradient(135deg, #113163 0%, #1c2f60 100%);
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.title-icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.title-icon i {
  font-size: 26px;
  color: #ffffff;
}

.creative-med-title h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.creative-med-title::before,
.creative-med-title::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.creative-med-title::before {
  width: 200px;
  height: 200px;
  right: -10px;
  top: -50px;
}

.creative-med-title::after {
  width: 140px;
  height: 140px;
  right: -15px;
  bottom: -50px;
}

.app-form-title-subsec h4 {
  font-size: 26px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.app-form-title-subsec p {
  color: #000000;
}

.application-form-step-sec label {
  color: #000000;
}

.application-form-step-sec .form-select {
  height: 50px;
  font-size: 14px;
  color: #13131378;
  /*text-transform: capitalize;*/
  border: 1px solid #113163;
  border-radius: 0;
  padding: .375rem 2rem .375rem .75rem;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23113163' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select option:disabled {
    color: #13131378;
}

.application-form-step-sec .form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
  color: #131313 !important;
}

/* ===== */
.application-form-step-sec .form-control {
  height: 50px;
  font-size: 14px;
  color: #131313;
  /*text-transform: capitalize;*/
  border: 1px solid #113163;
  border-radius: 0;
}

.application-form-step-sec .form-control::placeholder {
  font-size: 14px;
  color: #13131378;
}

.application-form-step-sec .form-control:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.af-registration-year-picker {
  appearance: none;
}

.af-registration-year-picker::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.af-qualification-year-picker {
  appearance: none;
}

.af-qualification-year-picker::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.app-form-btn {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 0;
  border: 1px solid #FFA000 !important;
  background-color: #FFA000 !important;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-out 0.0s;
}

.app-form-btn:hover {
  border: 1px solid #113163 !important;
  background-color: #113163 !important;
}

.application-form-one-sec hr {
  margin: 30px 0 20px;
  color: #113163;
}

/* ============ */
.app-form-checkbox-custom-sec {
  color: #000000;
  display: flex;
  align-items: center;
}

.app-form-checkbox-custom-sec .form-check-label {
  margin-top: 5px;
}

.app-form-checkbox-custom-sec .form-check-input {
  border: 1px solid #113163;
  box-shadow: none;
  border-radius: 0;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.app-form-checkbox-custom-sec .form-check-input:checked {
  background-color: #113163;
  outline: none;
  box-shadow: none;
}

.af-border-sec .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #777;
  cursor: pointer;
  user-select: none;
}

.af-border-sec .toggle-password:hover {
  color: #113163;
}

.app-form-textarea-custom-sec {
  height: 100px !important;
}

/* ========== */
.step-application-form-success-sec {
  text-align: center;
}

.step-application-form-success-sec img {
  width: 80px;
  margin-bottom: 12px;
}

.step-application-form-success-sec h3 {
  font-size: 26px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.step-application-form-success-sec p {
  color: #000000;
}

/* ================ Dentists =================== */
.dentists-one-sec {
  padding: 60px 0;
}

.dentists-one-sec p {
  color: #000000;
}

.dentists-one-sec .row {
  align-items: center;
}

.dentists-title-sec {
  position: relative;
}

.dentists-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.dentists-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.dentists-content-sec ol {
  color: #000000;
  margin-top: 20px;
  padding-left: 20px;
}

.dentists-content-sec ol li {
  margin-bottom: 16px;
}

.dentists-content-sec ol li::marker {
  font-weight: 600;
}

.dentists-one-img-sec {
  position: relative;
}

.dentists-one-img-sec img {
  z-index: 11;
  position: relative;
  height: 450px;
  object-fit: cover;
}

.dentists-one-img-sec:after {
  content: "";
  top: -10px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.dentists-one-img-sec:after {
  left: -10px;
  z-index: 1;
  background-color: #113163;
}

/* =============== Compare Us ================ */
.compare-us-one-sec {
  padding: 60px 0;
}

.compare-us-table-sec tr th {
  background-color: #113163;
  color: #ffffff;
  padding: 10px;
  border-right: 1px solid #fff;
}

.compare-us-table-sec tr th:last-child {
  border-right: 1px solid #113163;
}

.compare-us-table-sec tr td {
  border: 1px solid #113163;
  padding: 10px;
  color: #000000;
}

.compare-us-title-sec {
  position: relative;
}

.compare-us-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}

.compare-us-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

/* Wrapper safety */
.compare-us-table-sec {
  width: 100%;
  border-collapse: collapse;
}

/* Mobile & Tablet */
@media (max-width: 991px) {
  .compare-us-table-sec {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .compare-us-table-sec tr th,
  .compare-us-table-sec tr td {
    white-space: normal;
    min-width: 160px;
  }
}

/* ================ For Non Members ======================= */
.for-non-members-one-sec {
  padding: 60px 0;
}

.for-non-members-one-sec p {
  color: #000000;
  margin-bottom: 0;
}

.for-non-members-one-sec .row {
  align-items: center;
}

.for-non-members-title-sec {
  position: relative;
}

.for-non-members-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.for-non-members-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.for-non-members-one-img-sec {
  position: relative;
}

.for-non-members-one-img-sec img {
  z-index: 11;
  position: relative;
}

.for-non-members-one-img-sec:after {
  content: "";
  top: -10px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.for-non-members-one-img-sec:after {
  left: -10px;
  z-index: 1;
  background-color: #113163;
}

/* ================= General Practice (NHS) ================ */
.general-practice-one-sec {
  padding: 60px 0 50px;
}

.general-practice-one-sec p {
  color: #000000;
}

.general-practice-one-sec p a {
  color: #000000;
}

.general-practice-one-sec p:last-child {
  margin-bottom: 0;
}

.general-practice-one-sec .row {
  align-items: center;
}

.general-practice-one-img-sec {
  position: relative;
}

.general-practice-one-img-sec img {
  z-index: 11;
  position: relative;
}

.general-practice-one-img-sec:after {
  content: "";
  top: -10px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.general-practice-one-img-sec:after {
  left: -10px;
  z-index: 1;
  background-color: #113163;
}

.general-practice-two-sec {
  padding: 0 0 40px;
}

.gp-nhs-card-sec {
  border: 1px solid #113163;
  padding: 15px 10px;
  text-align: center;
}

.gp-nhs-card-sec img {
  width: 70px;
  border: 1px solid #113163;
  border-radius: 50%;
  padding: 10px;
}

.gp-nhs-card-sec h3 {
  font-size: 18px;
  font-weight: bold;
  color: #113163;
  text-transform: capitalize;
  margin-bottom: 12px;
  margin-top: 12px;
}

.gp-nhs-card-sec p {
  color: #000000;
  margin-bottom: 0;
  min-height: 120px;
}

.general-practice-content-sub-one-sec {
  border: 1px solid #113163;
  padding: 15px 10px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.general-practice-content-sub-one-sec .row {
  align-items: center;
}

.general-practice-content-sub-one-sec .gpcso-img-sec {
  background: #113163;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 65px;
  border-radius: 50%;
}

.general-practice-content-sub-one-sec .gpcso-img-sec img {
  width: 40px;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  filter: brightness(0) invert(1);
}

.general-practice-content-sub-one-sec:hover .gpcso-img-sec img {
  transform: rotateY(360deg);
}

.general-practice-content-sub-one-sec .gpcso-para-sec h3 {
  font-size: 19px;
  font-weight: 600;
  color: #113163;
  text-transform: capitalize;
  margin-bottom: 12px;
  margin-top: 0;
}

.gpcso-para-mh-sec p {
  min-height: 72px;
}

.general-practice-content-sub-one-sec .gpcso-para-sec p {
  color: #000000;
  margin-bottom: 0;
}

/* ========== */
.general-practice-benefits-sec {
  position: relative;
  padding: 60px 0;
  background-image: url(../img/bg/general-practice-bg-2.webp);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.general-practice-benefits-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.general-practice-benefits-sec .row {
  align-items: center;
}

.general-practice-benefits-content-sec h3 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
}

.general-practice-benefits-content-sec ol {
  padding-left: 20px;
}

.general-practice-benefits-content-sec ol li {
  color: #ffffff;
}

.general-practice-benefits-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
}

.general-practice-benefits-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ffffff;
  left: 0;
  bottom: 0;
  margin: auto;
}

/*============*/
.creative-progress {
  width: 100%;
  position: relative;
  margin: 0 0 30px;
}

/* =========== BACK LINE =========== */
.progress-line {
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #dce4f8;
  border-radius: 50px;
  overflow: hidden;
}

/* =========== PROGRESS FILL (LINEAR GRADIENT) =========== */
.progress-fill {
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg,
      #113163,
      #1c4485,
      #2b5bb0,
      #3c72db);
  border-radius: 50px;
  transition: width 0.45s ease-in-out;
  box-shadow: 0 0 18px rgba(17, 49, 99, 0.45);
}

/* =========== STEP CIRCLES =========== */
.progress-steps {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.progress-steps li {
  width: 100px;
  height: 45px;
  background: #e7edfc;
  /* border-radius: 5; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.30s ease-in-out;
  font-weight: 700;
  font-size: 18px;
  color: #113163;
  border: 2px solid #11316333;
}

/* =========== ACTIVE STEP (LINEAR GRADIENT) =========== */
.progress-steps li.active {
  background: linear-gradient(135deg,
      #113163,
      #1c4485,
      #2b5bb0);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(17, 49, 99, 0.55);
  border-color: transparent;
}

/* Ripple Glow */
.progress-steps li.active::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 45px;
  /* border-radius: 5; */
  background: rgba(17, 49, 99, 0.25);
  animation: ripple 1.5s infinite ease-out;
  z-index: -1;
}

/* =========== COMPLETED STEP =========== */
.progress-steps li.completed {
  background: linear-gradient(135deg, #0f7c4a, #14a561);
  color: #fff;
  border: none;
  box-shadow: 0 0 14px rgba(20, 165, 97, 0.4);
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .progress-line {
    top: 15px;
  }

  .progress-steps li {
    width: 65px;
    height: 40px;
    font-size: 16px;
  }

  .creative-progress {
    margin: 0 0 30px;
  }
}


@media (max-width: 360px) {
  .creative-progress {
    display: none;
  }
}

/* ================ Private Sector & Academic Specialities =================== */
.private-sector-academic-speci-one-sec {
  padding: 60px 0;
}

.private-sector-academic-speci-one-sec p {
  color: #000000;
}

.private-sector-academic-speci-one-sec p a {
  color: #000000;
}

.private-sector-academic-speci-one-sec p a:hover {
  color: #113163;
}

.private-sector-academic-speci-one-sec .row {
  align-items: center;
}

.psaso-title-sec {
  position: relative;
}

.psaso-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.psaso-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.psaso-one-img-sec {
  position: relative;
}

.psaso-one-img-sec img {
  z-index: 11;
  position: relative;
}

.psaso-one-img-sec:after {
  content: "";
  top: -10px;
  width: 100%;
  height: 100%;
  position: absolute;
}

.psaso-one-img-sec:after {
  left: -10px;
  z-index: 1;
  background-color: #113163;
}

/* === */
.private-sector-academic-speci-two-sec {
  padding: 60px 0;
  position: relative;
  background: #f8f9f9;
  z-index: 1;
  overflow: hidden;
}

.private-sector-academic-speci-two-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg/bg-2.jpg);
  background-size: cover;
  /*background-repeat: no-repeat;*/
  background-position: center center;
  opacity: 0.2;
  z-index: -1;
}

.private-sector-academic-speci-two-sec p {
  color: #000000;
  margin-bottom: 0;
}

.private-sector-academic-speci-two-sec p a {
  color: #000000;
}

.private-sector-academic-speci-two-sec p a:hover {
  color: #113163;
}

/* =============== Contact Us ================ */
.contact-us-one-sec {
  margin-bottom: 20px;
}

.contact-us-cea-sec .row {
  align-items: center;
}

.contact-us-cea-sec .con-cea-img-sec {
  border: 2px solid #113163;
  height: 70px;
  width: 70px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us-cea-sec .con-cea-img-sec i {
  font-size: 30px;
  line-height: 52px;
  color: #113163;
  padding: 5px;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.contact-us-cea-sec:hover .con-cea-img-sec img {
  transform: rotateY(360deg);
}

.contact-us-cea-sec h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.contact-us-cea-sec p {
  margin-bottom: 0;
}

.contact-us-cea-sec p a {
  color: #000000;
}

.contact-us-cea-sec p a:hover {
  color: #113163;
}

/* ==== */
.contact-us-form-sec {
  padding: 60px 0;
}

.contact-us-form-sec .row {
  align-items: center;
}

.contact-form {
  background: #113163;
  padding: 20px;
}

.contact-form .form-label {
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form .form-control {
  border: 1px solid #113163;
  border-radius: 0;
  padding: .375rem .75rem;
  background: #fff;
  height: 50px;
  font-size: 14px;
  color: #131313;
}

.contact-form textarea.form-control {
  height: 100px;
}

.contact-form .form-control:focus {
  border-color: #113163;
  box-shadow: none;
}

.contact-form button {
  padding: 12px;
  font-weight: 500;
}

.contact-us-form-title-sec {
  position: relative;
}

.contact-us-form-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.contact-us-form-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.contact-form-btn {
  color: #ffffff;
  font-size: 16px !important;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 0;
  border: 1px solid #FFA000 !important;
  background-color: #FFA000 !important;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease-out 0.0s;
}

.contact-form-btn:hover {
  color: #FFA000;
  border: 1px solid #ffffff !important;
  background-color: #ffffff !important;
}

.contact-us-map-sec {
  margin-bottom: -8px;
}

.contact-us-map-sec iframe {
  height: 490px;
  width: 100%;
}

/* ================= Consultants ================== */
.consultants-one-sec {
  padding: 60px 0;
}

.consultants-one-title-sec {
  position: relative;
}

.consultants-one-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.consultants-one-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.creative-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.creative-accordion .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.creative-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.creative-accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.creative-accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.creative-accordion .accordion-button {
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  padding: 20px;
  border-left: 8px solid #113163;
  border-bottom: 1px solid #113163;
  border-right: 1px solid #113163;
  border-top: 1px solid #113163;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.creative-accordion .accordion-button::after {
  display: none;
}

/* RIGHT SIDE ICON */
.creative-accordion .icon {
  width: 32px;
  height: 32px;
  background: #113163;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 20px;
  margin-left: auto;
  transition: 0.3s ease;
}

/* ROTATE + TO × */
.creative-accordion .accordion-button:not(.collapsed) .icon {
  transform: rotate(45deg);
}

.creative-accordion .accordion-body {
  background: #ffffff;
  padding: 20px;
  font-size: 16px;
  color: #000000;
}

/* ================== Membership Benefits ====================== */
.membership-benefits-custom-sec {
  padding: 60px 0;
}

.membership-benefits-custom-sec p {
  color: #000000;
  margin-bottom: 0;
}

.membership-benefits-custom-title-sec {
  position: relative;
}

.membership-benefits-custom-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.membership-benefits-custom-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.membership-benefits-custom-one .row {
  align-items: center;
}

.membership-benefits-custom-one-img-sec {
  position: relative;
}

.membership-benefits-custom-one-img-sec img {
  z-index: 11;
  position: relative;
  height: 450px;
  object-fit: cover;
}

.membership-benefits-custom-one-img-sec:after {
  content: "";
  top: -10px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -10px;
  z-index: 1;
  background-color: #113163;
}

.membership-benefits-points-subrow {
  margin-top: 20px;
}

.membership-benefits-cards-sec {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.mbc-col-content-sec h3 {
  font-size: 19px;
  font-weight: 600;
  color: #113163;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 15px;
}

.mbc-col-sec {
  border: 2px solid #113163;
  border-radius: 50%;
  padding: 10px;
}

.membership-benefits-cards-sec .mbc-col-sec img {
  width: 40px;
  transition: transform 0.6s ease;
}

.membership-benefits-cards-sec:hover .mbc-col-sec img {
  transform: rotateY(360deg);
}

/* ======== */
.memebership-benefits-custom-two-sec {
  position: relative;
  padding: 60px 0;
  background-image: url(../img/bg/membership-benefits-bg.webp);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 1;
}

.memebership-benefits-custom-two-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.memebership-benefits-custom-two-content-sec ol {
  padding-left: 20px;
}

.memebership-benefits-custom-two-content-sec ol li {
  color: #ffffff;
}

.memebership-benefits-custom-two-content-sec p {
  color: #ffffff;
  margin-bottom: 0;
}

.memebership-benefits-custom-two-content-sec p a {
  color: #ffffff;
}

.memebership-benefits-custom-two-content-sec p a:hover {
  color: #0077a6;
}



/* ================== Membership Rates and Options =========================== */
.membership-rates-options-one {
  padding: 60px 0;
}

.membership-rates-options-content-sec p {
  color: #000000;
  text-align: center;
}

.membership-rates-options-title-sec {
  position: relative;
}

.membership-rates-options-title-sec h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.membership-rates-options-title-sec h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* ======== */
.pricingTable {
  padding: 25px 10px 32px;
  margin: 0 15px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.pricingTable:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0% 85%, 0 0);
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0% 85%, 0 0);
}

.pricingTable:after {
  content: "";
  width: 70px;
  height: 30px;
  background: #113163;
  margin: 0 auto;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.pricingTable .title {
  padding: 15px 0;
  margin: 0 -25px 30px;
  background: #113163;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.pricingTable .title:before {
  content: "";
  border-top: 15px solid #113063b0;
  border-left: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  bottom: -30px;
  left: 0;
}

.pricingTable .title:after {
  content: "";
  border-top: 15px solid #113063b0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
  bottom: -30px;
  right: 0;
}

.pricingTable .price-value h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  border-bottom: 1px solid #113063b0;
  padding-bottom: 16px;
}

.price-sub-title {
  font-size: 26px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 16px;
}

.pricingTable .currency {
  display: inline-block;
  font-size: 30px;
  vertical-align: top;
  margin-top: 8px;
}

.price-value .amount {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
}

.price-value .month {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 10px;
  text-transform: uppercase;
}

.pricingTable .pricing-content {
  padding: 0 0 16px;
  margin: 0;
  list-style: none;
  /* border-top: 1px solid #113063b0; */
  border-bottom: 1px solid #113063b0;
  margin-bottom: 16px;
}

.pricingTable .pricing-content li {
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
}

.pricingTable .pricing-content li:last-child {
  margin-bottom: 0;
}

.pricingTable .pricingTable-signup {
  display: inline-block;
  padding: 10px 30px;
  background: #113163;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: all 0.7s ease 0s;
}

@media only screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 30px;
  }
}

/* ========== */
.staff-personnel-team-details-sec {
  padding: 60px 0;
}

.staff-personnel-team-details-sec {
  position: relative;
}

.staff-row {
  border: 1px solid #113163;
  padding: 10px 0;
  align-items: center;
}

.staff-image-wrapper img {
  width: 100%;
}

.staff-details-name-sec h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  text-align: center;
}

.staff-details-name-sec h4 {
  font-size: 18px;
  font-weight: 700;
  color: #00A79D;
  margin-bottom: 4px;
  text-align: center;
}

.staff-details-name-sec p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.staff-content p {
  color: #000000;
}

.staff-content p:last-child {
  margin-bottom: 0;
}

.staff-details-social-sec {
  display: flex;
  justify-content: center;
}

.staff-details-social-sec a {
  border: 1px solid #113163;
  border-radius: 50%;
  padding: 5px;
  margin: 0 5px;
}

.staff-details-social-sec a i {
  font-size: 18px;
}

@media (max-width: 991px) {
  .staff-image-wrapper {
    position: relative;
    height: auto;
  }

  .staff-content-col {
    padding: 20px;
  }
  
  .staff-row {
      margin: 0 5px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1440px) {
    .hero .carousel {
        min-height: 61vh;
    }
}

@media only screen and (min-width: 1590px) and (max-width: 1600px) {
    .hero .carousel {
        min-height: 50vh;
    }
}

@media only screen and (min-width: 1620px) and (max-width: 1680px) {
    .hero .carousel {
        min-height: 50vh;
    }
}

@media only screen and (min-width: 1900px) and (max-width: 1920px) {
    .hero .carousel {
        min-height: 60vh;
    }
}

@media only screen and (min-width: 2000px) and (max-width: 2048px) {
    .hero .carousel {
        min-height: 50vh;
    }
}

@media only screen and (min-width: 2500px) and (max-width: 2560px) {
    .hero .carousel {
        min-height: 60vh;
    }
}