
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --sub-font: "Yantramanav", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; 
  --default-color: #000000; 
  --heading-color: #620035; 
  --brand-color: #139b97;
  --brand-secondary-color:#cc2262;
  --accent-color: #CC2262; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
  --brand-color-variant1:#005862;
  --yellow-color:#FFCE36;
  --bs-body-line-height: 1.8;
  --secondary-color: #F3F3FF;
  --white-color: #FFFFFF;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000; 
  --nav-hover-color: #CC2262; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #CC2262;
}

/* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
html{
  font-size: 1rem;
}



.flex{
  display: flex;
}
.flex1{
  flex: 1;
}
.flex-column{
  flex-direction: column;
}
.align-items-center{
  align-items: center;
}
.align-items-end{
  align-items: flex-end;
}
.justify-content-center{
  justify-content: center;
}
.justify-content-end{
  justify-content: flex-end;
}
.align-items-start{
  align-items: flex-start;
}
.height-100{
  height: 100%;
}
.text-center{
  text-align: center;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}


h3{
  font-size: 2.187rem;
}
/* 
TargetSize(px)	rem Value	Calculation
8px	            0.50rem	    8 ÷ 16 = 0.5
9px	            0.56rem	    9 ÷ 16 = 0.5625 → 0.56rem
10px	        0.63rem	    10 ÷ 16 = 0.625 → 0.63rem
11px	        0.69rem	    11 ÷ 16 = 0.6875 → 0.69rem
12px	        0.75rem	    12 ÷ 16 = 0.75
13px	        0.81rem	    13 ÷ 16 = 0.8125 → 0.81rem
14px	        0.88rem	    14 ÷ 16 = 0.875 → 0.88rem
15px	        0.94rem	    15 ÷ 16 = 0.9375 → 0.94rem
16px	        1.00rem	    16 ÷ 16 = 1
17px	        1.06rem	    17 ÷ 16 = 1.0625 → 1.06rem
18px	        1.13rem	    18 ÷ 16 = 1.125 → 1.13rem
19px	        1.19rem	    19 ÷ 16 = 1.1875 → 1.19rem
20px	        1.25rem	    20 ÷ 16 = 1.25 

*/


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--brand-secondary-color);
  text-decoration: none;
  transition: 0.3s;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sub-font);
}
h2,
h3{
  font-weight: 600;
}
.h5, h5 {
  font-size: 1.125rem;
  font-weight: 600;
}
img{
  max-width: 100%;
  vertical-align: top;
}
.hide{
  display: none !important;
}
.brand-secondary-color{
  color: #004846;
}

.brand-secondary-color2{
  color: #CC2262;
}
.brown-color{
  color: var(--brand-secondary-color);
}
.ml10{
  margin-left: 10px;
}
.mt10{
  margin-top: 10px;
}
.mt15{
  margin-top: 15px;
}
.mt20{
  margin-top: 20px;
}
.mt25{
  margin-top: 25px;
}
.mt30{
  margin-top: 30px;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 125;
  padding-top: 12px;
    padding-bottom: 14px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 20px;
}

.header .logo h1 {
  font-size: 1.875rem;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 0.94rem;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.global-btn,
.global-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 25px;
  border-radius: 24px;
  transition: 0.3s;
  font-weight: 400;
  border: none;
  outline: 0;
}
.global-btn:hover{
  background-color: #7b0e37;
}
.global-btn.no-radius,
.global-btn.no-radius:focus {
  border-radius: 0;
}
.global-btn.radius-sm,
.global-btn.radius-sm:focus {
  border-radius:4px;
}

.global-tag{
  color: var(--contrast-color);
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 4px;
    transition: 0.3s;
    border: none;
    outline: 0;
    font-weight: 600;
    
}
.category .global-tag{
margin-bottom: 20px;
}
@media (max-width: 1200px) {
  

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  body:not(.mobile-nav-active) .header .navmenu {
    order: 3;
    margin-left: 20px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

.device-login{
  display: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navmenu li>a{
  font-weight: 500;
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    padding-right: 26px;
    padding-left: 20px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 14px 12px;
    font-size: 0.94rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .index-page.scrolled .navmenu a,
  .index-page.scrolled .navmenu a:focus {
    padding: 8px 12px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.75rem;
    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: 0.94rem;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 0.75rem;
  }

  .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: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 1.75rem;
    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: 12;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
        padding: 20px;
        font-size: 2.6rem;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        transition: 0.3s;
        border-radius: 10px;
  }
  

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.75rem;
    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 ul li{
    padding-left: 15px;
    padding-right: 15px;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background-color: #ebebeb;
  }

  .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 .device-login{
    display: block;
  }
  .mobile-nav-active .web-login{
    display: none;
  }
  .mobile-nav-active .device-login{
    display: none;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #000000;
        position: absolute;
        font-size: 2rem;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 13;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: auto;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    display: flex;
            align-items: center;
            background-color: #fff;
  }

  .mobile-nav-active .navmenu>ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 0.94rem;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  font-size: 0.88rem;
  position: relative;
  color: #fff;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 1.5rem;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 1rem;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 1rem;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}


.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  column-gap: 30px;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 0.75rem;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  display: flex;
  align-items: center;
}



.footer .footer-links ul a {
  display: inline-block;
  color: #fff;
}

.footer .footer-links ul a:hover {
  color: #c7fffd;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}



.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 0.81rem;
}

/*--------------------------------------------------------------
# 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: 1.5rem;
  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: 2.375rem;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.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: 82px;
  overflow: clip;
  padding-top: 78px;
}
section#hero{
  padding-bottom: 0;
}
.index-page.scrolled section,
.index-page.scrolled .section {
  /* scroll-margin-top: 52px; */
}
section.schedule,
section.architecture,
section.network,
.insights,
section.about-Baines .bg-section,
section.our-vision .bg-section{
  padding-top: 150px;
  padding-bottom: 150px;
}

section.our-specialities{
  padding-top: 85px;
  padding-bottom: 85px;
}
section.our-facilities{
  padding-top: 100px;
  padding-bottom: 150px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
}

.section-title p {
  margin: 10px 0 0 0;
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  z-index: 20;
  max-height: 1111px;
  background-color: #f4f9ff;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 61px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 1.25rem;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 1.13rem;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 1rem;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 2rem;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.75rem;
    line-height: 36px;
  }

  .hero p {
    font-size: 1.13rem;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 1.13rem;
  transition: 0.3s;
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}



/*--------------------------------------------------------------
# our-specialities Section
--------------------------------------------------------------*/
.our-specialities-content{
  width: 841px;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.our-specialities-content .swiper{
  border-bottom: 1px solid #CC226233;
  padding-bottom: 25px;
    margin-bottom: 30px;
}
.our-specialities-content h4{
  font-size: 2.187rem;
  line-height: 3.25rem;
  margin-bottom: 20px;
  
}
.our-specialities.section{
   padding-top: 115px;
    /*padding-bottom: 80px; */
    display: flex;
    background-color: #ffffff;
    position: relative;
    min-height: 920px;
}
.our-specialities.section .container{
  z-index: 12;
}


.testimonials .testimonial-item {
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  font-family: var(--default-font);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 2.187rem;
  font-weight: 300;
  margin: 10px 0 5px 0;
  line-height: 3.25rem;
  color: #CC2262;
  font-family: var(--default-font);
}

.testimonials .testimonial-item h4 {
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  color: #000000;
  margin: 10px auto 15px auto;
  
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
}

.swiper-pagination-bullet {
  background-color: #878787;
}


.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}






@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

.team .team-member .social i {
  font-size: 1.13rem;
}

.team .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 0.88rem;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 0.81rem;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 1rem;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 0.94rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 1rem;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 2.375rem;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 0.88rem;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  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] {
  background: var(--accent-color);
  color: var(--contrast-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%);
}



/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 1rem;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.88rem;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 0.88rem;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 1rem;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.88rem;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 0.94rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.88rem;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.88rem;
}

.gd-banner{
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  padding-top: 65px;
  background-image: url("../img/bg5.png");
  background-repeat: no-repeat;
  background-position: center right;
}
.gd-banner-content{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.gd-banner-video{
  width: 50%;
  height: 100%;
  flex: 50% 0 0;
  position: absolute;
  left: 0;
  top: 0;
  /* clip-path: polygon(0% 0%, 100% 0%, 86% 162%, 0% 100%); */
  z-index: 10;
}
.gd-banner-video video{
  position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}
.gd-banner-video,
.gd-banner-img{
  height: 100%;
  overflow: hidden;
}
.gd-banner-img{
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  flex: 1;
  clip-path: polygon(14% 0, 100% 0%, 100% 100%, 0% 100%);
  position: relative;
  width: 50%;
}
.gd-banner-img.one{
  background-image: url('../img/banner.webp');
  left: -132px;
}
.gd-banner-img.two{
  background-image: url('../img/2.png');
  left: -155px;
}
.gd-banner-img.three{
  background-image: url('../img/8.png');
  left: -234px;
}
.gd-banner-video img,
.gd-banner-img img{
  max-width: 100%;
}

.banner-box-wrap{
  justify-content: flex-end;
  display: flex;
  align-items: flex-start;
}
.banner-bottom{
  background-color: #620035;
  width: 100%;
  font-family: var(--sub-font);
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 6;
  height: 40%;
  display: flex;
  align-items: center;
}
.banner-bottom > .container{
  position: relative;
  height: 100%;
  display: flex;
}
.banner-bottom > .container > .row{
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1;
}
.banner-box{
  background-color: #139b97;
  border-radius: 10px;
  font-weight: 400;
  font-size: 1.875rem;
  color: #ffffff;
  width: 384px;
  position: absolute;
  top: -70px;
  right: 0;
  line-height: 2.5rem;
}
.bannerbox-body{
  padding: 20px 31px;
}
.banner-box .hash-text{
  color: #9de2e0;
  font-weight: 600;
  font-size: 1.875rem;
  margin-top: 10px;
}
.bannerbox-footer{
  border-top: 1px solid #039ab1;
}
.banner-box .global-btn{
  font-size: 0.812rem;
}
.memebers-stack{
  display: flex;
  align-items: center;
  padding: 17px 28px;
}
.memebers-stack > ul{
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
}
.memebers-stack > ul > li{
 width: 34px;
 height: 34px;
 border-radius: 50%;
 border: 2px solid #fff;
 position: relative;
 overflow: hidden;
 object-fit: cover; 
 list-style: none;
}
.memebers-stack > ul > li:nth-child(2){
  left: -10px;
}
.memebers-stack > ul > li:nth-child(3){
  left: -20px;
}
.memebers-stack > ul > li:nth-child(4){
  left: -30px;
}
.members-count{
  font-size: 0.875rem;
  padding: 5px 15px;
  font-weight: 600;
  background-color: #007283;
  border-radius: 20px;
  position: relative;
  left: -40px;
  line-height: 1rem;
  color: #fff;
}

.image-pos1,
.image-pos2,
.image-pos3,
.image-pos4,
.image-pos5,
.image-pos6{
  overflow: hidden;
  object-fit: cover;
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  background-color: transparent;
}
.image-pos7{
  position: absolute;
  z-index: 3;
  object-fit: cover;
  overflow: hidden;
  border-radius: 15px;
  padding: 20px 10px;
}
section.network {
  display: flex;
  align-items: center;
}
.network-image-plate img{
  max-width: 100%;
}
.network-image-plate{
  position: relative;
    width: 780px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}
.image-pos1{
  left: 0px;
    top: 73px;
    width: 83px;
}
.image-pos2{
  right: 31px;
    top: 129px;
}
.image-pos3{
  top: 281px;
  right: -4px;
  width: 133px;
}
.image-pos4{
  bottom: 33px;
    right: 63px;
    width: 88px;
}
.image-pos5{
  left: 7px;
    bottom: 32px;
}
.image-pos6{
  top: 226px;
  left: -35px;
  width: 120px;
}
.image-pos7{
  width: 662px;
    height: auto;
    top: 86px;
    left: 53px;
  
}
.image-pos8{
  width: 220px;
    height: auto;
    top: 146px;
    right: 131px;
}



@media (min-width: 1800px) {
  section:not(.our-facilities):not(.join-network) .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1720px; /* Or your desired value */
  }
}


section.category{
  background: linear-gradient(to right, #620035 50%, #FCF8EC 50%);
  background-size: 100% 100%; 
  padding-top: 0;
  padding-bottom: 0;
  
}
section.category.slide1{
  background: linear-gradient(to right, #139b97 50%, #FCF8EC 50%);
}
section.category.slide3{
  background: linear-gradient(to right, #000b62 50%, #FCF8EC 50%);
}
.category-left-bg{
  background-position: center center;
  background-size: cover;
}
.category-left-child2{
  width: 44%;
}
.category-left-child1{
  flex: 1;
  display: flex;
  align-items: center;
  
}
.category-left-child1-content{
  line-height: 2.812rem;
  font-size: 2.187rem;
  color: #fff;
  font-weight: 600;
}
.category-left-child1 .global-btn{
  margin-bottom: 20px;
}
.category-right{
    background-color: #fcf8ec;
    display: flex;
    align-items: center;
}
.category-right > div{
  padding-right: 100px;
    padding-left: 55px;
}
.category-right h3{
  margin-bottom: 16px;
}
.category-right p{
  margin-bottom: 20px;
}


section.schedule{
  display: flex;
  align-items: center;
}
.sub-content{
  width: 64%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  margin-top: 25px;
}
.architecture h2{
  margin-bottom: 30px;
}
.network h2{
  margin-bottom: 30px;
}

.architecure-image{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 60%;
}
.app-image1,
.app-image2{
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  bottom: 0;
}
.app-image1{
  z-index: 3;
  width: 172px;
  right: 83px;
}
.app-image2{
  z-index: 2;
  height: auto;
  right: 0;
  width: 172px;
  bottom: 54px;
}
.app-image-container{
  width: 100%;
  height: 400px;
  position: relative;
}
.app-image-container img{
  max-height: 100%;
}
.appdownload{
  background-color: var(--brand-color);
  color: #fff;
}
.appdownload h3{
  margin-bottom: 25px;
}
.store-icons{
  margin-top: 25px;
}
.insights h2{
  margin-bottom: 25px;
}
footer{
  background-color: var(--brand-color);
}

.blog-set1{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: repeat(1, auto);
  column-gap: 40px;
}
.blog-title{
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: 30px;
  line-height: 2.2rem;
}


.blog-set1-item{
  display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
}
.blog-set2{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: repeat(1, auto);
}
.blog-set2 .blog-set2-item:nth-child(2){
  font-size: 1.312rem;
}
.blog-set2-item > div > img{
  height: 100%;
}
.blog-set2 .blog-set2-item:nth-child(2),
.blog-set2 .blog-set2-item:nth-child(3){
  padding: 20px;
}
.roverSec.section{
  background-color: #000000;
  color: #fff;
}
.blog-subhead{
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.687rem;
  margin-bottom: 15px;
}
.step-count{
  position: relative;
}
.step-count > div{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #CC2262;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}
.step-count:after{
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  border-left: 1px dashed #CC2262;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  z-index: 3;
}
.schedule-step.three .step-count:after{
  display: none;
}
.schedule h3{
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.75rem;
  margin-bottom: 30px;
}
.schedule-step{
  column-gap: 20px;
  width: 85%;
  position: relative;
}
.schedule-step.one{
  z-index: 2;
}
.schedule-step.two{
  z-index: 3;
}
.schedule-step.three{
  z-index: 4;
}
.schedule-step p{
  padding-bottom: 5px;
}
.schedule-step-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.footer-bottom{
  background-color: #2d2d2d;
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
}
.container.copyright{
  height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.schedule-action{
  background-color: #139b97;
    color: #fff;
    height: 72px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding-left: 25px;
    font-weight: 400;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: space-between;
    padding-right: 11px;
    column-gap: 15px;
    font-size: 0.937rem;
}
.custom-submit-btn{
  background-color: #cc2262;
    color: #fff;
    border-radius: 30px;
    border: none;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    height: 46px;
    overflow: hidden;
  transition: all 0.2s;
  position: relative;
}
.post-done .custom-submit-btn{
  background-color: #55b75a;
}
.custom-submit-btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.custom-submit-btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.post-sending .custom-submit-btn .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.post-sending .custom-submit-btn svg {
  transform: translateX(20px) rotate(45deg) scale(1.1);
}
.custom-submit-btn .post-done-btn{
  transform: translateY(-50px);
  position: absolute;
}
.post-done .custom-submit-btn .post-done-btn{
  transform: translateY(0px);
}

.post-sending .custom-submit-btn span.post-send-btn,
.post-done .custom-submit-btn span.post-send-btn{
  transform: translateY(50px);
}
.post-sending .custom-submit-btn,
.post-done.custom-submit-btn{
  pointer-events: none;
}
.post-done .custom-submit-btn svg{
  transform: translateX(200px);
}

.custom-submit-btn:active {
  transform: scale(0.95);
}
.contact-form-box-wrapper{
  position: relative;
}

.success-message,
.error-message {
    padding: 15px;
    margin-top: 20px;
    position: relative;
    border-radius: 4px;
    font-weight: 600;
    position: absolute;
    width: 100%;
    bottom: -54px;
    left: 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding-top: 32px;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 40px 0px #00000021;
}

.success-message {
    background: #e0f8e0;
    color: #2e7d32;
}

.error-message {
    background: #ffe5e5;
    color: #c62828;
}

.success-message button,
.error-message button {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.success-message button:hover,
.error-message button:hover {
  background-color: #cfe9cf;
    
}


@keyframes fly-1 {
  from {
    transform: translateY(0.3em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

.custom-submit-btn:hover{
  background-color: #7b0e37;
}
.roverSec p{
  font-weight: 400;
  }

  .rover-video{
    margin-top: 30px;
  }
  .schedule-step-title{
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .schedule-body{
    align-items: center;
  }
  .schedule-avatar{
    width: 280px;
  }

  .footer-app-link .store-icons {
    margin-top: 10px;
}
.footer-app-link-wrap{
  align-items: flex-end;
  justify-content: flex-end;
}
.footer-app-link{
  display: flex;
    justify-content: flex-end;
}
.footer-desc{
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  line-height: 2.9rem;
}
.footer-muted{
  font-weight: 500;
  font-size: 0.875rem;
  color: #FFFFFF80;
  margin-bottom: 20px;
  margin-top: 30px;
}

.copyright p{
  text-align: right;
}
.category-body,
.category-body2,
.category-body3,
.category .container{
  height: 100%;
  
}
.category-left-child1 ,
.category-right{
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-logo{
  margin-bottom: 12px;
  text-align: right;
}
.footer-logo > img{
  opacity: 0.5;
}


#chat-bot {
  background-color: var(--brand-secondary-color);
  color: #fff;
  padding: 8px;
  position: fixed;
  right: 0;
  bottom: 96px;
  z-index: 18;
  display: flex;
  align-items: center;
  border-radius: 42px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 75px; 
  overflow: hidden; 
  transition: width 0.3s ease, padding 0.3s ease; 
  border: 1px solid #fcf8ecb5;
  border-right: none;
}

#chat-bot:hover {
  width: 260px; 
}

#chat-bot .chat-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--yellow-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

#chat-bot .chat-bot-details {
  position: absolute;
  top: 50%; 
  left: 85px; 
  transform: translateY(-50%);
  opacity: 0; 
  max-width: 0; 
  white-space: nowrap; 
  overflow: hidden; 
  flex-direction: column;
  transition: opacity 0.3s ease, max-width 0.3s ease; 
}

#chat-bot:hover .chat-bot-details {
  opacity: 1; 
  max-width: 166px; 
}

.swiper-pagination-bullet{
  width: 15px;
  height: 15px;
}



.category .swiper {
  width: 100%;
  height: 1000px;
}

/* .category .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
 
}

.category .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */


i.check-box{
  color: #CC2262;
  font-size: 1rem;
  margin-right: 5px;
}

.about-Baines Healthcare-box{
  column-gap: 50px;
}

.healthcare-box{
  border-radius: 10px;
    position: relative;
    height: auto;
    overflow: hidden;
}
.healthcare-box:after{
  position: absolute;
  content: "";
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  border: 1px solid #FFFAFA33;
  top: 0;
  left: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 14;
}
.box-drop{
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #000000ab 6.71%, rgba(102, 102, 102, 0.00) 110.94%);
  z-index: 12;
}
.block{
  display: block;
}
.healthcare-box-content{
  z-index: 15;
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    color: #F2F2F2;
    bottom: 29px;
    left: 0;
    font-size: 1.2rem;
}
.content-sub-head {
  font-size: 1.23rem;
  margin-top: 15px;
  font-weight: 500;
}

.modal-fullscreen .modal-body {
  display: flex;
  align-items: center;
}
.swiper-button-next, .swiper-button-prev {
  color: #f55330;
}
.dashboardSwiper{
  height: 100%;
}
.dashboardSwiper .swiper-slide img {
  max-height: 100%;
}
.dashboardSwiper .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
  right: 25px;
}

.swiper-button-next,
.swiper-button-prev,
#imageSliderModal {
  user-select: none;
}

@media (max-width: 1920px) {
 
  .banner-bottom {
    height: 30%;
}

}

@media (min-width: 1921px) {

 .memebers-stack {
  padding: 19px 28px;
  padding-left: 39px;
}
 .banner-box {
  font-size: 2.5rem;
  line-height: 116%;
} 
 .banner-box .global-btn {
  font-size: 1rem;
}
.banner-box .hash-text {
  font-weight: 600;
  font-size: 2rem;
}
.bannerbox-body {
  padding: 44px 42px;
}
.banner-box {
  width: 475px;
} 

.hero h1 {
  font-size: 4.5rem;
  line-height: 110%;
}

} /*1921*/


@media (max-width: 1200px) {
  .header .logo {
    margin-right: auto;
}
.hero {
  padding-top: 40px;
}
.gd-banner {
  /* height: 500px; */
}

.banner-bottom {
  /* height: auto; */
}
section.our-specialities, section.network, section.schedule {
  min-height: auto;
}
.about-Baines Healthcare {
  height: auto;
  
}
.category .swiper {
  height: auto;
}
.web-login{
  display: none;
}
section,
.section {
  scroll-margin-top: 60px;
}
} /*1200*/

@media (max-width: 991px) {
  .banner-bottom{
    text-align: center;
  }
  .banner-box {
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    top: auto;
    margin-bottom: 35px;
}
.our-specialities-content {
  width: 100%;
}
section.category.slide1 {
  background: #139b97;
  padding-bottom: 30px;
}
.category-body{
  flex-direction: column;
}
.category-body, .category-body2, .category-body3,
.hero {
  height: auto;
}
.category-left-child1 {
  padding-top: 90px;
  padding-bottom: 90px;
  padding-right: 15px;
}
.category-right {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 50px;

}
.category-right:after {
  width: 80%;
        height: 2px;
        content: "";
        bottom: -55px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        border-top: 1px dashed #d6ccad;
        position: absolute;
}
.category .swiper-slide:last-child .category-right:after {
  display: none;
}
.category-body,
.category-body2,
.category-body3{
  flex-direction: column;
}
.app-image-container {
  width: 245px;
  margin-left: auto;
  margin-right: auto;
}
.appdownload {
  text-align: center;
}
.store-icons {
  margin-left: auto;
  margin-right: auto;
}
section.schedule {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-app-link-wrap{
  align-items: flex-end;
  justify-content: flex-start;
}
.blog-set1,
.blog-set2 {
  display: flex;
  flex-direction: column;
}
.blog-set2 .blog-set2-item:nth-child(1){
  order: 3;
}
.blog-set2 .blog-set2-item:nth-child(2){
  order: 1;
  margin-top: 30px;

}
.blog-set2 .blog-set2-item:nth-child(3){
  order: 2;
}
.blog-set1-item {
  text-align: center;
}

.category .swiper-wrapper {
  display: flex;
overflow: auto;
  flex-direction: column;
}

section.our-specialities, section.schedule, section.architecture, section.network,.insights {
  padding-top: 40px;
  padding-bottom: 65px;
}

.banner-box {
  position: relative;
}
.sub-content {
  width: 100%;
}
.about-Baines Healthcare-left {
  padding-right: 0;
}
section:not(.hero), .section:not(.hero){
  padding-left: 5px;
  padding-right: 5px;
}
.gd-banner-video {
  display: none;
}
.gd-banner-content:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/banner-device.webp );
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 12;
  background-position: center;
}
.banner-bottom {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  margin-top: -20px;
}
.about-Baines Healthcare p {
  margin-bottom: 30px;
}
} /*991*/



@media (max-width: 430px) {
  .category-left-child2 {
    display: none;
}
.category-left-child1 {
  justify-content: center;
}
.category-left-child1-content {
  text-align: center;
}
.category .global-tag {
  margin-left: auto;
  margin-right: auto;
}
.category-left-child1 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.category-left-child1 .global-btn {
  margin-left: auto;
  margin-right: auto;
}
}













.content-up,
.content-down {
  transition: transform 0.5s, opacity 0.5s;
  opacity: 1;
}

/* .swiper-slide-prev .content-up,
.swiper-slide-next .content-up {
  transform: translateY(-100%);
  opacity: 0;
}

.swiper-slide-prev .content-down,
.swiper-slide-next .content-down {
  transform: translateY(100%);
  opacity: 0;
} */

.swiper-slide-active .content-up,
.swiper-slide-active .content-down {
  transform: translateY(0);
  opacity: 1;
}





.form-box input,
.form-box select{
  width: 100%;
  height: 46px;
  margin-bottom: 5px;
  padding: 0 20px;
  outline: 0;
  display: inline-block;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgb(171 171 171 / 50%);
  font-weight: 500;
}
.select2-container--default .select2-selection--single {
  height: 46px; /* your desired height */
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  border-radius: 23px;
}

/* Center text vertically */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px; /* should be less than or equal to height */
}

/* Adjust the arrow position */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px; /* close to height */
}

.form-box select.form-select option[disabled][selected] {
  color:#979797 ; 
}


 select.post-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  
    .select2-container {
      width: 100% !important;

}

  .custom-select {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
  }

  .custom-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 100;
  }

  .custom-options div {
    padding: 8px;
    cursor: pointer;
  }

  .custom-options div:hover {
    background-color: #f0f0f0;
  }

  .custom-select.open .custom-options {
    display: block;
  }

  .custom-selected {
    pointer-events: none;
  }
.form-box textarea {
  width: 100%;
  padding: 15px 22px;
  outline: 0;
  margin-bottom: 25px;
  outline: 0;
  display: inline-block;
  height: 150px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgb(171 171 171 / 50%);
  font-weight: 500;
}

.form-box textarea::placeholder {
  color: #979797;
  font-size: 17px;
}

.contact-form-box {
      padding: 25px 35px;
    padding-top: 12px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 40px 0px #00000021;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.contact-form-box > h4{
      margin-top: 15px;
    margin-bottom: 20px;
}

.form-box input::placeholder {
  font-size: 14px;
  color: #979797;
  font-weight: 400;
}

.join-network-content{
  display: flex;
    justify-content: flex-end;
}



.hero{
	position: relative;
	background-image: url('../img/hero-bg-shape-1.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 80px 0 0;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('../img/hero-bg-shape-2.png');
  background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
  z-index: -1;
}

#hospital-page .hero{
	background-image: url('../img/hero-bg-shape-1-hospital.png');
}

#hospital-page .hero::before{
	background-image: url('../img/hero-bg-shape-2-hospital.png');
}




.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-section {
    background-color: #fff3f9;
    width: 100%;
    max-width: 1820px;
    margin: 0 auto;
    border-radius: 46px;
    /* height: calc(100vh - 78px); */
    
}
#hero .bg-section{
  min-height: 738px;
}
.banner-text{
  height: 100%;
}
.banner-img-holder{
  text-align: center;
}
.hero-content{
  margin-top: 20%;
}
@media (max-width: 1400px) {
  #hero .bg-section {
    min-height: 635px;
}
.expert-doctor-box
 {
    font-size: 42px;
    line-height: 48px;
}
}

@media (max-width: 1200px) {
  #hero .bg-section {
    min-height: 595px;
}
.expert-doctor-box
 {
    font-size: 42px;
    line-height: 46px;
}
}
#network #hero .bg-section {
  background-color: #F3F3FF;
}

.about-Baines .bg-section {
  background-color: #fff2f9;
  height: auto;
}
#innovations .bg-section {
  background-color: #f3ffff;
}
.hero-img{
  display: flex;
  width: 100%;
}

.expert-doctor-box {
    width: 100%;
    display: inline-block;
    font-size: 51px;
    line-height: 59px;
    font-weight: 800;
    font-family: var(--sub-font);
    color: #535193;
    margin-bottom: 265px;
}
.index-page .expert-doctor-box {
  color: #8d5d73;
}

.contact-form-box-body{
  display: flex;
  flex-direction: column;
  column-gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.join-network-content .contact-form-box-body{
  flex-direction: column;
}
.header-body{
  justify-content: space-between;
}

.hero-image{
  position: absolute;
    bottom: 64px;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 1720px;
}
@media (min-width: 576px) {
    .hero-image {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
   .hero-image {
        max-width: 720px;
    }

}
@media (min-width: 992px) {
    .hero-image {
        max-width: 960px;
    }
    
}
@media (min-width: 1200px) {
    .hero-image {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .hero-image {
        max-width: 1320px;
    }
}

@media (min-width: 1800px) {
    .hero-image{
    max-width: 1720px;
}
}









.accordion-button {
    font-size: 21px;
    font-weight: 500;
}

.form-box{
  flex: 1;
  width: 100%;
  position: relative;
}
.join-network-content .form-box{
  flex: 1;
  width: 100%;
}
.specialisation-category{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.feature-single-box {
    padding: 40px 40px;
    background-color: rgb(230 241 255 / 30%);
    border: 2px solid #e6f1ff;
    border-radius: 24px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    width: 33.33%;
    flex: calc(33.333% - 20px) 0 0;
}

.feature-head {
    display: flex;
    justify-content: center;
}

.mediic-shape-cntr {
    position: absolute;
    top: -260px;
    z-index: -1;
}

.head-title h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: 0.5s;
}


.icon-bx-wraper.style-3 {
    border-radius: 25px;
    padding: 30px;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(var(--bs-secondary-rgb), 0.02));
    height: 100%;
    display: flex;
    flex-direction: column;
}

.icon-bx-wraper.style-3 .icon-bx-head {
    margin-bottom: auto;
}

.icon-bx-wraper .icon-bx {
    position: relative;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bx-wraper.style-3 .icon-bx {
    width: 60px;
    height: 60px;
    display: block;
    margin-bottom: 30px;
}

.icon-bx-wraper.style-3 .icon-cell {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bx-wraper.style-3 .icon-bg
 {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 140px;
    opacity: 0.025;
}

.icon-bx-wraper.style-3 .icon-bg svg {
    width: 100%;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.icon-content {
    overflow: hidden;
}
.icon-bx-wraper.style-3 .dz-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.icon-bx-wraper.style-3 p
 {
    font-size: 15px;
    font-weight: 300;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bx-wraper.style-3 .icon-bx-footer {
    position: relative;
    padding-top: 20px;
    margin-top: 20px;
    margin-right: 50px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bx-wraper.style-3 .text-badge
 {
    font-size: 14px;
    color: var(--bs-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.btn {
    overflow: hidden;
}

.btn-square {
    height: 48px;
    width: 48px;
    min-width: 48px;
    padding: 0;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bx-wraper.style-3 .btn-square {
    box-shadow: 0 20px 50px rgba(var(--bs-secondary-rgb), 0.1);
    position: absolute;
    right: -80px;
    bottom: -30px;
    font-size: 20px;
}

.icon-bx-wraper.style-3:after
 {
    content: "";
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    mask-image: url(../images/bg02.svg);
    mask-position: right bottom;
    border-radius: 25px 25px 0 25px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.icon-bx-wraper.style-3.active:after, .icon-bx-wraper.style-3:focus-within .icon-bx-wraper.style-3:hover:after
 {
    background: var(--bs-primary);
}

.icon-bx-wraper.style-3 .icon-bx-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(var(--bs-body-color-rgb), 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

.icon-bx-wraper.style-3.active .icon-bx-footer::before, .icon-bx-wraper.style-3:focus-within .icon-bx-wraper.style-3:hover .icon-bx-footer::before
{
    background-image: linear-gradient(to right, rgba(var(--bs-white-rgb), 0.5) 50%, rgba(255, 255, 255, 0) 0%);
}

.image-anime
 {
    position: relative;
    overflow: hidden;
}

.network-image {
    background: url(../img/about-bg-image.svg) no-repeat;
    background-position: center center;
    background-size: auto;
    position: relative;
    margin-right: 50px;
    padding-bottom: 200px;
}

.network-img-1{
	width: 410px;
}

.network-img-2 figure,
.network-img-1 figure{
	display: block;
}

.network-img-1 img{
	aspect-ratio: 1 /0.96;
	object-fit: cover;
	border-radius: 40px;
}

.network-img-2{
	position: absolute;
	bottom: 0;
	right: 0;
}

.network-img-2 img{
	aspect-ratio: 1 /0.72;
	object-fit: cover;
	border: 7px solid #f8f8ff;
	border-radius: 40px;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}


.network-experience{
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(-50%, 50%);
}

.network-experience img{
	animation: rotate 30s infinite linear;
}

@keyframes rotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.join-network .container{
      max-width: 1300px;
}

.join-network.section{
  background-color: #F8F8FF;
  padding-top: 160px;
  padding-bottom: 160px;
}


.single-service-area
 {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    height: 100%;
    transition: 0.3s;
    background: #fff;
    background-color: rgb(255 255 255 / 30%);
    backdrop-filter: blur(17.5px);
    position: relative;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 1;
}
.single-service-area:hover,
.single-service-area:hover > a{
  color: #fff;
}
.single-service-area h4,
.single-service-area p,
.single-service-area a{
  z-index: 1;
  position: relative;
}

.single-service-area:after{
	content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #cc2262;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.single-service-area:hover:after{
	top: 0;
}

.single-service-area .icon
 {
    margin-bottom: 25px;
}
.single-service-area p
 {
    margin-bottom: 10px;
}

.single-service-area .title {
    font-size: 23px;
    margin-bottom: 8px;
}
.single-service-area p.disc {
    font-size: 16px;
    margin-bottom: 10px;
}

.btn-transparent {
    color: #cc2262;
    font-weight: 400;
    transition: 0.3s;
}






.tab-nav {
  display: flex;
  justify-content: center;
}

.tab-btn {
  padding: 10px 20px;
  cursor: pointer;
  background: #eee;
  border: none;
  margin: 0 5px;
}

.tab-btn.active {
  background: #333;
  color: white;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Accordion on mobile */
@media (max-width: 768px) {
  .tab-nav {
    display: none;
  }

  .tab-pane {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
  }

  .tab-pane h2 {
    background: #f5f5f5;
    margin: 0;
    padding: 10px;
    cursor: pointer;
  }

  .tab-pane form,
  .tab-pane img {
    display: none;
    padding: 10px;
  }

  .tab-pane.open form,
  .tab-pane.open img {
    display: block;
  }
}

.banner-tab .tab-btn{
        padding: 14px 12px;
        font-size: 0.94rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        background-color: transparent;

}

.banner-tab .tab-btn.active{
        color: var(--nav-hover-color);
}
#medicalTabsContent .tab-pane > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
    margin-top: 50px;
}
#medicalTabsContent .tab-pane > ul > li{
  width: calc(25% - 15px);
  list-style: none;
}
.nav.nav-pills{
  display: flex;
    justify-content: center;
    margin-bottom: 25px;
}



.nav-pills .nav-link.active, .nav-pills .show>.nav-link
 {
    background-color: #cc2262;
    
}

.nav-pills .nav-link {
    color: var(--nav-hover-color);
    border-radius: 25px;
}
.nav-pills .nav-link:hover {
    background-color: #fff0f6;
    color: var(--nav-hover-color);
}


.our-vision-images{
	position: relative;
	padding: 0 140px;
}

.our-vision-img-1 img{
	width: 100%;
	border-radius: 46px;
	aspect-ratio: 1 / 1.496;
	object-fit: cover;
  max-height: 500px;
}

.our-vision-img-2{
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	max-width: 302px;
	border: 10px solid #fff;
	border-radius: 46px;
	z-index: 1;
}

.our-vision-img-2 figure{
	display: block;
	background: #0B1030;
	border-radius: 36px;
	text-align: center;
}

.our-vision-img-2 h3{
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 0;
}

.our-vision-img-2 img{
	width: 100%;
    aspect-ratio: 1 / 0.965;
    object-fit: cover;
	border: 2px solid #fff;
	border-radius: 26px;	
}










.about-us-images{
	position: relative;
	padding: 0 140px;
}

.about-img-1 img{
	width: 100%;
	border-radius: 46px;
	aspect-ratio: 1 / 1.496;
	object-fit: cover;
  max-height: 500px;
}

.about-img-2{
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	max-width: 302px;
	border: 10px solid #fff;
	border-radius: 46px;
	z-index: 1;
}

.about-img-2 figure{
	display: block;
	background: #0B1030;
	border-radius: 36px;
	text-align: center;
}

.about-img-2 h3{
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 0;
}

.about-img-2 img{
	width: 100%;
    aspect-ratio: 1 / 0.965;
    object-fit: cover;
	border: 2px solid #fff;
	border-radius: 26px;	
}

figure{
  margin-bottom: 0;
}
section.about-Baines,
section.our-vision{
  padding: 0;
}
.about-Baines .bg-section{
  background-color: #F3F3FF;
}
section.about-Baines{
    margin-bottom: 130px;
}


.our-facilities-image
 {
    position: relative;
    margin-right: 30px;
    width: 648px;
}

.our-facilities-img figure{
	display: block;
    mask-image: url(../img/about-image-bg-shape.svg);
    background-image: url(../img/about-image-bg-shape.svg);
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.our-facilities-body{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}
.facilities-content{
  display: flex;
  margin-top: 60px;
  max-width: 853px;
    margin-left: auto;
    margin-right: auto;
}
.our-facilities-image{
	position: relative;
    margin-right: 30px;
    flex: 1;
    max-width: 430px;
}

.our-facilities-img img{
	width: 100%;
    height: 100%;
}

.company-experience{
	position: absolute;
    bottom: 14px;
    right: 2px;
    background: url(../img/ai-star.png) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
    display: flex;
    align-items: center;
    width: 109px;
    height: 112px;
    overflow: hidden;
    padding: 20px;
}



.company-experience-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.company-experience-counter{
	position: relative;
	text-align: center;
	margin-bottom: 5px;
	z-index: 1;
}

.company-experience-counter h2{
	font-size: 60px;
	color: var(--white-color);
}

.company-experience-content{
	position: relative;
	text-align: center;
	z-index: 1;
}

.company-experience-content p{
	color: var(--white-color);
	margin: 0;
}

.expertise-list-box{
	margin-bottom: 30px;
}

.expertise-list-box:last-child{
	margin-bottom: 0;
}

.expertise-list-title{
	margin-bottom: 20px;
}

.expertise-list-title h3{
	position: relative;
	font-size: 20px;
	font-weight: 600;
	padding-left: 35px;
}

.expertise-list-title h3::before{
	content: "\f272";
	position: absolute;
	font-family: bootstrap-icons !important;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	color: var(--accent-color);
}

.expertise-list-content p{
	margin: 0;
}
.our-vision-content{
  padding-left: 75px;
}

.our-vision-content .section-title{
  width: 80%;
}

.our-facilities{
      padding-top: 200px;
    /* background-color: #f4f5fa; */
    padding-bottom: 200px !important;
  position: relative !important;
  overflow: hidden !important;
}
.our-facilities-bg-left{
  position: absolute !important;
      padding: 0 !important;
      text-align: right !important;
      right: -50px;
      top: -51px;
}
.our-facilities-bg-right{
  position: absolute !important;
  bottom: -50px;
  left: -50px;
}

.position-relative {
    position: relative !important;
}
.our-facilities-box{
      overflow: hidden !important;
      border: 1px solid #dee2e6 !important;
          border-width: 2px !important;
          -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    -webkit-transition: all 350ms cubic-bezier(.37,0,.63,1);
    transition: all 350ms cubic-bezier(.37,0,.63,1);
        border-color: #fff !important;
            border-radius: 20px !important;
}
.our-facilities-box-body{
  text-align: center !important;
  background-color: #f4f5fa;
  padding-right: 15px !important;
  padding-bottom: 50px !important;
  padding-left: 15px !important;
  padding-top: 30px;
}
.our-facilities-box-title{
      font-size: 20px;
      color: #15161d;
      margin-bottom: 10px !important;
      font-weight: 600 !important;
          display: inline-block !important;
}
.our-facilities-box-desc{
  margin-right: auto !important;
    margin-left: auto !important;
    width: 80% !important;
        margin-bottom: 0;
}

.about-gooddoc-left{
  justify-content: center;
    display: flex;
    flex-direction: column;
    padding-right: 160px;
}

vizru-bot{
  z-index: 999;
  position: fixed;
}
ul:not(.list-disc){
  padding-left: 0;
}
ul:not(.list-disc) li{
  list-style: none;
}


.post-input.empty{
      border-color: #ff000054;
    box-shadow: 0 0 0 .20rem rgb(253 13 78 / 25%);
}
.file-fields-wrap{
  width: 100%;
  display: flex;
  gap: 15px;
}

.datepicker {
    padding: 13px;
    font-size: 14px;
}

.datepicker td, .datepicker th
 {
    width: 30px;
    height: 30px;
}
.title-wrap {
    margin-bottom: 15px;
}

.otp-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255 / 30%);
    backdrop-filter: blur(6.5px);
    border-radius: 34px;
}

input#otp-input {
    padding: 0 20px;
    outline: 0;
    display: inline-block;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgb(171 171 171 / 50%);
    font-weight: 500;
    padding: 8px;
    width: 200px;
    margin-right: 10px;
    height: 46px;
    background-color: #fff;
}


button#submit-otp-btn {
    background-color: #cc2262;
    color: #fff;
    border-radius: 30px;
    border: none;
    height: 100%;
    padding-left: 25px;
    /* padding-right: 25px; */
    display: flex;
    align-items: center;
    height: 46px;
    overflow: hidden;
    transition: all 0.2s;
    position: relative;
}

.otp-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}






.sub-hero{
	position: relative;
    background-image: url(../img/dots.png);
    background-repeat: no-repeat;
    background-position: 50% -4px;
    background-size: 200px;
    padding: 50px 0;
    overflow: hidden;
}

.sub-hero::before{
	    content: '';
    position: absolute;
    bottom: -66px;
    left: 25%;
    right: 0;
    background-image: url(../img/dots.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 200px;
    width: 200px;
    height: 100px;
    z-index: 0;
}
.sub-hero-content{
  width: 460px;
}
.sub-hero-content h3{
  font-size: 54px;
    font-weight: 800;
}
.sub-hero-img-wrapper{
  margin-left: auto;
    margin-right: auto;
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
}
.sub-masked-image {
  width: 362px;
  mask-image: url('../img/sub-mask.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;

  -webkit-mask-image: url('../img/sub-mask.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
 
}
.sub-hero-img-wrapper:after{
      content: '';
    position: absolute;
    right: -10px;
    bottom: -30px;
    background-image: url('../img/ai-star-2.png');
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}

.sub-masked-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-page-bg-section {
    position: relative;
    background-color: #f5f5f5;
    width: 100%;
    max-width: 1820px;
    margin: 0 auto;
    border-radius: 46px;
   /* height: calc(100vh - 78px); */
}
.two-side-column {
    display: flex;
    gap: 30px;
}

.two-side-column-child-1 {
    flex: 1;
}

.two-side-column-child-2 {
    flex: 1;
}
.footer-schedule-section .btn-outline:hover {
    color: #333;
    background-color: #fff;
}

.accordion,
.accordion *{
  visibility: visible;
}






@media (max-width: 1400px) {
    
}

@media (max-width: 1800px) {
    
}
@media (max-width: 1200px) {
    .expert-doctor-box {
    font-size: 46px;
    line-height: 50px;
}
.hero-content {
    margin-top: 14%;
}
}


@media (max-width: 992px) {
    
    .hero-content {
        margin-top: 0;
    }
    .expert-doctor-box{
      text-align: center;
    }
}

@media (max-width: 990px) {
  
    .file-fields-wrap {
        flex-direction: column;
    }
    .form-box {
        max-width: 100% !important;
        width: 100% !important;
        flex: 0 0 0 !important;
    }
  .hero-image {
    position: relative;
    margin-top: -100px;
}
  .submit-button,
  .custom-submit-btn{
    width: 100%;
    justify-content: center;
  }
  .expert-doctor-box {
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 30px;
 }
 .accordion-body ul li{
  margin-bottom: 15px;
 }
 .accordion-button:not(.collapsed)
 {
    color: #fff;
    background-color: #cc2262;
}
.our-specialities.section {
    min-height: 698px;
}
.our-facilities-bg-left img,
.our-facilities-bg-right img{
    width: 434px;
}
.our-vision-images{
  display: none;
}

.facilities-content
 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.swiper-button-next, .swiper-button-prev{
  display: none;
}
.about-gooddoc-left {
    padding-right: 0;
    margin-bottom: 75px;
    text-align: center;
}
section.schedule, section.architecture, section.network, .insights, section.about-Baines .bg-section, section.our-vision .bg-section
 {
    padding-top: 100px;
    padding-bottom: 110px;
}
.network-image{
  margin-bottom: 50px;
}
.hero {
    max-height: max-content;
}
.hero-content {
        margin-top: 0;
    }


.header-body a.logo {
  width: 320px;
}






} /*990*/



@media (max-width: 576px) {
    
}
@media (max-width: 768px) {


.network-image-plate {
  width: 100%;
  height: 437px;
}

.footer .footer-links ul {
  justify-content: center;
}
.footer .copyright p {
  text-align: center;
  margin-top: 10px;
}
.architecure-image {
  display: none;
}
.gd-banner {
  height: 250px;
}


.custom-submit-btn {
  padding-left: 16px;
  padding-right: 16px;
}
.footer .footer-top {
  padding-top: 14px;
}
.footer-logo {
  display: none;
}
.category-right > div {
  padding-right: 0;
  padding-left: 0;
}
.image-pos7 {
  width: 80%;
        height: auto;
        top: 50%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        transform: translateY(-50%);
}
.image-pos2 {
  right: 17px;
  top: 128px;
  width: 65px;
}
.image-pos3 {
  top: 202px;
  right: 25px;
  width: 57px;
}
.image-pos4 {
  bottom: 114px;
        right: 32px;
        width: 52px;
}
.image-pos5 {
  left: 13px;
  bottom: 116px;
  width: 49px;
}
.image-pos6 {
  top: 198px;
        left: 7px;
        width: 55px;
}
.image-pos1 {
  left: 0px;
        top: 98px;
        width: 58px;
}

.facilities-content
 {
        flex-direction: column;
    }
.our-facilities-image{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.facilities-content
 {
    flex-direction: column;
  }
  .our-facilities-body {
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    text-align: center;
}
.our-facilities-img{
  width: 200px;
}
.company-experience{
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: -133px;
  width: 77px;
  height: 60px;
  padding: 0;
  background-size: contain;
}
.our-vision-content {
    padding-left: 0;
    text-align: center;
}
.our-vision-content .section-title {
    width: 100%;
}
.hero-content
 {
        margin-top: 0px;
    }

    .two-side-column {
    flex-direction: column;
}

.sub-hero-content{
  text-align:center;
  width:100%;
  margin-bottom:30px;
}
section.whatis-content-section {
    text-align: center;
    width: auto !important;
    display: inline-block !important;
}

.page-template-sub-page .footer-schedule-section a {
    justify-content: center;
}
.subpage-extra2.section{
  
    padding-top: 15px;
}

footer .address {
    text-align: center;
}

} /*768*/