@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
    --TextColor: #0b2231;
    --TextColor2: #007bff;
    --TextColor3: #000;
    --blue: #0b2231;
    --White: #fff;
    --Black: #000;
    --light-blue: #c4dcf3;
    --off-white: #f3f4f4;
    --sroke-color: #6b6b6b;
    --ThemeFont: "Proxima Nova Rg";
    --ThemeFontTwo: "IvyPresto Headline";
    --linear-gradient: linear-gradient(
        180deg,
        rgba(11, 34, 49, 1) 18%,
        rgba(18, 67, 100, 1) 82%
    );
    --Radius: 50px;
    --item-height: 5.5vh;
    --visible-items: 9;
}
html {
    overflow-x: hidden;
}
ul.f-social-media {
    display: inline-flex;
    gap: 8px;
    /* text-align: center; */
}
.--transition-ease {
    transition: all 0.2s ease-in 0s;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
.--transition-ease:hover {
    transition: all 0.2s ease-in 0s;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
.--transition-ease:after {
    transition: all 0.2s ease-in 0s;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
.--transition-ease:before {
    transition: all 0.2s ease-in 0s;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
ul.f-social-media li {
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    width: 25px;
    height: 25px;
}
h1,
h2 {
    font-family: var(--ThemeFontTwo);
}
.container {
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    max-width: 1600px;
}

.container-fluid {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 15px;
}
li {
    list-style: none;
}
h2 {
    font-size: 4rem;
}
h2.heading {
    font-size: 48px;
    margin-bottom: 19px;
    font-weight: 600;
    color: var(--blue);
    left: 1;
    letter-spacing: 1px;
    line-height: 1.1;
}
/* h2.heading span {
  font-weight: 700;
  font-style: italic;
} */
.miniheading {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000;
    /* text-transform: uppercase; */
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}
img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}
.btn {
    display: inline-block;
    background-color: var(--blue);
    font-size: 16px;
    text-align: center;
    color: var(--White);
    border: 1px solid var(--White);
    border-radius: var(--Radius);
    padding: 0 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 130px;
    height: 50px;
    line-height: 50px;
    transition: transform 0.36s;
}
.btn {
    box-shadow: 0 8px 12px #0b22318a;
    border: none;
    outline: none;
}
body {
    font-family: var(--ThemeFont);
    margin: 0;
}
p {
    font-size: 16px;
    margin: 10px 0;
}
.btn:hover {
    transform: scale(1.06) !important;
}

/************ row col start****************/
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.row .rowin {
    padding: 0 15px;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-8 {
    flex: 0 0 auto;
    width: 66.666667%;
}
.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}
.col-4 {
    flex: 0 0 auto;
    width: 33.33%;
}
.col-3 {
    flex: 0 0 auto;
    width: 25%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.p-0 {
    padding: 0 !important;
}
.pe-0 {
    padding-right: 0 !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.text-center {
    text-align: center;
}
.h-100 {
    height: 100% !important;
}
.max-h-500 {
    max-height: 500px !important;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--TextColor) #eae2d4;
}
/************ row col end****************/

/********************************************
********************* header ********************
*******************************************/
.btn1:hover a {
    display: flex;
    padding: 12px 15px;
    display: ;
    border-radius: 6px;
    align-items: center;
    gap: 8px;
    right: 0;
    top: 50px;
    padding: 10px !important;
}
.btn1 a img {
    width: 20px !important;
    height: 20px !important;
}
.btn1 a {
    display: none;
    position: absolute;
    width: 145px;
}
.btn1 a img {
    width: 31px;
    height: 30px;
}
.head_right.d-flex h6 .btn1 {
    color: var(--TextColor);
    margin-left: 0;
    padding: 0;
    background: transparent;
    border: 1px solid #ffffff30;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
}
/* .head_right.d-flex h6 .btn1 {
  color: var(--TextColor);
  margin-left: 0;
  height: 48px;
  width: 44px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
} */
.head_right.d-flex h6 .btn1 img {
    width: 28px;
    height: 28px;
}
.swiper-prev,
.swiper-next {
    display: none;
}
.nabh_logo {
    background: transparent !important;
    padding: 0 !important;
}
.nabh_logo img {
    height: 70px;
}
.header {
    position: sticky;
    top: 70px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
    background: #fff;
    font-family: "Bai Jamjuree", sans-serif;
}

a.ViewProfileButton {
    background-color: var(--TextColor) !important;
}
.navbar .navbar_in {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.25rem;
    border-radius: 100px;
    background: #0b2231f5;
    padding: 15px 30px;
    border: 1px solid var(--sroke-color);
}
.navbar_in2 {
    padding: 0 70px;
}
.toggle img {
    width: 43px;
}
.toggle {
    display: none;
}
.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    color: var(--color-white-100);
    text-transform: uppercase;
}
.menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background-color: var(--color-black-300);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease-in-out;
}
.menu.is-active {
    top: 0;
    width: 100%;
    height: auto;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
}
/* .btn { border-radius: 5px;font-weight: normal; font-size: 15px; letter-spacing: 0.02em;  line-height: 12px; text-align: center; font-weight: 600; font-size: 14px; padding: 14px 30px; cursor: pointer;} */
.quote-icon {
    width: 38px;
    display: block;
    margin-bottom: 30px;
}
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}
.head_right.d-flex h6 {
    font-size: 16px;
    color: var(--White);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar {
    right: 0;
    margin: auto;
    width: 100%;
    background: var(----White);
    color: #000;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1 !important;
}
.head_right {
    gap: 40px;
}
.navbar-container {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}
.menu-items {
    order: 2;
    margin-bottom: 0px;
}
.logo {
    width: 100%;
    max-width: 180px;
    height: auto;
}
.menu-items li {
    list-style: none;
    font-size: 1.3rem;
}
.navbar li a {
    transition: color 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 40px;
}
/* .head_right.d-flex h6 a {text-decoration: underline;color: var(--White);} */
.head_right.d-flex h6 a {
    text-decoration: underline;
    color: var(--TextColor);
    background: #fff;
    text-decoration: navajowhite;
    font-weight: 600;
    padding: 0 20px;
}
.copy {
    display: none;
    position: absolute;
    color: var(--TextColor);
    background: #fff;
    text-decoration: navajowhite;
    font-weight: 600;
    padding: 10px 10px;
    border-radius: 6px;
    align-items: center;
    gap: 8px;
    right: 0;
    top: 50px;
    text-align: center;
    width: 145px;
    color: green;
}

/* .navbar li a:hover {op} */
.menu-items {
    list-style: none;
    padding: 0;
    width: 100%;
    justify-content: end;
}
.menu-items > li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.dropdown.mob {
    display: none;
}

.dropdown-content a {
    width: 33.33%;
    float: left;
}
.dropdown-content .container {
    max-width: 100%;
    display: grid;
    padding: 0 70px;
}
.dropdown-contentin {
    background-color: var(--blue);
    display: block;
    padding: 35px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0);
    border: 1px solid var(--sroke-color);
    border-radius: 30px;
}
.dropdown-contentin img {
    width: 420px;
    border-radius: 18px;
}
.dropdown-contentin {
    display: flex;
    gap: 35px;
}
.header.fixed .dropdown-content{top: 70px;}

.dropdown-content {
    position: fixed;
    width: 100%;
    top: 136px;
    display: none;
    left: 0;
    min-width: 500px;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    padding: 50px 0;
}
.dropdown-content span {
    width: 31.33%;
    float: left;
    margin: 0 1%;
}
.navbar li .media-content {
    display: none;
    position: absolute;
    width: 100%;
    top: 40px;
    display: none;
    left: 0;
    min-width: 280px;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    padding: 50px 0;
}
.navbar li .media-content ul {
    background: var(--TextColor);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0);
    border: 1px solid var(--sroke-color);
    padding: 10px 29px;
    border-radius: 16px;
}

.navbar .dropdown.media:hover .media-content {
    display: block;
}

.dropdown-content span a {
    text-transform: none;
    letter-spacing: 0px;
}

.navbar li .dropdown-content a:hover {
    font-weight: 500;
}

.dropdown-content li {
    padding: 10px;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.navbar li .dropdown-content a {
    width: 100%;
    display: block;
    line-height: inherit;
    color: var(--White);
    padding: 11px 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
}
/* .navbar li .dropdown-content a:hover {
  background: #113246;
} */
.menu-items a {
    text-decoration: none;
    color: var(--White);
}
.toggle.toggleclose {
    display: none;
}
/* .menu-items a:hover { color: #007BFF;} */
.header.fixed .navbar {
    position: relative;
    top: 0;
}
.header {
    background: var(--TextColor);
}
.header.fixed {
    position: fixed;
    top: 0;
    border-bottom: 1px solid var(--sroke-color);
}
.header.fixed .navbar .navbar_in {
    border: none !important;
}
.swiper_btns {
    display: none;
}
/*****************************************************
**************** new homepage *************************
******************************************************/
.mob_banner {
    display: none;
}
.home_banner .btn {
    color: var(--White);
    border: 1px solid var(--White);
    box-shadow: 0 8px 12px #141414e0;
}
.bg_div {
    padding: 40px;
    position: relative;
}
.bg_div::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--blue);
    height: 85%;
}
.home_banner {
    min-height: 682px;
    background-size: cover;
    background-position: center right;
    border-radius: 40px;
    position: relative;
    margin: auto;
    padding: 0 0 50px;
    height: 90vh;
    display: flex;
    align-items: end;
    width: 100%;
}
.home_banner .container-fluid {
    padding: 0 90px;
}
.home_banner h1 {
    margin: 0 0 30px;
    color: var(--White);
    font-size: 90px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(255, 255, 255, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}
.home_banner h4 {
    margin: 0 0 30px;
    color: var(--White);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(255, 255, 255, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}
.home_banner h2 {
    /* margin: 0 0 35px; */
    margin: 0 0 16px;
    color: var(--White);
    font-size: 43px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(255, 255, 255, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
    line-height: 44px;
}
/* .head_right.d-flex h6 a.btn {
  min-width: 86px;
} */
.head_right.d-flex h6 a.btnquestion img {
    height: 32px;
}
.head_right.d-flex h6 a.btnquestion {
    padding: 0;
    background: transparent;
    border: 1px solid #ffffff30;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.home_banner .banner-heading {
    max-width: 50%;
    margin-top: 100px;
    display: none;
}
.home_banner p {
    color: var(--White);
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0px;
    max-width: 90%;
    margin-bottom: 40px;
}
.home_banner span {
    display: block;
    text-transform: uppercase;
    font-size: 34px;
    color: var(--White);
    letter-spacing: 2px;
}
.home_banner h1 span {
    font-size: 36px;
    font-weight: 500;
    display: block;
    left: 1.3;
    letter-spacing: 4px;
    text-transform: capitalize;
}
.d-flex {
    display: flex;
}
.home_banner .d-flex {
    gap: 10px;
}
.mob-heading {
    display: none;
}

/************************************************
****************service-section ****************
************************************************/
/* .in_cont {
  max-width: 1920px;
  margin: auto;
  margin-top: -75px;
}

.right_ser {
  width: 80%;
  float: right;
  position: relative;
  top: 0;
  font-size: 18px;
  line-height: 26px;

}
.right_ser h4 {
  margin: 0 0 16px;
  font-size: 24px;
  font-family: var(--ThemeFontTwo);
}
.right_ser p::after {
height: 91%;
  width: 2px;
  position: absolute;
  content: "";
  left: 0;
  background: #009fe4;
  top: 1px;
  bottom: 0;
  margin: auto;
}

.right_ser p{
  position: relative;
  margin-left: 15px;
  padding-left: 20px;
}
.service-section { padding-top: 30px; padding-bottom: 70px;}
.service-section .heading.m-0 {
  max-width: 549px;
}
.swiper-container {overflow-y: visible !important;}
.service-section .category-lists-slider { position: relative; gap: 23px;}
.service-section #catgory-slider .swiper-slide { width: auto;}
.service-section .category-button {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 2px solid var(--White);
  height: 480px;
  margin-top: 100px !important;
  object-fit: cover;
}

.service-section .category-button img {
  min-height: 100% !important;
  width: 100%;
  max-height: 100% !important;
  object-fit: cover;
  object-position: top;
}
.service-section .category-button.active {  border: 2px solid var(--blue);  margin-top: -80px; }
.service-section .category-button.active img{transform: scale(1.06) !important; -webkit-transition: -webkit-transform 0.5s; transition: transform 0.5s;}
.service-section .dr-name { background: #ffffff42; position: absolute; bottom: 20px; width: 80%; margin: auto;padding: 22px 20px; backdrop-filter: blur(9px);left: 0px; border-radius: 20px; text-align: center; right: 0;}
.service-section .data-text {display: none;}
.service-section .data-text .row { align-items: center;}
.service-section .data-text.active { display: block; }
.service-section .data-text h6 {font-size: 18px;margin-top: 30px; margin-bottom: 8px; font-weight: 500;color: #000; text-transform: uppercase;}
.service-section .data-text p { font-size: 16px; font-weight: 600;  margin-bottom: 0;} */
/* .service-section .swiper-wrapper { gap: 20px; justify-content: center;}
.service-section .slider-button {width: 25px; height: 25px;  background-color: #37a7f1; box-shadow: 0px 2px 4px rgb(0 0 0 / 30%); border-radius: 50%;color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; position: absolute; top: 5px; z-index: 1; cursor: pointer;  display: none;}
.service-section .slider-button.slider-prev {left: -30px;}
.service-section .slider-button.slider-next {right: -30px;} */
/* .service-section .slider-button.swiper-button-disabled { opacity: 0; visibility: hidden;} */
/* .service-section .box { padding: 30px;margin-top: 20px; background-color: #d9eefd; border-radius: 6px; transition: 0.3s; height: 100%;} */
/* .service-section h2 {font-size: 45px; color: var(--blue); font-weight: 500; letter-spacing: 2px;} */
/* .service-section .heading { justify-content: space-between; margin-bottom: 0;}
.service-section .heading span { margin-top: 70px; font-size: 18px;} */
/* .service-section .main_heading p { font-size:18px; line-height:26px}

.service-section .tab-content{margin-top:50px;}


.owl-item.active.center{margin-top: -80px;}



.owl__tabs .owl-item{
    text-align: center;
  cursor:pointer;
}
.owl-item.active.center{
margin-top:-90px;
}


.tab-pane {
  display:none
}

.tab-pane.active{
  display:block
}
 */

/***********************************************
****************** video-section ****************
**************************************************/
.video-section {
    padding: 0;
    background-image: url(../images/video.png);
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 70px 70px 0px 0;
    height: 790px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.video-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--blue);
    opacity: 0.9;
    border-radius: 70px 70px 0px 0;
}
.video-section .video-title {
    max-width: 60%;
    text-align: left;
    margin: auto;
    position: relative;
    z-index: 1;
}
.video-section .video-title h2 {
    color: var(--White);
    font-size: 51px;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.video-section .video-title h2 SPAN {
    display: block;
    font-weight: 600;
}
.video-section .video-title p {
    color: var(--White);
}
.video-section .video-title .d-flex {
    gap: 35px;
    align-items: center;
}
.video-section .video-title .d-flex p {
    margin: 0;
}
.video-section .btnn img {
    width: 36px;
}
.video-section .btnn {
    border: 1px solid var(--White);
    width: 70px;
    height: 83px;
    line-height: 75px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 14px;
}
.md-modal {
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.md-close img {
    height: 32px;
}
.md-close {
    position: absolute;
    right: 15px;
    background: var(--TextColor);
    padding: 15px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    top: 15px;
}
.md-content {
    height: 100%;
}
.md-content iframe {
    width: 100%;
    height: 100%;
}
.md-show {
    visibility: visible;
}
.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(228, 240, 227, 0.8);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}
.md-effect-12 .md-content {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.md-show.md-effect-12 ~ .md-overlay {
    background-color: #e4f0e3;
}
.md-show.md-effect-12 .md-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.btnss i {
  font-size: 26px;
  color: var(--TextColor);
  height: auto;
  width: auto;
  background: transparent;
  position: relative;
  right: 0;
  top: 0;
  padding: 0;
}

.btnss img {
        height: 24px;
        width: auto;
    }
.btnss {
    display: none;
    z-index: 999;
    position: fixed;
    top: 0;
    background: #0b2231c7;
    left: 0;
    border-radius: 0px 0px 6px 0;
    width: 50px;
    height: 50px;
    z-index: 999;
    position: fixed;
    top: 0;
    background: #ffffffb8;
    left: 0;
    border-radius: 0px 0px 6px 0;
    width: 50px;
    height: 50px;
}
a, button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}


/*****************************************************
************************ cta ***********************
****************************************************/
.cta .ctain {
    padding: 30px 0px 70px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 475px;
}

.cta .btn.call_us {
    margin-left: 8px;
    background: transparent;
    color: var(--TextColor);
    border: 1px solid var(--TextColor);
    height: 48px;
    font-weight: 600;
    min-width: 106px;
}

.cta .ctain {
    /* max-width: 1200px; */
    margin: 50px auto 0;
}
.cta .row {
    align-items: center;
}
.cta .cta-left {
    width: 86%;
}
.cta .cta-left p {
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 20px;
    line-height: 1.7;
    text-align: justify;
}
.heading {
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: 1px;
    line-height: 1.1;
}

/*****************************************************
********************** testimonial *****************
*********************************************************/
/* .testimonial .aligncontentcenter { display: flex;align-items: center;} */
.testimonial .container-fluid {
    max-width: 100%;
}
.testimonial {
    overflow: hidden;
    padding-left: 10px;
}
.testi {
    background: var(--TextColor);
    border-radius: 20px;
    color: var(--White);
    padding: 30px 40px;
    display: flex;
    align-items: center;
}
/* .testi .testi_in p {font-size: 20px; line-height: 34px; font-weight: 300; margin-bottom: 40px; color: var(--White);   min-height: 270px;} */
.testimonial .swiper-slide {
    display: flex !important;
    align-items: stretch;
    height: auto;
}
.testi .testi_in p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--White);
    min-height: 160px;
    text-align: justify;
}
.testimonial .testi .koma {
    width: 68px;
    margin-bottom: 30px;
}
.testimonial .testi .user {
    display: flex;
    gap: 18px;
}
.testimonial .testi .user img {
    width: 55px !important;
    height: 55px;
    border-radius: 50%;
}
.testimonial .testi .row {
    align-items: center;
}
.testimonial .testi .testi_in {
    padding-right: 45px;
    border-right: 1px solid #1d475d;
    margin-right: 45px;
}
.case_study .custom_btn img {
    height: 17px;
    width: auto !important;
}
.case_study .custom_btn {
    align-items: center;
    gap: 9px;
    margin-top: -30px;
    margin-bottom: 50px;
    display: flex;
    color: var(--White);
    justify-content: end;
}
.case_study .casestudy1 {
    border-radius: 15px;
    height: 180px;
    object-fit: cover;
}
.case_study p {
    line-height: 24px;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    display: flex;
    gap: 18px;
}
.case_study p img {
    height: 35px;
}
.testimonial .testi .user {
    margin-top: 20px;
}
.testimonial .testi .user h5 {
    font-size: 20px;
    color: var(--White);
}
.testimonial .testi .user p {
    margin-top: 0;
    font-weight: 300;
    font-size: 16px;
    color: var(--White);
    min-height: auto;
}
.testimonial .owl-nav {
    margin: 20px 0 0;
    text-align: center;
}
.testimonial .owl-carousel .owl-nav button.owl-next,
.testimonial .owl-carousel .owl-nav button.owl-prev {
    margin: 0 20px;
    height: 30px;
    width: 30px;
    border-radius: 4px;
}
.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    box-shadow: 0 0 33px #00000087;
    height: 50px !important;
    width: 50px !important;
    display: inline-block;
    background: #fff !important;
    border-radius: 50% !important;
    z-index: 999999;
}
.testimonial .owl-nav .owl-prev span,
.testimonial .owl-nav .owl-next span {
    font-size: 43px;
    top: -11px;
    position: relative;
    color: var(--ThemeColor);
}
.testimonial .owl-carousel .owl-nav button.owl-prev {
    margin-left: -75px;
}
.testimonial .owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 999999;
    height: 50px;
    margin: auto 0;
    display: flex;
    justify-content: space-between;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 21px !important;
    color: #a3a3a3;
    line-height: 46px !important;
}
.swiper-button-prev,
.swiper-button-next {
    position: relative !important;
    height: 50px !important;
    width: 50px !important;
    background: var(--TextColor) !important;
    border-radius: 5px;
    opacity: 1 !important;
    text-align: center;
}
.swiper-button {
    position: absolute;
    right: 0;
    top: -60px;
    display: flex;
    gap: 34px;
}
.testimonial .heading {
    margin-bottom: 35px;
}

/*****************************************************
********************** service-section *****************
*********************************************************/
/* .service-section .item {align-items: center; background-color: var(--ThemeColor); color: var(--White); display: flex; height: 300px;  justify-content: center;}
.category-lists-slider { margin-bottom: 60px; padding-top: -30px; position: relative;} */
/* .service-section .accordion .accordion-item { border-bottom: 1px solid var(--blue); padding: 0px 20px; position: relative;}
.service-section .accordion { width: 60%; padding: 0; background: var(--off-white);}
.service-section .accordion .accordion-item:last-child {   border-bottom: 0px;}
.service-section .accordion button { position: relative; display: block; text-align: left; width: 100%; padding: 30px 0 30px 0; color: var(--black); font-size: 1.15rem; font-weight: 400; border: none; background: none; outline: none;  position: relative;}
.service-section .accordion button:hover, .service-section .accordion button:focus { cursor: pointer; color: #03b5d2;}
.service-section .accordion button:hover::after, .service-section .accordion button:focus::after { cursor: pointer;  color: #03b5d2; border: 1px solid #03b5d2;}
.service-section .accordion button .accordion-title { padding: 0}
.service-section .accordion button .icon { display: inline-block; position: absolute;  top: 18px; right: 0; border: 1px solid; border-radius: 22px; display: none;}
.service-section .accordion button .icon::before { display: block; position: absolute;  content: ''; top: 9px; left: 5px; width: 10px;  height: 2px; background: currentColor;}
.service-section .accordion button .icon::after { display: block;  position: absolute;  content: ''; top: 5px;  left: 9px; width: 2px;  height: 10px; background: currentColor;}
.service-section .accordion button[aria-expanded='true'] .icon::after { width: 0;}
.service-section .accordion button[aria-expanded='true']+.accordion-content { opacity: 1;  transition: all 200ms linear; will-change: opacity, max-height;}
.service-section .accordion .accordion-content { opacity: 0; max-height: 0; overflow: hidden;  transition: opacity 200ms linear, max-height 200ms linear; will-change: opacity, max-height;}
.service-section .accordion .accordion-content p { font-size: 16px; font-weight: 400; margin: 0px 0px 2em 0;  color: var(--blue);} */
/* .service-section ul.accordion-list li {position: relative; display: flex; width: 100%; cursor: pointer; margin-bottom: 0; padding: 20px 0; gap: 24px;}
.service-section ul.accordion-list li.active h3:after { transform: rotate(45deg);}
.service-section ul.accordion-list li h3 { font-weight: 400; display: block; width: 100%; height: auto;padding: 0 0 0 0; margin: 0; font-size: 22px; letter-spacing: 0.01em; cursor: pointer;}
.service-section ul.accordion-list li div.answer { position: relative; display: block; width: 100%; height: auto; margin: 0; padding-top: 15px; cursor: pointer;}
.service-section ul.accordion-list li div.answer p { position: relative;  display: block; font-weight: 300; cursor: pointer; line-height: 150%; margin:0;}
.service-section .accordion-list{ max-height: 400px; overflow-y: auto; padding:0; margin-top:45px; max-width: 700px;}
.service-section ul.accordion-list li img {
  height: 37px;
  margin-top: 4px;
  width: 28px;
  max-width: 29px;
  object-fit: scale-down;
} */
/* .service-section ul.accordion-list li img {
  height: 46px;
  margin-top: 0;
  width: 36px;
} */
/* .service-section ul.accordion-list li + li {border-top: 1px solid #ccc;} */
/* Firefox */
/* .service-section .accordion-list {scrollbar-width: thin;  scrollbar-color: var(--TextColor) #eae2d4;} */

/* WebKit (Chrome, Safari, Edge) */
/* .service-section .accordion-list::-webkit-scrollbar { width: 3px; background-color: var(--ThemeColor5);}
.service-section .accordion-list::-webkit-scrollbar-track { background-color: #eae2d4;}
.service-section .service-right img { height: 600px !important; object-fit: cover; width: 100%;background-color: var(--TextColor)}
.service-section .accordion-list::-webkit-scrollbar-thumb {background-color: var(--TextColor); border-radius: 10px;}
.service-section .service-right {width:100%; text-align: center; display: flex; flex-direction: column; justify-content: center;align-items: end;position: relative; border-radius: 30px 0 30px 0;overflow: hidden; max-width: 650px;float:right;}
.service-section .service-right .box1 { position: absolute; top: -15px; background: var(--White); padding: 15px;  border-radius: 00px 0px 0px 30px; right: -15px; width: 150px; height: 150px;}
.service-section .service-right .box2 { position: absolute; bottom: -15px; background: var(--White); padding: 15px; border-radius: 00px 30px 0 30px; left: -15px; width: 150px; height: 150px;}
.service-section .service-right .box-border {padding: 0; border: 1px solid var(--extra-light-brown); border-radius: 20px;    background: #0b2231bd; padding: 15px; height: 120px;}
.service-section .service-right .box-border .box-borderin {  border: 1px solid var(--White); border-radius: 12px; height: 100%; display: flex; align-items: center;}
.service-section .service-right .box2::before {content: ""; position: absolute; left: 15px;  bottom: 176px; width: 36px; height: 36px;  background-image: url(../images/corner.png);  background-repeat: no-repeat;}
.service-section .service-right .box2::after {  content: ""; position: absolute; left: 180px; bottom: 11px; width: 36px; height: 36px;  background-image: url(../images/corner.png); background-repeat: no-repeat;}
.service-section .service-right strong {  color: var(--White);   font-size: 40px;  display: block;  margin-bottom: 0;   line-height: 70px;}
.service-section .service-right .box1::before {
  content: "";
  position: absolute;
  right: 179px;
  top: 11px;
  width: 36px;
  height: 36px;
  background-image: url(../images/corner.png);
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.service-section .service-right .box-border .box-borderin div {
  width: 100%;
}
.service-section .service-right .box1::after {
  transform: rotate(180deg);
  content: "";
  position: absolute;
  right: 15px;
  bottom: -31px;
  width: 36px;
  height: 36px;
  background-image: url(../images/corner.png);
  background-repeat: no-repeat;

}

.service-section .service-right span { color: var(--White);font-size: 13px; text-transform: uppercase;}
.service-section .dr-name strong { display: block; color: var(--TextColor); font-size: 22px;  line-height: 1.2; font-weight: 600; margin-bottom: 12px;}
.service-section .dr-name span {
  color: var(--Black);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.service-section .dr-name p { margin: 0; font-size: 15px; color: var(--Black); font-weight: 400; margin-top: 5px;}
.service-section .swiper-container {padding-top: 100px !important;} */

/******************************************
**************** why-choose ***************
****************************************/
.why-choose {
    padding: 60px 0;
}
.why-choose-us .col-md-8 {
    width: 60%;
}
.why-choose .choose-top {
    padding: 30px;
    background: var(--White);
    border-radius: 20px;
    margin-bottom: 30px;
}
.why-choose .choose-top .d-flex.p-0 {
    gap: 20px;
}
.why-choose .box-right {
    width: 60%;
}
.why-choose .choose-left {
    margin-right: 0;
}
.why-choose .box-right p {
    text-align: justify;
    color: var(--blue);
    line-height: 1.7;
}
.why-choose .tab-div {
    background-color: var(--off-white);
    border-radius: 80px;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 4px 16px;
    left: 1;
    letter-spacing: 1px;
    color: var(--blue);
    font-weight: 300;
}
.why-choose .why-us-wrap .choose-img-right {
    margin-left: 10px;
}
.why-choose .why-us-wrap .row {
    align-items: center;
}
.why-choose .why-us-wrap .choose-img-right strong {
    font-size: 24px;
    margin-bottom: 2px;
    font-weight: 600;
}
.why-choose .row_mission {
    margin-bottom: 20px;
}
.why-choose .row_mission .choose-top {
    margin-bottom: 0;
}
.why-choose .why-us-wrap .choose-marquee strong {
    text-align: center;
    font-size: 28px;
    margin-bottom: 28px;
}
.why-choose .choose-marquee {
    padding: 30px;
    background: var(--White);
    border-radius: 14px;
    height: 100%;
    overflow: hidden;
}

.why-choose .choose-marquee.aboutmar {
    height: 500px;
}

.why-choose .box-left {
    width: 30%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
.why-choose .box-left img {
    height: 226px;
    object-fit: cover;
}
.why-choose .why-us-wrap .mt-0.heading {
    margin-bottom: 35px;
}
.why-choose .box-right {
    width: 60%;
}
.why-choose .choose-right {
    padding: 30px;
    background: var(--White);
    border-radius: 20px;
    gap: 30px;
}
.why-choose .why-us-wrap .choose-marquee .choose-bottom strong {
    text-align: left;
}
.why-choose .why-us-wrap .choose-marquee .choose-bottom {
    margin-top: 40px;
}
.why-choose-us h2 {
    line-height: 1.2;
    font-size: 2.8rem;
    margin-bottom: 17px;
}
.why-choose-us h2 span {
    color: var(--TextColor2);
}
.why-choose-us p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0px;
}
.why-choose-us ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: 40px;
}
.why-choose-us ul li {
    width: 45%;
    margin-bottom: 20px;
}
.why-choose-us ul li:nth-child(1) {
    border-bottom: 2px solid var(--TextColor2);
    padding: 20px 0px 34px;
    margin-right: 40px;
    margin-bottom: 35px;
    margin-top: 10%;
    position: relative;
}
.why-choose-us ul li:nth-child(2) {
    padding: 20px 16px;
    position: relative;
    margin-bottom: 50px;
}
.why-choose-us ul li:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: 49px;
    left: 0;
    right: 0;
    width: 100%;
    border: 1px solid var(--TextColor2);
}
.why-choose-us ul li:nth-child(3) {
    padding: 20px 16px;
    margin-right: 40px;
}
.why-choose-us ul li:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: -28px;
    right: -20px;
    width: 1px;
    border: 1px solid var(--TextColor2);
    height: 140%;
}
.why-choose-us ul li:last-child {
    padding: 20px 16px;
    margin-left: 8px;
    position: relative;
    margin-top: -59px;
}
.why-choose-us ul li span {
    color: #043b76;
    font-size: 23px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}
.why-choose-us ul li p {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.why-choose-us ul li:last-child::before {
    content: "";
    position: absolute;
    bottom: -33px;
    left: 0;
    left: -30px;
    width: 1px;
    border: 1px solid var(--TextColor2);
    height: 107%;
}
.why-choose-us ul li li:nth-child(1) {
    padding: 0;
    border: 0;
    margin: 0;
}
.why-choose-us ul li li:nth-child(2) {
    padding: 0;
    border: 0;
    margin: 0;
}
.why-choose-us ul li li:nth-child(3) {
    padding: 0;
    border: 0;
    margin: 0;
}
.why-choose-us ul li li:nth-child(4) {
    padding: 0;
    border: 0;
    margin: 0;
}
.why-choose-us ul li li:nth-child(1)::after {
    margin: 0;
    border: 0;
}
.why-choose-us ul li li:nth-child(2)::after {
    margin: 0;
    border: 0;
}
.why-choose-us ul li ul li::before {
    margin: 0;
    border: 0;
}
.why-choose-us ul li ul li:last-child::before {
    border: 0;
}
.why-choose-us ul li ul li:last-child {
    margin: 0;
    padding: 0;
}
.why-choose-us ul li img {
    margin-bottom: 20px;
}
.why-choose-us .row {
    align-items: center;
}
.why-choose-us .choose-heading {
    margin-right: 30px;
}
.why-choose-us ul li li {
    width: 100%;
    margin-bottom: 10px !important;
    list-style-type: disc;
}
.why-choose-us ul li ul {
    margin-top: 20px;
}
.why-choose-us ul li li p {
    font-size: 16px;
}
.why-choose .why-us-wrap {
    padding: 50px;
    background: var(--off-white);
    border-radius: 40px;
}
.why-choose .why-us-wrap strong {
    font-size: 27px;
    font-weight: 400;
    color: var(--blue);
    display: block;
    margin-bottom: 25px;
}
.why-choose .col-md-8 {
    width: 60%;
}
.why-choose .col-md-4 {
    width: 40%;
}
.why-choose .choose-top li {
    width: 50%;
    align-items: center;
    gap: 10px;
}

.why-choose .choose-top li .choose-img {
    min-width: 75px;
    text-align: center;
    display: flex;
    justify-content: center;
}
/* .why-choose .choose-top li span { font-size: 19px;} */
.why-choose .choose-top .choose-img img {
    height: 66px;
}

.why-choose .choose-top li span {
    color: var(--blue);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}
.choose-right.d-flex.choose-right-home {
    margin-top: 30px;
}
.why-choose.why_choose_about p {
    color: var(--blue);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    text-align: justify;
}
.choose-right-home .box-left {
    width: 50%;
    position: relative;
}
.why-choose .choose-right-home .box-right {
    border-right: 1px solid #ccc;
    padding-right: 30px;
}
.choose-right-home .box-left img {
    height: 100%;
}
.choose-right-home .box-left .cont .icon {
    height: 49px !important;
    margin-bottom: 15px;
    width: auto !important;
}
.choose-right-home .box-left .cont div {
    padding: 20px;
}
.choose-right-home .box-left .cont {
    position: absolute;
    bottom: -75px;

    width: 100%;
    color: var(--White);
    left: 0;
    background: linear-gradient(0deg, #001421, #0b223112) !important;
    height: 100%;
    display: flex;
    align-items: self-end;
    transition: all 0.5s;
    -webkit-transition: all 0.25s;
}
.choose-right-home .box-left:hover .cont {
    bottom: 0;
}
.choose-right-home .box-left .cont strong {
    color: var(--White);
}
.choose-right-home .box-left .cont p {
    margin-bottom: 0;
}
.choose-right-home .box-left .cont strong {
    color: var(--White);
    margin-bottom: 0;
}
.why-choose .choose-marquee .img img {
    width: 100%;
    height: 100%;
}

.why-choose .choose-marquee .img div {
    height: 100%;
}
.slider-container2 {
    position: relative;
    height: 515px;
    overflow: hidden;
}

.slider-content2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    will-change: transform;
}
.slider-item2 {
    height: auto;
    padding: 0 15px;
    font-size: 22px;
    color: #333;
    text-align: center;
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: blur(2px);
    opacity: 0.6;
    min-height: 70px;
    margin-bottom: 26px;
}
.slider-item2.active {
    filter: none;
    opacity: 1;
}

.slider-item2.hidden {
    opacity: 0;
}

.dark-circle2 {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 125px;
    border-radius: 10px;
    background: var(--TextColor);
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

/*************** slider-wrapper **********/

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: calc(var(--item-height) * var(--visible-items));
    margin: 0 auto 0;
    overflow: hidden;
}

/* Highlight Bar stays fixed in center */
.highlight-bar {
    position: absolute;
    top: calc(50% - var(--item-height) / 2);
    left: 0;
    right: 0;
    height: var(--item-height);
    background-color: var(--TextColor);
    pointer-events: none;
    z-index: 1;
    border-radius: 30px;
}

/* Moving text list */
.text-slider {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.text-slider li {
    height: var(--item-height);
    line-height: var(--item-height);
    text-align: center;
    font-size: 2.2vh;
    color: #aaa;
    transition: color 0.5s, font-size 0.5s;
}

.text-slider li.in-highlight {
    color: var(--White);
    font-weight: bold;
    font-size: 3vh;
    transition: color 0.5s, font-size 0.5s;
}

/* Fade mask on top and bottom */
.blur-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.7) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.7) 80%,
        rgba(255, 255, 255, 1) 100%
    );
}

/****************** marquee start*****************/
.marquee {
    font-weight: 200;
    display: block;
    align-items: center;
    overflow: hidden;
    min-height: 569px;
    height: 100%;
    position: relative;
}
.marquee-content {
    position: absolute;
    left: 0;
    top: 0;
    animation: marquee-horizontal 0s linear infinite running,
        marquee-vertical 15s linear infinite running;
    width: 100%;
}
.marquee-content:hover {
    animation-play-state: paused;
}
.marquee-tag {
    width: 100%;
    margin: 0.5em 0;
    padding: 0.5em 0;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-direction: column;
}
.marquee-tag.active p {
    font-size: 30px;
    font-weight: 500;
    color: var(--White);
    text-align: center;
}
.marquee-tag p {
    text-align: center;
    font-size: 24px;
    padding: 0 30px;
}
.marquee-tag {
    filter: blur(0.15rem);
}
/* .marquee-tag.active {padding: 30px 0 0; background: var(--blue); border-radius: 10px; filter: blur(00rem);} */
.marquee-tag.active {
    padding: 30px 0 0;
    background: var(--blue);
    border-radius: 10px;
    filter: blur(00rem);
    position: absolute;
    top: 0;
}
@keyframes marquee-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-vertical {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes marquee-horizontal {
    0% {
        left: 0;
    }
    100% {
        left: 0;
    } /* No horizontal movement */
}

@keyframes marquee-vertical {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/****************** marquee end*****************/
.carousel-wrap {
    margin: 90px auto;
    padding: 0 5%;
    width: 80%;
    position: relative;
}
.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}
.owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
}
.owl-nav i {
    font-size: 52px;
}
.owl-nav .owl-prev {
    left: -30px;
}
.owl-nav .owl-next {
    right: -30px;
}
/* fix blank or flashing items on carousel  end*/

/*******************************************
***************** faq ********************
********************************************/
.faq {
    margin-bottom: 70px;
}
.faq img {
    border-radius: 15px;
}
.faq h2 {
    font-size: 40px;
}
.faq ul.accordion-list li {
    align-items: center;
    position: relative;
    display: flex;
    width: 100%;
    cursor: pointer;
    margin-bottom: 0;
    padding: 20px 0;
    gap: 25px;
}
.faq ul.accordion-list li span {
    font-size: 50px;
    color: #b1b1b1;
    font-family: var(--ThemeFontTwo);
    font-weight: 600;
    margin-top: -5px;
}

.faq ul.accordion-list li.active h3:after {
    transform: rotate(45deg);
}
.faq ul.accordion-list li h3 {
    font-weight: 400;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 22px;
    letter-spacing: 0.01em;
    cursor: pointer;
}
.faq ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 15px;
    cursor: pointer;
}
.faq ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    font-weight: 300;
    cursor: pointer;
    line-height: 150%;
    margin: 0;
    text-align: justify;
    color: var(--blue);
    line-height: 1.7;
}
.faq .accordion-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    margin-top: 45px;
    padding-right: 10px;
}
.faq ul.accordion-list li + li {
    border-top: 1px solid #ccc;
}
.faq .accordion-list::-webkit-scrollbar-track {
    background-color: #eae2d4;
}
.faq .accordion-list::-webkit-scrollbar {
    width: 5px;
    background-color: var(--ThemeColor5);
}
.faq .accordion-list::-webkit-scrollbar-thumb {
    background-color: var(--TextColor);
    border-radius: 10px;
}
.faq .img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.faq .faq_in {
    padding: 50px;
    background: var(--off-white);
    border-radius: 40px;
}
.faq_right {
    padding-left: 40px;
    padding-right: 5px;
}

.faq ul.accordion-list li img {
    height: 37px;
    margin-top: 4px;
    width: 28px;
    max-width: 29px;
    object-fit: scale-down;
}

/* WebKit-based browsers: Chrome, Safari, Edge */

/*******************************************
***************** cta2 ********************
********************************************/
.cta2 {
    padding: 0 0 70px;
    text-align: center;
}
.cta2 h2 {
    font-size: 50px;
    margin-bottom: 30px;
    color: var(--blue);
    letter-spacing: 1px;
    line-height: 1.1;
}
.cta2 h2 span {
    font-weight: 600;
}
.cta2 .btn {
    display: inline-block;
}
.mt-5 {
    margin-top: 60px;
}
.cta2 p {
    margin-bottom: 20px;
}

/******************************************
**************** home_banner.about ***************
****************************************/
.home_banner.about {
    background: var(--linear-gradient);
    border: 1px solid var(--sroke-color);
    min-height: 500px;
    height: 50vh;
}
.home_banner.about .about-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    padding-top: 185px;
}
.home_banner.about .about-title span {
    margin-bottom: 12px;
}
.about-us.single_service .about-img img {
    min-height: 350px;
    object-fit: cover;
    object-position: center;
}
.about-us.single_service p br {
    display: none;
}
.single_service p,
.abtpage p {
    width: 100% !important;
}
.single_service .about-btn,
.abtpage .about-btn {
    padding-top: 0;
    text-align: right;
}
.single_service .inrow,
.abtpage .inrow {
    padding-left: 20px;
}
.about-us .about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.single_service .about-img p {
    width: 100%;
}
.about-us .about-img .dr-name strong {
    display: block;
    color: var(--TextColor);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
}
.about-us .about-img .dr-name span {
    color: var(--Black);
    text-align: center;
    font-size: 15px;
    margin-bottom: 7px;
    font-weight: 500;
    display: block;
}
.about-us .about-img .dr-name p {
    margin: 0;
    font-size: 16px;
    color: var(--Black);
    font-weight: 600;
    text-align: center;
}
.about-us .about-img .dr-name {
    background: #ffffff42;
    position: absolute;
    bottom: 20px;
    width: 80%;
    margin: auto;
    padding: 22px 20px;
    backdrop-filter: blur(9px);
    left: 0px;
    border-radius: 20px;
    text-align: center;
    right: 0;
}
.about-us .about-img img {
    object-fit: cover;
    position: relative;
    width: 100%;
    max-height: inherit;
}
.about-us h2.heading br {
    display: none;
}
.about-us.career_about_us .row {
    align-items: center;
}
.about-us.career_about_us p.mt-0::after {
    top: 0;
    bottom: 0;
    margin: auto;
}
.choose-left1 p {
    line-height: 28px;
}
.choose-left1 {
    background: var(--TextColor);
    padding: 40px;
    margin-top: 30px;
    border-radius: 20px;
    color: var(--White);
}
.choose-left1 h3 {
    font-size: 27px;
    font-weight: 400;
    color: var(--White);
    display: block;
    margin-bottom: 25px;
    margin-top: 0;
}
.choose-left1 ul {
    padding: 0;
}
.choose-left1 ul li img {
    width: 19px;
    height: 20px;
}
.choose-left1 ul li {
    display: flex;
    gap: 16px;
    margin-bottom: 9px;
}
/* testi_carousel */
.testi_carousel p {
    color: var(--Black);
}

.testi_carousel .owl-nav






/* new_section_home */
.new_section_home {
    margin: 30px 0 60px;
}
.new_section_home h2.heading {
    margin-bottom: 30px !important;
}
.new_section_home p {
    line-height: 24px;
    text-align: justify;
    /* text-align: justify; */
}
.new_section_home .testi_carousel {
    max-width: 500px;
}
.new_section_home .users {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}
.new_section_home .users img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    max-width: 50px;
}
.new_section_home .users h4 {
    margin: 0;
    font-size: 18px;
}
.new_section_home .users p {
    margin: 0;
    font-size: 16px;
}
.new_section_home .stt {
    margin: 60px 0;
}
.new_section_home .stt .st {
    background: #e7e8ec;
    border-radius: 20px;
    padding: 20px;
    /* min-height: 320px; */
}
.new_section_home .stt .st.doctor {
    background: #cdeaf8;
}
.new_section_home .stt .st p {
    margin-bottom: 0;
}
.new_section_home .stt .st h1 {
    font-size: 40px;
    margin: 60px 0 0;
}
.new_section_home .stt .st img {
    width: 80px;
    float: right;
}
.new_section_home .stt .st h3 {
    font-size: 22px;
    margin-bottom: 0;
}
.new_section_home .stt .heading {
    text-align: center;
    font-size: 44px;
    margin-top: 10px;
}
.new_section_home .stt .img h3 {
    font-size: 22px;
    margin-top: 20px !important;
    text-align: center;
}
.new_section_home .stt .img.deep_bulding img {
    max-height: 400px;
    position: relative;
}
.new_section_home .stt .img h3 span {
    font-size: 15px;
    opacity: 0.8;
}
.new_section_home .stt .img img {
    border-radius: 20px;
    max-height: 380px;
    width: 100%;
    object-fit: cover;
}
.new_section_home .testi_carousel p img {
    width: 55px;
    height: auto;
    float: left;
    margin-right: 16px;
}
.new_section_home .stt .row_div {
    align-items: center;
}
.img.deep_bulding {
    position: relative;
    top: -10px;
}

.allusers.doctors .col-3 {
    margin-bottom: 30px;
}

/* allusers */
.allusers {
    margin: 60px 0;
}
.allusers .main_heading {
    max-width: 820px;
    margin: 0 auto 25px;
}
.allusers .main_heading p {
    line-height: 25px;
}
.allusers .main_heading p {
    max-width: 600px;
    margin: auto;
}
/* .allusers .about-img { min-height: 495px; } */
.allusers .about-img .dr-name strong {
    display: block;
    color: var(--TextColor);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 12px;
}
.allusers .about-img .dr-name span {
    color: var(--Black);
    font-size: 15px;
    margin-bottom: 7px;
    font-weight: 500;
    display: block;
}
.allusers .about-img .dr-name p {
    margin: 10px 0 15px;
    font-size: 16px;
    color: var(--Black);
    font-weight: 600;
}
.allusers .about-img .dr-name {
    background: #ffffff42;
    margin: auto;
    padding: 15px 15px;
    backdrop-filter: blur(9px);
    border-radius: 20px; /*min-height: 155px;*/
}
.allusers .about-img img {
    object-fit: cover;
    position: relative;
    width: 100%;
    max-height: inherit;
    max-height: 300px;
    border-radius: 13px;
}
.allusers .about-img {
    box-shadow: 0 1px 8px #ccccccc4;
    padding: 8px;
    margin: 10px 0;
    border-radius: 16px;
}
.allusers .item {
    padding: 0 10px;
}
.allusers .about-img .dr-name .btn {
    background: transparent;
    color: var(--TextColor);
    border: 1px solid var(--TextColor);
    box-shadow: none;
    min-width: 115px;
    height: 48px;
}

.allusers .about-img .dr-name p.opd_time {
    margin: 0;
    font-weight: 400;
}

.owl-carousel.user_items3 {
    max-width: 1200px;
    margin: auto;
}

.doctor4 .owl-prev,
.doctor4 .owl-next {
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.doctor4 .owl-nav {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 13px;
}
.doctor4 .owl-prev span,
.doctor4 .owl-next span {
    font-size: 18px;
}

.doctor1 .item {
    max-width: 900px;
    margin: auto;
}
.doctor1 .row {
    align-items: center;
}
.doctor1 .about-img .dr-name p.cont {
    color: var(--Black);
    font-size: 15px;
    margin: 20px 0;
    font-weight: 500;
    display: block;
    line-height: 24px;
    text-align: justify;
}
.doctor1 .about-img .dr-name strong {
    font-size: 28px;
}
.doctor1 .about-img img {
    max-height: 300px;
    object-fit: cover;
    object-position: 0 -46px;
}
.doctor1.doctor2 {
    max-width: 1250px;
    margin: auto;
}
.doctor1.doctor2 .about-img .dr-name strong {
    font-size: 24px;
}
.doctor1.doctor2 .about-img .dr-name {
    padding: 0 15px 0 0;
}
.doctor2 .about-img img {
    max-height: 200px;
    object-position: 0 -30px;
}

/* home_team */
.mob_team {
    display: none;
}
.home_team {
    margin: 60px 0;
    height: 700px;
    text-align: center;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: top;
    padding-bottom: 40px;
    position: relative;
}
.home_team::after {
    background: var(--Black);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    opacity: 0.4;
}
.home_team .container {
    position: relative;
    z-index: 99;
}
.home_team .heading {
    color: var(--White);
    text-shadow: 0 2px 4px #000000d4;
}
.home_team ul li {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(9px);
    background-color: #08080814;
    width: 260px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    border-radius: 15px;
    color: var(--White);
    text-shadow: 0 0px 2px #000000d4;
}
.home_team ul {
    padding: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}
.home_team ul li strong {
    display: block;
    font-size: 22px;
    margin-bottom: 7px;
}

/* home_services */

.home_services {
    margin-bottom: 60px;
}
.home_services .main_heading {
    max-width: 820px;
    margin: 0 auto 25px;
}
.home_services .owl-carousel .owl-nav button i {
    background-color: transparent !important;
}
.home_services .owl-carousel .owl-nav button i {
    background-color: transparent !important;
    background-size: 22px !important;
}
.home_services .owl-carousel .owl-nav button {
    background: var(--TextColor) !important;
}
.home_services .carousel-accordion.owl-carousel {
    max-width: 200%;
    margin: 3vh auto;
}
.home_services .carousel-accordion.owl-carousel .owl-stage {
    display: flex;
}
.home_services .carousel_main {
    padding-left: 50px;
    padding-right: 50px;
}
.home_services .carousel-accordion .owl-item a {
    text-decoration: none;
    color: inherit;
}
.home_services .carousel-accordion .accordion_li .bg-image {
    height: 70vh;
    display: flex;
    max-height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}
.home_services .carousel-accordion .owl-item.expanded .accordion_li {
    max-width: 365px;
}
.home_services .carousel-accordion .accordion_li img {
    height: 55px;
    width: auto !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}
.home_services .accordion_li h4 {
    font-size: 18px;
    margin: 20px 0 15px;
    max-width: 215px;
}
.home_services .accordion_li .cont_img {
    position: absolute;
    bottom: 15px;
    transition: all 0.5s;
    -webkit-transition: all 0.25s;
}
.home_services .expanded .accordion_li .cont_img {
    bottom: 0;
    position: relative;
}

.home_services .expanded .accordion_li {
    padding-right: 40% I !important;
}
.home_services .expanded .accordion_li p {
    display: block;
    bottom: 0;
    position: relative;
}
.home_services .expanded .accordion_li::after {
    display: none;
}
.home_services .accordion_li p {
    position: absolute;
    bottom: -154px;
    transition: all 0.5s;
    -webkit-transition: all 0.25s;
}

.home_services .accordion_li {
    display: flex;
    align-items: self-end;
    background: var(--TextColor);
    padding: 24px;
    border-radius: 10px;
    height: 240px;
    color: var(--White);
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
}
.home_services .expanded .accordion_li::after {
    display: block;
    background: linear-gradient(80deg, #001421, #0b223112) !important;
    padding-right: 0 !important;
}
.home_services .accordion_li::after {
    background: var(--TextColor);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.home_services .accordion_li div {
    position: relative;
    z-index: 9;
}
.home_services .owl-carousel .owl-nav {
    text-align: center;
}
.home_services .owl-carousel .owl-nav button.owl-prev {
    left: -50px;
    height: 40px;
    border-radius: 100%;
    margin: 0 5px;
    background: #000;
    display: inline-grid;
    place-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.home_services .owl-carousel .owl-nav button.owl-prev:focus {
    outline: 0;
}
.home_services .owl-carousel .owl-nav button.owl-next .angle-right,
.home_services .owl-carousel .owl-nav button.owl-prev .angle-left {
    height: 30px;
    width: 30px;
    border-radius: 10px;
    background: #000
        url(https://png.pngtree.com/element_our/20190601/ourlarge/pngtree-white-direction-arrow-right-icon-image_1338652.jpg)
        no-repeat center;
    background-size: 10px auto;
}
.home_services .owl-carousel .owl-nav button.owl-prev .angle-right.angle-left {
    rotate: 180deg;
}
.home_services .owl-carousel .owl-nav button.owl-prev .angle-left.angle-left {
    rotate: 180deg;
}
.home_services .owl-carousel .owl-nav button.owl-next {
    right: -50px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin: 0 5px;
    background: #000;
    display: inline-grid;
    place-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.home_services .owl-carousel .owl-nav button.owl-next:focus {
    outline: 0;
}

.insta_scan h3 {
    font-size: 36px;

    margin-bottom: 0;
}
.insta_scan {
    display: flex;
    max-width: 885px;
    margin: auto;
    align-items: center;
    gap: 13px;
    margin-top: -44px;
}
.insta_scan img {
    margin: 0;
}
.insta .main_heading {
    max-width: 1030px;
    margin: 0 auto 25px;
}
.insta {
    margin: 0 0 70px 0;
}

.insta_scan_code {
    padding: 26px;
    background: var(--off-white);
    border-radius: 40px;
}
.insta .owl-nav {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 13px;
    top: 0;
    bottom: 0;
    position: absolute;
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 40px;
}
/* .insta .owl-nav {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 13px;
  margin:20px;
} */
.insta .insta-img {
    border-radius: 15px;
    overflow: hidden;
}
.insta .owl-prev,
.insta .owl-next {
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--White);
}
.insta .owl-nav span {
    font-size: 18px;
}

/******************************************
**************** legacy ***************
****************************************/
.legacy .sliderTab {
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    padding: 0;
    height: 89px;
}
.legacy .sliderTab_main {
    background: var(--TextColor);
    padding: 50px 60px !important;
    border-radius: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}
.legacy .sliderTab .swiper-wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: start;
}
.legacy .sliderTab .swiper-slide {
    width: auto !important;
    min-width: 350px;
}
.legacy .sliderTab .swiper-slide a {
    width: 100%;
    display: block;
}
.legacy .sliderTab .swiper-slide.on .text {
    filter: blur(0rem);
    color: var(--White);
    font-size: 70px;
}
.legacy .sliderTab .swiper-slide .text {
    line-height: 50px !important;
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 15px 5px 15px 5px;
    white-space: nowrap;
    font-size: 43px;
    line-height: 1em;
    letter-spacing: 0.05em;
    color: var(--White);
    transition: 0.25s;
    filter: blur(0.16rem);
}
.legacy .sliderTab .swiper-slide .text:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color1);
    transform: translateX(-50%);
    transition: 0.25s;
}
.legacy .sliderTab .swiper-slide.on .text:after {
    width: 100%;
}
.legacy .sliderContent {
    width: 100%;
}
.legacy .sliderContent .swiper-slide .title {
    margin-bottom: 15px;
    font-size: 30px;
    text-align: center;
}
.legacy .sliderContent .swiper-slide .content {
    margin: 0 auto;
    max-width: 500px;
    font-size: 14px;
    line-height: 2;
    text-align: center;
}
.legacy {
    background: #f3f4f4;
    border-radius: 60px 60px 0 0;
    padding: 60px 0;
    margin-bottom: 70px;
}
.legacy .faq .img {
    min-height: 600px;
}
.legacy .container-fluid {
    max-width: 1800px;
}

/* legacy.key_services  */
.legacy.key_services {
    margin-top: 70px;
}
.legacy.key_services .sliderTab .swiper-slide.on span {
    font-size: 30px !important;
}
.legacy.key_services .sliderTab .swiper-slide.on .text,
.legacy .sliderTab .swiper-slide .text {
    font-size: 24px;
    white-space: inherit;
    line-height: 38px !important;
}
.legacy.key_services .sliderTab .swiper-slide {
    min-width: auto;
    max-width: 410px;
}
.legacy.key_services .sliderTab {
    height: auto;
}

/******************************************
**************** our-team ***************
****************************************/
.our-team {
    padding: 90px 0;
    background: var(--blue);
    border-radius: 50px 50px 0 0;
}
.our-team img {
    border-radius: 30px;
    height: 500px;
    width: 100%;
}
.our-team .team-left .heading {
    color: var(--White);
}
.our-team .team-left p {
    color: var(--White);
    margin: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.our-team .about-img {
    overflow: hidden;
    border-radius: 30px;
    overflow: hidden;
}
.our-team .team-left {
    margin-right: 120px;
}
.our-team .row {
    align-items: center;
}

/*******************************************
***************** listtable ********************
********************************************/
.listtable {
    margin: 70px 0 0;
}
.listtable .listtable_in {
    margin-top: 60px;
}
.listtable .set h4 {
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-transform: uppercase;
}
.listtable .set + .set {
    border-top: 1px solid #cccccc94;
    padding-top: 25px;
}
.listtable .set {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 30px;
}
.listtable .set p {
    font-size: 16px;
    font-weight: 400;
}
.listtable .listtable_in {
    padding: 50px;
    background: var(--off-white);
    border-radius: 40px;
}
.listtable .image {
    position: relative;
}
.listtable .image img {
    border-radius: 30px;
    height: 100%;
    width: 100%;
}
.listtable .set span {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
}
.listtable .set span.mob {
    display: none;
}
.listtable .image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.listtable .cont {
    padding: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 15px;
}
.listtable .cont h4 {
    color: var(--White);
    font-size: 28px;
    margin-bottom: 10px;
}
.listtable .cont p {
    color: var(--White);
    margin-bottom: 20px;
}
.listtable .cont .cont_in {
    text-align: center;
    padding: 30px 40px;
}
.listtable .listtable_in .answer {
    font-size: 16px;
    margin: 20px 0;
    padding: 20px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 12px #0b223112;
}

.popup-box .input::placeholder {
    font-weight: 300;
    color: #ffffff8c;
    font-size: 14px;
}
.popup-box .input-container {
    margin-bottom: 20px;
}
form .input-container .error {
    color: #ff4a4a;
    font-size: 14px;
    margin-top: 7px;
}
.popup-box .input-container span #position option {
    color: var(--TextColor);
}
.popup-box label {
    color: #fafafa;
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 500;
}
.popup-box .input {
    width: 100%;
    outline: none;
    background: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: none;
    border: none;
}
.popup-box_in .btn {
    background: var(--White);
    color: var(--TextColor);
    font-weight: 600;
}
.popup-box .input-container span {
    display: block;
    border: 1px solid #fafafa52;
    border-radius: 5px;
    padding: 12px 14px;
}

/* blogs */
.blogs {
    margin: 20px 0 70px;
}

.main_blogs.single_blogs {
    margin-top: -120px;
}

.main_blogs {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    margin-top: 0;
    box-shadow: 0 8px 13px #0b223124;
}
.main_blogs img {
    border-radius: 34px;
    margin: auto;
    height: 700px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.blogs .cont p,
.left_blog .cont ul li {
    line-height: 28px;
    text-align: justify;
    font-size: 20px;
}
/* .main_blogs.single_blogs.main_news {
  border-radius: 34px;
  background: var(--White);
  box-shadow: 0 5px 11px #1141601f;
}
.main_blogs.main_news img {
  object-position: center;
  object-fit: contain !important;
  width: 100% !important;
} */

.main_blogs.single_blogs.main_news img {
    object-position: top;
    /* object-fit: contain; */
}
.main_blogs.single_blogs.main_news {
    background: var(--White);
}

.main_blogs .text {
    position: absolute;
    bottom: 0;
    padding: 250px 30px 30px;
    background: linear-gradient(0deg, #001421, #0b223100) !important;
    width: 100%;
    left: 0;
}

.main_blogs h3 {
    font-size: 36px;
    margin: 0 0 20px;
    color: var(--White);
}
.main_blogs p {
    margin: 0;
    color: var(--White);
}
.main_blogs .btn {
    color: var(--White);
    background: top;
    text-decoration: none;
    font-weight: 600;
    margin-top: 31px;
    border: 1px solid var(--White);
}
.blogs p {
    line-height: 24px;
    text-align: justify;
}
.blogs .set img {
    width: 200px;
    border-radius: 13px;
    height: 125px;
    object-fit: cover;
    object-position: center;
}
.blogs .set a {
    font-weight: 600;
    text-decoration: underline;
    color: var(--TextColor);
}
.blogs .set {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    gap: 20px;
    background: var(--off-white);
    padding: 8px 20px 8px 8px;
    border-radius: 13px;
}
.blogs .set h3 {
    margin: 0 0 10px;
    color: var(--TextColor);
    font-size: 22px;
}
.recent_blogs p {
    line-height: 24px;
}
.recent_blogs .set p {
    line-height: 24px;
    text-align: justify;
}
.recent_blogs {
    margin-bottom: 70px;
}
.recent_blogs .main_heading {
    max-width: 820px;
    margin: 0 auto 25px;
}
.recent_blogs .set a {
    font-weight: 600;
    text-decoration: underline;
    color: var(--TextColor);
}
.recent_blogs .set {
    margin-bottom: 15px;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 12px #0b22312b;
    overflow: hidden;
}
.recent_blogs .set h3 {
    margin: 0 0 10px;
    color: var(--TextColor);
    font-size: 24px;
}
.recent_blogs .set .cont {
    padding: 20px;
}

.recent_blogs .set .btn {
    color: var(--TextColor);
    background: top;
    text-decoration: none;
    font-weight: 600;
    margin-top: 21px;
    border: 1px solid var(--TextColor);
    box-shadow: none;
    min-width: 126px;
    height: 46px;
}
.recent_blogs .btns {
    width: 100%;
    text-align: center;
    margin-top: 32px;
}
.recent_blogs .btns .btn {
    background: #e8ecec;
    color: var(--TextColor);
    font-weight: 600;
    box-shadow: none;
    text-transform: capitalize;
    font-size: 18px;
}

.blogs .right_blogs .hdn {
    font-size: 28px;
    margin-top: 8px;
    padding-bottom: 10px;
    position: relative;
}
.blogs .right_blogs .hdn::after {
    background: var(--TextColor);
    width: 100px;
    height: 2px;
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
}
.single_blog h2.heading {
    font-size: 38px;
}
.blogs.single_blog .set img {
    width: 160px;
    height: 120px;
}
.blogs.single_blog .left_blog h4 {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--TextColor);
}

.blogs .right_blogs .set h3 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.single_blog .right_blogs.right_blogs2 {
    margin-top: 35px;
}

.blogs .right_blogs_main {
    border-left: 1px solid #cccccc9c;
    padding-left: 30px;
    margin-left: 8px;
}

.single_blog .right_blogs_cta {
    text-align: center;
    padding: 20px 0;
}
/* .single_blog .left_blog .cont {
  max-height: 690px;
  overflow-y: auto;
  padding-right:15px;
} */

.single_blog .left_blog .cont ul {
    padding: 0 0 0 0px;
    margin: 10px 0 22px;
    display: block;
}

.left_blog .cont ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.left_blog .cont ul li::after {
    content: "";
    position: absolute;
    opacity: 0.3;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 4px;
    border: 1px solid var(--TextColor);
}
.left_blog {
    display: flex;
    gap: 21px;
}

.left_blog ul li {
    margin-bottom: 10px;
}

.left_blog ul li a {
    border: 1px solid #0b223182;
    padding: 2px;
    width: 40px;
    height: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 7px;
}

.left_blog ul li img {
    width: 26px;
}

.home_banner.about.s_blogs h1 {
    font-size: 60px;
}

.s_blogs .user p {
    margin: 0;
    font-size: 15px;
    display: table-row;
}

.s_blogs .user h5 {
    font-size: 20px;
    color: var(--White);
    margin: 0;
}
.s_blogs .user {
    display: flex;
    text-align: left;
    gap: 12px;
    margin-bottom: 60px;
}
.home_banner.s_blogs h1 {
    margin: 0 0 20px;
}
.home_banner.s_blogs h1.newsh1 {
    margin: 0 0 75px;
}
.s_blogs .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.home_banner.about.s_blogs h6 a {
    color: var(--White);
    font-weight: 600;
}
.home_banner.about.s_blogs h6 {
    margin: 0;
    color: var(--White);
    font-size: 16px;
    font-weight: 400;
}

.form_blogs .set h3 {
    font-size: 38px;
    margin: 0;
}
.form_blogs .set .row {
    align-items: center;
}
.form_blogs h5 {
    font-size: 20px;
    margin: 0 0 10px;
}
.form_blogs .set {
    background-color: #f6f7f8;
    border-radius: 4px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}
.form_blogs .set form {
    display: flex;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 7px #0b22312b;
}
.form_blogs .set form input {
    padding: 14px;
    width: 100%;
    border-radius: 10px;
    border: none;
}
.form_blogs .set form button {
    background: var(--TextColor);
    color: var(--White);
    padding: 0 25px;
}
.form_blogs {
    margin-bottom: 60px;
}

.form_blogs .left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.form_blogs .left .mail {
    width: 100px;
    height: 100px;
    display: inline-block;
    border: 1px solid var(--TextColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}
.form_blogs .left .mail img {
    height: 50px;
}

.courses {
    margin: 40px 0 60px;
}
.courses ul li {
    margin-bottom: 15px;
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--off-white);
}
.courses .accordion-list {
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
}

.courses .main_heading {
    max-width: 1200px;
    margin: 0 auto 25px;
}
.courses p {
    font-size: 16px;
    margin: 10px 0;
    line-height: 24px;
}
.courses .head h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: var(--TextColor);
}
.courses ul li.active .bt {
    transform: rotate(-90deg);
}
.courses .head .bt img {
    height: 29px !important;
}
.courses .head .bt {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 31px !important;
    transform: rotate(90deg);
}

.courses .head {
    display: flex;
    position: relative;
    gap: 19px;
    padding-right: 65px;
}
.courses .head p {
    margin-bottom: 0;
}
.courses .answer {
    background: var(--White);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}
.courses .head img {
    height: 50px;
}
.courses .answer .set h3 {
    font-size: 20px;
}
.courses .answer h3 {
    font-size: 27px;
}
.courses .answer ul {
    padding: 0;
}
.courses .answer ul li {
    padding: 0;
    box-shadow: none;
    list-style: lower-latin;
    display: flex;
    gap: 14px;
    background: var(--White);
}
.courses .answer .set .image {
    height: 240px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 1px 8px #ccccccc4;
    padding: 8px;
    margin: 10px 0;
    border-radius: 16px;
    background: var(--White);
}

.courses .d-flex.top_nm p span {
    font-size: 21px;
    font-weight: 600;
    margin-left: 10px;
}
/* .courses .d-flex.top_nm p {
  font-size: 20px;
  width: 25%;
  padding: 18px 17px;
  border-radius: 5px;
  color: var(--TextColor);
  box-shadow: 0 1px 3px #0b22312b;
  text-align: left;
   background: var(--White);
  margin: 0;
  display: flex;
  align-items: center;
} */

.courses .d-flex.top_nm p {
    font-size: 20px;
    width: 25%;
    padding: 18px 17px;
    border-radius: 5px;
    color: var(--TextColor);
    box-shadow: 0 1px 7px #0b223136;
    text-align: left;
    margin: 0;
    display: flex;
    align-items: center;
}

.courses .d-flex.top_nm {
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    margin-top: 10px;
}

.courses .answer ul li img {
    display: flex;
    gap: 18px;
    width: 21px;
    object-fit: contain;
}

section.academic-testimonial .testi .testi_in p {
    min-height: 8px;
    margin-bottom: 8px;
    font-size: 15px;
}
section.academic-testimonial .testi .testi_in ul li {
    line-height: 1.5;
    font-size: 15px;
}

.right_blogs.right_news .set p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.allusers.doctors {
    margin: 20px 0 70px;
}

.videomain {
    background: var(--TextColor);
    padding: 240px 0 0 0 !important;
    border-radius: 10px;
    box-shadow: 0 0px 2px #cccccc6b;
}

/*******************************************
***************** footer********************
********************************************/
/* .footer{padding:0 30px} */
.footer_main {
    background: var(--blue);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 70px;
    color: var(--White);
    margin: auto;
    background: var(--blue);
    border-radius: 60px 60px 0px 0px;
}
.footer h4 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    position: relative;
}
.footer h4.explore {
    padding-bottom: 0;
}
.footer p {
    padding: 0 30px 0 0px;
    font-family: sans-serif;
    line-height: 26px;
    margin: 10px auto;
    opacity: 0.6;
    text-align: left;
}
.footer-text img {
    margin-bottom: 30px;
}
.copyright p {
    line-height: 2.3;
    color: var(--TextColor);
    font-weight: 500;
    opacity: 1;
    font-size: 16px;
    text-align: center;
}
.footer .container {
    padding: 20px 140px;
}
.footer-text ul li {
    margin-bottom: 16px;
}
.copyright {
    text-align: center;
    background: var(--light-blue);
    padding: 5px 0;
    font-size: 10px;
    line-height: 10px;
    margin-top: 50px;
}
.footer a {
    color: var(----White);
    font-family: sans-serif;
    transition: 0.5s;
}
.footer a:hover {
    text-decoration: underline;
    color: var(--TextColor2);
    opacity: 1;
}
.footer h6 {
    font-size: 18px;
    padding-top: 18px;
    font-weight: 500;
}

/* single_blog */
.single_blog .right_blogs_cta {
    text-align: left;
}
.single_blog .right_blogs_cta .heading {
    font-size: 30px;
}
.single_blog .right_blogs_cta ul.f-social-media li {
    padding: 10px;
    border: 1px solid #0b22316b;
    color: var(--White);
}

/* empanelments */
.empanelments {
    margin-bottom: 60px;
}
.empanelments ul li {
    margin-bottom: 16px;
    max-width: 32%;
    flex: 0 0 auto;
    width: 30%;
    position: relative;
    padding-left: 1.33%;
    padding-right: 2%;
}
.empanelments ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0 0;
}
.empanelments ul li::after {
    content: "";
    position: absolute;
    height: 7px;
    width: 7px;
    left: 0;
    background: var(--TextColor);
    top: 6px;
    opacity: 0.6;
}
.empanelments h4 {
    font-size: 24px;
    margin-bottom: 0;
}

.careertestimonial {
    margin-bottom: 60px;
}

.careertestimonial h4 {
    font-size: 22px;
    margin-bottom: 0;
}

/**********************************************************************
****************** @media (max-width: 1399.98px) **************************
***********************************************************************/

@media (max-width: 1799.98px) {
    .dropdown-contentin img {
        width: 365px;
    }
    .navbar li .dropdown-content a {
        font-size: 16px;
    }
    .home_banner h2 {
        font-size: 38px;
    }
    .menu-items > li {
        margin-right: 15px;
    }
    .dropdown-contentin {
        gap: 25px;
    }
    .logo {
        max-width: 160px;
    }
    .navbar-container {
        gap: 30px;
    }
    .dropdown-contentin {
        padding: 25px;
    }
}

@media (max-width: 1599.98px) {
    .about-us.single_service .about-img img {
        min-height: 260px;
    }
    .dropdown-contentin {
        padding: 25px;
    }
    .menu-items > li {
        margin-right: 10px;
    }
    .navbar li a {
        font-size: 15px;
    }
    .dropdown-contentin img {
        display: none;
    }
    .navbar li .dropdown-content a {
        padding: 8px 0;
        font-size: 18px;
    }
    .choose-right-home .box-left .cont {
        bottom: -100px;
    }

    .home_team {
        height: 564px;
    }

    .home_services .carousel-accordion .owl-item.expanded .accordion_li {
        max-width: 357px;
    }
    .home_banner.about .about-title {
        width: 100%;
    }
    .container {
        max-width: 1320px;
    }
    .logo {
        max-width: 145px;
    }
    .footer .container {
        padding: 20px 60px;
    }

    .new_section_home .stt .heading {
        font-size: 38px;
    }

    /* home_banner */
    .home_banner .container-fluid {
        padding: 0 45px;
    }
    .home_banner .banner-heading {
        max-width: 55%;
    }
    .home_banner h1 {
        font-size: 80px;
    }
    .home_banner h1 span {
        font-size: 44px;
    }
    /* .service-section .category-button {
  height: 400px;
}
.service-section .service-right img {
  height: 480px !important;
} */
    .home_banner h2 {
        font-size: 36px;
        line-height: 38px;
    }

    /* video-section */
    .video-section .video-title h2 {
        font-size: 44px;
    }
    .video-section {
        height: 600px;
    }

    /* cta */
    .cta {
        padding: 60px 0px;
    }

    /* testi */
    .testi {
        padding: 30px 40px;
    }
    /* .testi .testi_in p {font-size: 18px; line-height: 28px; margin-bottom: 30px;} */

    .testimonial .testi .testi_in {
        margin-right: 0;
    }
    .case_study p {
        line-height: 24px;
        font-size: 14px;
        gap: 10px;
    }
    .case_study .custom_btn {
        margin-top: 0;
        margin-bottom: 40px;
    }

    /* why-choose */
    .why-choose .choose-top li span {
        font-size: 16px;
    }

    /* faq */
    .faq .faq_in {
        padding: 40px;
    }

    .head_right.d-flex h6 .btn1,
    .head_right.d-flex h6 a.btnquestion {
        width: 46px;
    }
    .head_right.d-flex h6 {
        gap: 9px;
    }
    .head_right {
        gap: 25px;
    }
}

/**********************************************************************
****************** @media (max-width: 1399.98px) **************************
***********************************************************************/
@media (max-width: 1399.98px) {
    .bg_div {
        padding: 30px;
    }
    .about-us.single_service .about-img img {
        min-height: 230px;
    }
    ..header {
        top: 60px;
    }
    .navbar_in2 {
        padding: 0 60px;
    }
    .logo {
        max-width: 110px;
    }
    .head_right.d-flex h6 a {
        padding: 0 15px;
    }
    .head_right.d-flex h6 a.btnquestion img {
        height: 26px;
    }
    .head_right.d-flex h6 .btn1,
    .head_right.d-flex h6 a.btnquestion {
        width: 42px;
    }
    .head_right.d-flex h6 .btn1 img {
        width: 23px;
        height: 24px;
    }

    .nabh_logo img {
        height: 52px;
    }
    .home_banner h2 {
        font-size: 31px;
    }
    .dropdown-contentin {
        padding: 30px;
    }
    .courses .d-flex.top_nm p {
        display: block;
        text-align: center;
    }
    .courses .d-flex.top_nm p span {
        display: block;
        margin-left: 0;
    }
    .choose-right-home .box-left .cont strong {
        font-size: 24px;
    }
    .choose-right-home .box-left .cont {
        bottom: -117px;
    }
    .blogs .right_blogs .hdn {
        font-size: 24px;
    }
    .blogs .right_blogs_main {
        padding-left: 20px;
        margin-left: 0;
    }
    .blogs.single_blog .set img {
        width: 130px;
        height: 105px;
    }
    .blogs.single_blog .set h3 {
        font-size: 18px;
    }

    .doctor4 img {
        max-height: 240px !important;
    }
    .allusers .doctor4 .about-img .dr-name strong {
        font-size: 20px;
    }
    .blogs .set img {
        width: 130px;
        height: 115px;
    }

    .allusers .doctor4 .about-img .dr-name p {
        margin-bottom: 0;
    }
    .blogs p {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
    }

    .recent_blogs .set .cont {
        padding: 16px;
    }
    .recent_blogs .set p {
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
    }
    .recent_blogs .set h3 {
        font-size: 20px;
    }
    .blogs {
        margin: 20px 0 50px;
    }

    /*
  .home_services .carousel_main{
  padding-left: 40px;
  padding-right: 40px;
} */
    .new_section_home .stt .heading {
        font-size: 32px;
    }
    .new_section_home .stt .img h3 {
        font-size: 20px;
    }
    .new_section_home .stt .st {
        border-radius: 15px;
        padding: 16px;
    }
    .video-section .video-title h2 {
        font-size: 35px;
    }
    .new_section_home .stt .st h3 {
        font-size: 20px;
        margin-top: 5px;
    }
    .home_services .accordion_li h4 {
        font-size: 20px;
        margin: 15px 0 10px;
    }
    .home_team {
        margin: 45px 0;
        height: 502px;
        padding-bottom: 20px;
    }
    .new_section_home .stt .st h1 {
        font-size: 34px;
        margin: 40px 0 0;
    }
    .why-choose .choose-marquee.all {
        padding: 18px;
    }
    .text-slider li {
        font-size: 2vh;
    }
    .text-slider li.in-highlight {
        font-size: 2.5vh;
    }
    .container {
        max-width: 1140px;
    }
    h2.heading {
        font-size: 40px;
    }
    .about-us p.mt-0::after {
        left: -17px !important;
    }
    /* header */
    .menu-items > li {
        margin-right: 7px;
    }
    .head_right {
        gap: 20px;
        align-items: center;
    }
    .head_right.d-flex h6 {
        font-size: 14px;
        gap: 7px;
    }
    .navbar-container {
        gap: 18px;
    }

    /* home_banner */
    .home_banner h1 {
        font-size: 70px;
    }
    .home_banner h1 span {
        font-size: 36px;
    }
    .home_banner .container-fluid {
        padding: 0 45px;
    }
    /* .service-section .category-button {
  height: 380px;
}
.service-section .dr-name span {
  font-size: 14px;
}
 .service-section .dr-name {
    bottom: 8px;
    width: 80%;
    padding: 16px 16px;
  }
.service-section .dr-name strong {
  font-size: 18px;
} */

    /* video-section */
    .video-section {
        height: 550px;
    }
    .our-team img {
        height: auto;
    }

    /* testimonial */
    .testimonial .testi .testi_in {
        padding-right: 30px;
    }
    .swiper-button {
        top: -55px;
    }

    /* cta2 */
    .cta2 h2 {
        font-size: 42px;
    }

    /* faq */
    .faq {
        margin-bottom: 60px;
    }

    /* footer_main */
    .footer_main {
        padding-top: 60px;
    }
    .footer .container {
        padding: 0 15px;
    }
    .dropdown-contentin img {
        width: 280px;
    }
    .navbar li a {
        font-size: 14px;
    }
    /* .dropdown-content span {
  width: 200px;
  float: left;
  margin: 0 13px;
} */
    .navbar li .dropdown-content a {
        font-size: 16px;
    }
    .navbar li .media-content {
        top: 33px;
    }
    .header.fixed .dropdown-content {
        top: 44px;
    }
    .dropdown-content {
        top: 115px;
    }
    .blogs .cont p,
    .left_blog .cont ul li {
        line-height: 26px;
        text-align: justify;
        font-size: 18px;
    }
    .btn {
        padding: 0 18px;
    }
    .navbar .navbar_in {
        padding: 15px 25px;
    }
    .home_banner {
        min-height: 450px;
        height: 75vh;
    }
}

/**********************************************************************
****************** @media (max-width: 1199.98px) **************************
***********************************************************************/
@media (max-width: 1199.98px) {
    .menu-items > li.mob_home {
        display: block !important;
    }
    .menu-items {
        padding: 20px 0 0;
    }
    .navbar li .media-content ul {
        border: none;
    }

    .navbar li .media-content ul li a {
        padding: 11px 46px;
        font-size: 16px;
    }
    .about-us .about-img {
        height: auto !important;
        border-radius: 20px;
    }

    .about-us.single_service .about-img img {
        min-height: 150px;
    }

    .home_banner h2 {
        font-size: 28px;
    }
    .head_right.d-flex h6 a {
        /* min-width: 116px; */
        padding: 0 11px;
    }
    /* .head_right.d-flex h6 .btn1 {
    height: 40px;
    width: 40px;
    margin-left: 0;
  } */
    .allusers.doctors .about-img img {
        height: 260px;
    }
    .blogs .cont p,
    .left_blog .cont ul li {
        line-height: 24px;
        text-align: justify;
        font-size: 16px;
    }
    .dropdown-contentin img {
        display: none;
    }
    .dropdown-content span {
        width: 31.33%;
        float: left;
        margin: 0 1%;
    }
    .choose-right-home .box-left .cont strong {
        font-size: 22px;
    }
    .form_blogs .set h3 {
        font-size: 32px;
    }
    .form_blogs .set {
        padding: 40px;
        gap: 80px;
    }
    .blogs.single_blog .right_blogs_main .right_in {
        display: flex;
        gap: 28px;
        align-items: last baseline;
    }

    .left_blog {
        display: block;
        gap: 21px;
        position: relative;
    }
    .blogs.single_blog .right_blogs_main {
        padding-left: 0;
        border: none;
    }

    .single_blog .left_blog ul {
        display: flex;
        gap: 10px;
    }
    .blogs.single_blog .col-8,
    .blogs.single_blog .col-4 {
        width: 100%;
    }
    .home_team {
        height: 415px;
    }
    .cta .ctain {
        background-size: 420px;
    }
    .blogs .right_blogs_main {
        padding-left: 20px;
        margin-left: 0;
    }
    .home_team ul li {
        padding: 16px;
        font-size: 15px;
        line-height: 22px;
        border-radius: 10px;
    }
    .blogs .set {
        margin-bottom: 12px;
        gap: 13px;
    }
    .courses .answer {
        padding: 16px;
    }
    .blogs .set h3 {
        font-size: 18px;
    }
    .blogs .right_blogs .hdn {
        font-size: 24px;
        margin-top: 0;
    }
    .courses .answer .d-flex.top_nm p {
        font-size: 18px;
        padding: 15px;
    }
    .blogs .set p {
        margin: 6px 0;
    }
    .courses .answer .set .image {
        height: 200px;
    }
    .main_blogs img {
        height: 500px;
        width: 100%;
    }

    .courses .answer .d-flex.top_nm p span {
        font-size: 30px;
    }
    .main_blogs h3 {
        font-size: 36px;
        margin: 0 0 5px;
    }
    .courses {
        margin: 20px 0 40px;
    }
    .text-slider li {
        font-size: 1.8vh;
    }
    .home_team ul li strong {
        font-size: 18px;
    }

    .doctor1 .about-img .dr-name strong {
        font-size: 22px;
    }
    .text-slider li.in-highlight {
        font-size: 2vh;
    }

    .single_service .inrow,
    .abtpage .inrow {
        padding-left: 0;
    }
    .why-choose .why-us-wrap .choose-img-right strong {
        font-size: 17px;
        line-height: 24px;
    }
    .doctor1 .about-img .dr-name {
        padding: 0;
    }
    .home_banner.about {
        min-height: 360px;
        height: auto;
    }
    .bg_div {
        padding: 25px;
    }
    .container {
        max-width: 960px;
    }
    h2.heading {
        font-size: 32px;
    }
    p {
        font-size: 15px;
    }
    .navbar .navbar_in {
        padding: 14px 20px;
    }

    .dropdown-content .container {
        padding: 0 45px;
    }
    /* .service-section .main_heading p { font-size:16px;line-height: 24px;} */

    .home_banner .banner-heading {
        max-width: 60%;
    }
    /* .service-section .category-button {
    height: 280px;
} */

    /* home_banner */
    .home_banner {
        min-height: 560px;
        height: 52vh;
        padding: 0 0 40px;
    }
    .home_banner h1 span,
    .home_banner span {
        font-size: 26px;
    }
    .home_banner h1 {
        font-size: 55px;
    }
    .navbar li a {
        font-size: 14px;
    }
    .navbar_in2 {
        padding: 0 45px;
    }
    .header {
        top: 45px;
    }
    .logo {
        max-width: 130px;
    }
    .toggle img {
        width: 30px;
    }
    .menu-items > li {
        margin-right: 5px;
    }

    /* cta2 */
    .cta2 h2 {
        font-size: 32px;
    }
    .cta2 {
        padding: 0 0 50px;
    }
    .cta {
        padding: 50px 0px;
    }

    /* why-choose */
    .why-choose .why-us-wrap {
        padding: 35px;
        border-radius: 24px;
    }

    .why-choose .choose-top {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    .why-choose .choose-top li span {
        font-size: 13px;
    }
    .why-choose .why-us-wrap strong {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 30px;
    }
    .why-choose .choose-right {
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
    }
    .why-choose .box-left {
        height: 200px;
        margin-bottom: 25px;
    }
    /* .why-choose .box-right {width: 100%;} */
    .why-choose .choose-top .choose-img img {
        height: 35px;
    }
    .why-choose {
        padding: 50px 0;
    }
    .why-choose .choose-left {
        margin-right: 0;
    }
    .why-choose .why-us-wrap .choose-marquee strong {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .choose-left1 {
        padding: 20px;
    }

    /* testi */
    .testi {
        padding: 20px 30px;
    }
    .testi .testi_in p {
        font-size: 15px;
        line-height: 24px;
    }
    .testimonial .testi .user img {
        width: 50px !important;
        height: 50px;
    }
    .testimonial .testi .user p {
        font-size: 14px;
    }
    .testimonial .testi .koma {
        width: 55px;
        margin-bottom: 30px;
    }
    .case_study .custom_btn {
        margin-bottom: 25px;
    }
    .case_study p {
        font-size: 13px;
    }

    /* faq */
    .faq_right {
        padding-left: 0;
    }
    .faq .faq_in {
        padding: 20px;
        border-radius: 20px;
    }
    .faq .img {
        border-radius: 20px;
    }
    .faq ul.accordion-list li h3 {
        font-size: 18px;
    }
    .faq ul.accordion-list li {
        padding: 12px 0;
    }
    .faq {
        margin-bottom: 50px;
    }

    /* service-section */
    /* .service-section .service-right .box-border { padding: 10px;height: 132px;}
.service-section ul.accordion-list li{  padding: 14px 0;}
.service-section ul.accordion-list li h3 {font-size: 19px;}
.service-section .service-right .box2 {padding: 12px; width: 150px; height: 150px; bottom: -10px;left: -12px; border-radius: 0px 30px 0 00px;}
.service-section .service-right .box1 { padding: 12px; right: -12px; width: 150px; height: 150px; top: -12px;   border-radius: 0px 0px 0 30px;  }
.service-section .service-right .box2::before { left: 12px; bottom: 170px; width: 36px; height: 36px;}
.service-section .service-right .box2::after {left: 174px; bottom: 6px;}
.service-section .service-right .box1::before {right: 174px; top: 8px; width: 36px; height: 36px;}
.service-section .service-right .box1::after { right: 12px; bottom: -32px; width: 36px; height: 36px;}
.service-section .service-right strong { font-size: 37px; line-height: 44px;}
.service-section .service-right span {font-size: 14px;} */

    .single_service .inrow {
        padding-right: 0;
    }
    /* our-team */
    .our-team {
        padding: 60px 0;
    }
    .our-team img {
        height: auto;
        border-radius: 20px;
    }
    .our-team .team-left {
        margin-right: 00%;
    }

    /* listtable */
    .listtable .listtable_in {
        padding: 30px;
    }

    .listtable {
        margin: 60px 0 0;
    }
    .listtable .listtable_in {
        margin-top: 40px;
        border-radius: 30px;
    }
    .listtable .cont .cont_in {
        padding: 20px 20px;
    }
    .listtable .cont h4 {
        font-size: 22px;
    }
    .listtable .set + .set {
        padding-top: 15px;
    }
    .listtable .set {
        margin-bottom: 15px;
    }

    .listtable .set .btn {
        line-height: 50px;
        padding: 0;
        font-size: 15px;
    }
    .listtable .set span.mob {
        display: none;
    }
    .inrow .col-4,
    .inrow .col-8 {
        width: 100%;
    }
    .about-btn {
        padding-top: 0;
        margin-bottom: 25px;
    }
    .about-us p.mt-0::after {
        display: none;
    }

    .single_service .col-3 {
        width: 33.33%;
    }

    .single_service .col-9 {
        width: 66.66%;
    }

    /* footer */
    .footer .col-4,
    .footer .col-8 {
        width: 100%;
    }
    .foot1 div {
        width: 33.33%;
    }
    .footer a {
        font-size: 15px;
    }
    .footer-text ul li {
        margin-bottom: 10px;
    }
    .foot1 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 35px;
    }
    .footer .container {
        padding: 0 30px;
    }
    .why-choose .choose-marquee {
        padding: 30px 20px;
    }
    .text-slider li.in-highlight {
        font-size: 2.5vh;
    }

    .doctor1.doctor2 .about-img .dr-name strong {
        font-size: 20px;
    }
    .doctor2 .about-img img {
        max-height: 165px;
    }
    .main_blogs img {
        height: auto;
    }
    .allusers.doctors .col-3 {
        width: 33.33% !important;
    }

    .blogs.single_blog .right_blogs_main .right_in {
        display: block;
    }
    .single_blog .right_blogs_cta {
        text-align: center;
        max-width: 600px;
        margin: auto;
    }

    .menu_main {
        position: fixed;
        right: -600px;
        z-index: 9;
        background: var(--TextColor);
        height: 100%;
        width: 500px;
        height: 100vh;
        top: 0;
        box-shadow: 0 21px 34px #000;
        border-radius: 30px 0 0 30px;
        transition: all 0.5s;
        -webkit-transition: all 0.25s;
        padding-top: 0;
        overflow-y: auto;
    }
    .menu_main .toggle.toggleclose {
        left: -48px;
        position: relative;
        display: inline-block;
    }
    .menu_main.main {
        right: 0;
    }
    .toggle {
        display: inline-block;
    }
    .navbar li a {
        display: block;
        font-size: 18px;
        padding: 17px 35px;
    }
    .dropdown.mob {
        display: block;
    }
    .dropdown.dsak {
        display: none;
    }
    .dropdown-content {
        position: relative;
        top: 0;
        padding: 0;
    }
    .dropdown-content .container {
        padding: 0;
    }
    .navbar li .dropdown-content a {
        padding: 11px 46px;
        font-size: 16px;
    }
    .dropdown-content span {
        width: 100%;
        float: left;
    }
    .dropdown-contentin {
        padding: 0;
        border: none;
    }
    .navbar {
        transform: inherit !important;
    }
    .header {
        top: 40px;
    }
    .navbar_in2 {
        padding: 0 40px;
    }
    .menu-items > li {
        margin-right: 5px;
        display: block;
    }
    .menu_main .toggle.toggleclose {
        left: 29px;
    }
    .menu_main {
        padding-top: 27px;
    }
}

/**********************************************************************
****************** @media (max-width: 991.98px) **************************
***********************************************************************/

@media (max-width: 991.98px) {
    .empanelments ul li {
        max-width: 45.5%;
        width: 45.5%;
        padding-left: 2.5%;
        padding-right: 2%;
    }
    .form_blogs .left {
        display: block;
        text-align: center;
    }
    .form_blogs .left .mail {
        margin: auto;
    }
    .form_blogs .set form {
        max-width: 500px;
        margin: auto;
    }
    .doctor1 .item {
        max-width: 620px;
    }
    .s_blogs .user {
        margin-bottom: 85px;
    }
    .home_banner.about.s_blogs h1 {
        font-size: 32px;
    }
    .allusers.doctors .col-3 {
        width: 50% !important;
    }
    .allusers.doctors .about-img img {
        height: 300px;
    }
    .form_blogs .set {
        padding: 40px;
        gap: 80px;
        display: block;
        text-align: center;
    }
    .why-choose .choose-right-home .box-right {
        border-right: none;
        padding-right: 0;
    }
    .choose-right.d-flex.choose-right-home {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .doctor1.doctor2 .about-img .dr-name strong {
        margin-top: 16px;
    }
    .choose-right-home .box-left .cont {
        bottom: 0;
    }
    .single_blog h2.heading {
        font-size: 34px;
        margin-top: 20px;
    }
    .doctor1.doctor2 .about-img .dr-name {
        padding: 0 0 0 0;
        text-align: center;
    }
    .home_team .heading {
        font-size: 28px;
    }
    .cta .ctain {
        background-size: 330px;
    }
    .cta .cta-left p {
        font-size: 17px;
    }
    .home_team ul li {
        font-size: 14px;
        line-height: 21px;
    }
    .blogs .col-7,
    .blogs .col-5 {
        width: 100%;
    }
    .home_team ul {
        margin-bottom: 0;
    }
    .blogs .right_blogs_main {
        padding-left: 0;
        border: navajowhite;
        margin-top: 29px;
    }
    .home_team {
        height: 340px;
    }

    .courses ul li {
        padding: 20px;
        border-radius: 10px;
    }
    .recent_blogs .col-3 {
        width: 50%;
    }

    .blogs .set h3 {
        font-size: 20px;
    }
    .courses .head {
        padding-right: 50px;
    }
    .doctor1 .about-img img {
        max-height: 320px;
    }

    .courses .head h3 {
        font-size: 20px;
    }

    .allusers .about-img .dr-name strong {
        font-size: 18px;
    }

    .courses .answer .d-flex.top_nm p {
        display: grid;
        line-height: 34px;
    }
    .doctor2 .about-img .col-6 {
        width: 100%;
    }
    .doctor2 .about-img .dr-name {
        padding: 15px;
    }

    .doctor1 .about-img img {
        max-height: 250px;
        object-position: 0 -23px;
    }

    .home_team ul li {
        width: 200px;
        padding: 15px;
    }
    .col-3.odr2 {
        order: 2;
    }
    .new_section_home .stt {
        margin: 40px 0;
    }
    .new_section_home .stt .col-6.odr3 {
        margin-bottom: 15px;
        width: 100%;
    }
    .new_section_home .stt .col-3 {
        flex: 0 0 auto;
        width: 50%;
    }
    .listtable .listtable_in .col-4,
    .listtable .listtable_in .col-8 {
        width: 100%;
    }
    .allusers {
        margin: 50px 0 30px;
    }
    .legacy.key_services {
        margin-top: 50px;
    }
    .listtable .rowin.accordion-list {
        margin-top: 20px;
    }
    .listtable .listtable_in .col-4 {
        order: 2;
    }
    .listtable .image {
        margin-bottom: 20px;
    }
    .right_ser p {
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 30px !important;
    }
    .right_ser h4,
    .right_ser p::after {
        display: none;
    }
    .faq .img {
        display: none;
    }
    .faq .col-6 {
        width: 100%;
    }
    .why-choose .choose-right {
        gap: 0;
        display: block;
    }
    .why-choose .box-left {
        width: 100%;
    }
    .why-choose .box-right {
        width: 100%;
    }

    .why-choose .choose-marquee {
        padding: 30px 16px;
    }
    .why-us-wrap.new_why_us .col-8,
    .why-us-wrap.new_why_us .col-4 {
        width: 100%;
    }

    .why-choose .why-us-wrap.new_why_us .box-left {
        width: 100%;
        height: auto;
        margin-bottom: 25px;
    }
    .why-choose .why-us-wrap.new_why_us .box-left img {
        width: 100%;
        height: auto;
    }

    .text-slider li.in-highlight {
        font-size: 2.4vh;
    }

    .testi .testi_in p {
        min-height: auto;
    }

    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .head_right.d-flex h6 span {
        display: none;
    }

    /* home_banner  */
    .home_banner .container-fluid {
        padding: 0 30px;
    }
    .home_banner h1 span,
    .home_banner span {
        font-size: 20px;
    }
    .home_banner h1 {
        font-size: 45px;
    }
    .home_banner p {
        font-size: 15px;
        margin-top: 11px;
        max-width: 100%;
        margin-bottom: 24px;
    }
    .home_banner .banner-heading {
        max-width: 80%;
    }
    .home_banner {
        min-height: 440px;
        border-radius: 20px;
    }
    .home_banner.about .about-title {
        width: 100%;
        padding-top: 130px;
    }

    .right_ser {
        width: 100%;
        margin-bottom: 66px;
    }
    .right_ser h4 {
        margin: 20px 0 0 0;
        font-size: 20px;
    }
    .right_ser::after {
        display: none;
    }
    /* .service-section .heading.m-0 {
  max-width: 100%;
}
.service-section .col-7, .service-section .col-5 {
  width: 100%;
  text-align: center;
} */

    /* why-choose */
    .why-choose .why-us-wrap {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .why_choose_about .heading br {
        display: none;
    }
    .about-us p {
        width: 100%;
    }

    .legacy .sliderTab_main {
        padding: 30px 22px !important;
        border-radius: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .legacy .faq .img {
        min-height: 400px;
    }

    .legacy .sliderTab .swiper-slide.on .text {
        filter: blur(0rem);
        color: var(--White);
        font-size: 46px;
    }

    .listtable .image {
        margin-bottom: 20px;
    }
    .listtable .cont .cont_in {
        text-align: center;
    }
    .listtable .set h4 {
        font-size: 18px;
    }

    /* .listtable .set .btn {
    padding: 9px 20px;
  } */

    .allusers .owl-nav.disabled {
        display: block !important;
        text-align: center;
        margin-top: 15px;
    }
    .allusers .owl-nav.disabled button {
        border: 1px solid;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 0 6px;
        font-size: 28px;
    }
    .allusers .owl-nav.disabled button span {
        position: relative;
        top: -2px;
    }
    .courses .d-flex.top_nm p {
        font-size: 18px;
    }
    .insta_scan h3 {
        font-size: 30px;
    }
    .insta_scan {
        max-width: 450px;
        margin: auto;
    }
}

/**********************************************************************
****************** @media (max-width: 767px) **************************
***********************************************************************/
@media (max-width: 767px) {
    .cta .ctain {
        padding: 0;
    }
    .videomain {
        margin: 26px 20px 0;
    }

    .cta .cta-left p {
        text-align: center;
    }

    .why-choose .box-right {
        margin-top: 20px;
    }

    .swiper_btns {
        display: flex;
        justify-content: center;
        gap: 34px;
        height: 50px;
        margin-top: 15px;
    }
    .swiper_btns .swiper-button-next,
    .swiper_btns .swiper-button-prev {
        box-shadow: 0 0px 4px #ffffff36;
        background: var(--TextColor) !important;
    }
    .swiper-button-prev,
    .swiper-button-next {
        height: 42px !important;
        width: 42px !important;
    }
    .about-us.abtpage {
        margin-top: 20px;
    }

    .about-us .about-img {
        display: inherit !important;
    }

    .empanelments ul li {
        max-width: 94.5%;
        width: 94.5%;
        padding-left: 5.5%;
        padding-right: 0%;
    }
    .legacy .sliderTab_main {
        padding: 30px 60px !important;
    }
    .legacy .swiper-next {
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .legacy .swiper-prev {
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(180deg);
    }
    .legacy .swiper-prev,
    .legacy .swiper-next {
        background: #ffffff8a;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 9px;
        display: inline;
    }
    .legacy .swiper-prev:hover,
    .legacy .swiper-next:hover {
        background: var(--White);
    }

    .footer p {
        padding: 0;
        text-align: center;
    }

    .courses .d-flex.top_nm {
        display: block;
        text-align: center;
    }
    .courses .d-flex.top_nm p {
        width: auto;
        display: inline flow-root list-item;
    }
    .courses .d-flex.top_nm p {
        width: auto;
    }
    .choose-right.d-flex.choose-right-home {
        margin-bottom: 0;
    }
    .blogs.single_blog .right_blogs_main .right_in {
        display: block;
    }
    .doctor1 .about-img img {
        max-height: 180px;
        object-position: 0 -32px;
    }
    .cta.cta_home .ctain {
        background-size: 350px;
        padding-top: 270px;
        padding-bottom: 0;
        background-position: center top;
    }
    .mob_team {
        display: block;
        border-radius: 20px;
    }
    .new_section_home .stt .col-6.odr3 .col-6 {
        width: 50% !important;
    }

    .courses .answer .d-flex.top_nm {
        display: block;
    }
    .courses .answer .d-flex.top_nm p {
        display: inherit;
        line-height: 34px;
        width: 40%;
        float: left;
        margin: 0 1.6% 15px;
    }

    .doctor1 .about-img .col-6 {
        width: 50% !important;
    }

    .doctor2 .col-6 {
        width: 50% !important;
    }

    .doctor2 .about-img .col-6 {
        width: 100% !important;
    }
    .doctor2 .about-img img,
    .allusers .owl-carousel .about-img img {
        max-height: 190px;
    }
    .doctor2 .about-img .dr-name {
        padding: 12px;
    }
    .doctor2 .about-img .dr-name strong {
        font-size: 20px;
    }
    .home_team::after {
        display: none;
    }
    .home_team {
        margin: 45px 0;
        height: auto;
        padding-bottom: 20px;
        background-image: inherit !important;
    }
    .home_team .heading {
        color: var(--TextColor);
        text-shadow: none;
    }
    .new_section_home .stt .col-3 {
        display: none;
    }
    .home_team ul li strong {
        display: block;
        font-size: 18px;
        margin-bottom: 7px;
    }
    .home_team ul li {
        width: 100%;
        padding: 20px;
        color: var(--blue);
        text-shadow: none;
    }
    .new_section_home .stt .heading {
        display: none;
    }
    .new_section_home {
        margin-top: 40px;
    }
    .new_section_home .testi_carousel {
        max-width: 85%;
        margin: auto;
    }
    .new_section_home .col-5 {
        order: 2;
        display: none;
    }
    .why-choose .box-left,
    .why-choose .box-left img {
        height: auto;
    }
    .cta .col-8 {
        order: 1;
        margin-top: 16px;
    }
    .popup-box .input-container span {
        padding: 10px 14px;
    }
    .popup-box {
        padding: 20px !important;

        border-radius: 15px !important;
    }
    .popup-box label {
        font-size: 16px !important;
    }
    .menu_main {
        padding-top: 27px !important;
    }
    .popup-box .input-container {
        margin-bottom: 15px !important;
    }
    .popup-box .popup-title {
        font-size: 26px !important;
        margin: 0 0 16px !important;
    }

    .single_service .about-btn,
    .abtpage .about-btn {
        text-align: center;
    }
    .why-choose .box-left,
    .why-choose .box-left img {
        height: auto;
        width: 100%;
    }
    .why-choose .choose-marquee {
        height: auto;
        overflow: hidden;
    }
    .slider-wrapper {
        margin: 0 auto;
    }
    .home_banner.about {
        min-height: 270px;
        background: var(--TextColor) !important;
        height: auto;
    }
    .testi .case_study {
        display: none;
    }
    .mob_banner {
        display: none;
    }

    .testimonial .testi .testi_in {
        border-bottom: none;
        padding-bottom: 0;
    }

    h2.heading {
        font-size: 36px;
        text-align: center;
        margin-top: 0;
    }
    .miniheading.m-0 {
        margin-bottom: 20px !important;
        text-align: center;
    }
    .h-100 {
        height: inherit !important;
    }

    .menu_main {
        width: 400;
    }

    .menu_main .toggle.toggleclose {
        left: -45pxpx;
        position: relative;
        display: inline-block;
    }
    .home_banner h2 {
        font-size: 24px;
        line-height: 31px;
    }
    /* header */
    .bg_div {
        padding: 12px;
    }
    .navbar_in2 {
        padding: 0 22px;
    }
    .header {
        top: 22px;
    }
    .navbar .navbar_in {
        padding: 10px 25px;
    }
    .home_banner .banner-heading {
        max-width: 100%;
    }
    .home_banner .container-fluid {
        padding: 0 12px;
    }
    .home_banner {
        padding: 50px 0 40px;
    }
    .category-lists-slider {
        margin-top: 20px;
    }
    .home_banner .banner-heading {
        text-align: center;
    }
    .home_banner .d-flex {
        gap: 10px;
        justify-content: center;
    }
    .home_banner p {
        display: none;
    }
    .home_banner {
        min-height: 370px;
    }
    .cta2 h2 {
        font-size: 28px;
    }

    /* service-section  */
    /* .service-section .col-7, .service-section .col-5 {width: 100%;text-align: center;}
.service-section .main_heading p {width: 100%;float: right; top: 0; margin-bottom:20px;} */
    .service-bottom .col-6 {
        width: 100%;
    }
    /* .service-section .accordion-list {max-height:inherit;  margin-top: 24px;} */

    /* video-section */
    .video-section::before {
        border-radius: 30px 30px 0px 0;
    }
    .video-section {
        height: 400px;
        border-radius: 30px 30px 0px 0;
    }
    .video-section .video-title h2 {
        font-size: 36px;
    }
    .video-section .video-title .d-flex {
        gap: 18px;
    }
    .video-section .video-title {
        max-width: 100%;
        padding: 20px;
    }

    /* cta */
    .cta .col-8,
    .cta .col-4 {
        width: 100%;
    }
    .cta .cta-left {
        width: 100%;
        text-align: center;
    }
    .cta .cta-left p {
        margin-bottom: 20px;
    }
    .cta img {
        margin: 0 auto 0;
    }
    .testimonial .swiper-slide {
        align-items: inherit;
        height: inherit;
    }
    .cta .ctain {
        margin: 0 auto 0;
    }
    /* why-choose */
    .why-choose .col-8,
    .why-choose .col-4 {
        width: 100%;
    }
    .why-choose .choose-marquee {
        margin-top: 20px;
    }
    .why-choose .choose-marquee .img {
        min-height: 400px;
    }

    /* faq */
    .faq .col-6 {
        width: 100%;
    }
    .faq .img {
        height: 400px;
        margin-bottom: 35px;
    }
    .faq .accordion-list {
        max-height: inherit;
    }
    .faq .img {
        display: none;
    }

    /* testimonial */
    .testi .col-8,
    .testi .col-4 {
        width: 100%;
    }
    .testimonial .testi .testi_in {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #1d475d;
        padding-bottom: 30px;
    }
    .testimonial .testi .user {
        margin-top: 25px;
    }
    .testi .case_study {
        padding-top: 30px;
    }
    .swiper-button {
        top: inherit;
        bottom: 00;
        position: relative;
        margin-top: 20px;
        justify-content: center;
        height: 42px;
    }
    .testimonial .swiper-slide {
        align-items: inherit !important;
        height: inherit !important;
    }

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

    .testimonial .container.pe-0 {
        padding: 0 !important;
    }

    .testimonial {
        overflow: hidden;
        padding: 0 20px;
    }

    .col-8,
    .col-4,
    .col-5,
    .col-7,
    .col-6,
    .col-3,
    .col-9 {
        width: 100% !important;
    }
    .about-btn {
        padding-top: 0 !important;
        text-align: center;
        margin-bottom: 30px;
    }
    .about-us h2.heading {
        margin-bottom: 25px !important;
    }
    .about-us p {
        width: 100% !important;
        text-align: center;
    }

    /* our-team  */
    .our-team .team-left p {
        font-size: 15px;
        margin-bottom: 30px;
        text-align: center;
    }
    .our-team {
        padding: 50px 0;
        border-radius: 30px 30px 0 0;
    }
    .legacy .heading {
        text-align: center;
        font-size: 28px;
    }
    .legacy.key_services {
        margin-top: 45px;
        border-radius: 30px 30px 0 0;
        padding: 40px 0;
        margin-bottom: 46px !important;
    }

    /* footer_main */
    .footer_main {
        padding-top: 50px;
        border-radius: 20px 20px 0px 0px;
    }
    .foot1 div {
        width: 100%;
    }
    .foot1 {
        display: block;
    }
    .footer_main .col-3 {
        width: 100%;
    }
    .footer_main {
        text-align: center;
    }
    .footer-text img {
        margin: auto;
    }
    .courses .accordion-list .col-3 {
        width: 50% !important;
    }
    .allusers .doctor4 .about-img .dr-name {
        padding: 15px 6px;
    }

    .doctor4 img {
        max-height: 250px !important;
    }
    .allusers.doctors .col-3 {
        width: 50% !important;
    }
    .footer_main .footer-text {
        margin-bottom: 40px;
    }
    .footer_main .footer-text .explore {
        margin-top: 40px;
    }

    .footer h4 {
        padding-bottom: 10px;
    }
    .copyright {
        margin-top: 20px;
    }
    .listtable .set .btn {
        margin-top: 0;
        font-size: 14px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid var(--TextColor);
        height: 44px;
    }
    .listtable .set span.mob {
        display: block;
    }
    .listtable .set .btn span i {
        color: var(--TextColor);
    }
    .listtable .listtable_in .answer {
        margin: 0 0 20px;
    }
    .listtable .set .btn span {
        display: none;
    }
    .listtable .set .btn span.mob {
        display: block;
    }
    .listtable .set .div_set p {
        margin-bottom: 0;
    }

    .allusers.doctors .col-3 .rowin.h-100 {
        height: 100% !important;
    }
    .home_banner {
        min-height: 290px;
        height: auto;
    }
}

iframe .vp-controls {
    display: none !important;
}

/**********************************************************************
****************** @media (max-width: 575px) **************************
***********************************************************************/
@media (max-width: 575px) {
.md-close img {
  height: 24px;
  width: auto;
}
.md-close {
  right: 0;
  background: #0b2231c7;
  padding: 0;
  height: 50px;
  width: 50px;
  top: 0;
  border-radius: 0 0px 0 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .md-modal.md-show.md-mini {
    width: 160px;
    height: 160px;
    border-radius: 11px;
    overflow: hidden;
    bottom: 6px;
    top: inherit;
    left: inherit;
    right: 6px;
  }

    .md-show ~ .md-overlay {
        opacity: 0;
    }

    .why-choose .choose-right {
        padding: 15px;
        border-radius: 15px;
    }
    .why-choose.why_choose_about {
        padding-top: 3px;
        padding-bottom: 40px;
    }
    .listtable {
        margin: 40px 0 0;
    }

  .insta .owl-prev{margin-left: -10px !important;}
 .insta .owl-next{margin-right: -10px !important;}
.insta .owl-dots{display:none;}
.insta-img iframe {
  width: 96%;
}
  .navbar li a {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* .about-us p{text-align: center !important;} */
     .videomain {
    margin: 26px 20px 0;
    overflow: hidden;
    height: 293px;
    padding: 0 !important;
  }
  .videomain iframe {
  position: relative !important;
  width: 100% !important;
  object-fit: cover;
  object-position: top;
  height: 304px !important;
}

    .allusers.doctors .col-3 .rowin.h-100 {
        height: auto !important;
    }
    .home_banner.about {
        height: auto;
        min-height: 240px;
    }

    .allusers.doctors .col-3 {
        margin-bottom: 0;
    }

    .home_banner.about .about-title {
        width: 100%;
        padding-top: 120px;
    }
    .home_banner h1 span {
        letter-spacing: 2px;
        margin-top: 12px;
    }

    .about-us {
        padding-top: 25px;
    }

/* .about-us p {
  text-align: center;
} */
  .legacy.key_services .sliderTab .swiper-slide {
  max-width: 250px;
}
  .home_banner.s_blogs h1.newsh1 {
  margin: 0 0 20px;
}
.main_blogs.single_blogs, .main_blogs.single_blogs img{
  border-radius:15px;
  }
    .form_blogs .set h3 {
        font-size: 27px;
    }
    .home_banner.about.s_blogs h1 {
        font-size: 28px;
    }
    .single_blog h2.heading {
        display: none;
    }

    .blogs.single_blog .left_blog h4 {
        font-size: 20px;
    }
    .main_blogs.single_blogs {
        margin-top: 0;
    }
    .s_blogs .user {
        margin-bottom: 0;
    }
    .legacy .sliderTab .swiper-slide .text {
        font-size: 20px;
    }
    .legacy.key_services .sliderTab .swiper-slide.on span {
        font-size: 23px !important;
    }
    .legacy.key_services .sliderTab .swiper-slide.on .text,
    .legacy .sliderTab .swiper-slide .text {
        line-height: 30px !important;
    }

    .insta_scan {
        max-width: 450px;
        margin: 30px auto 0;
        display: inline-grid;
        text-align: center;
    }
    .insta_scan h3 {
        font-size: 28px;
    }
    .insta_scan div:first-child {
        order: 2;
    }
    .insta_scan img {
        margin: auto;
    }
    .head_right.d-flex h6 .btn1 {
        display: none;
    }
    .footer p {
        padding: 0;
        text-align: center;
    }
    .btn1.btn_mon {
        display: flex !important;
    }
    .courses .d-flex.top_nm p {
        font-size: 16px;
        padding: 12px 16px;
    }
    .doctor1 .about-img img {
        max-height: 280px;
        object-position: 0 -32px;
    }
    .courses .answer .d-flex.top_nm p {
        display: flex;
        width: 100%;
        margin: 0 0 15px;
        padding: 18px 0;
        gap: 33px;
        justify-content: space-evenly;
    }
    .courses .answer .set .image {
        height: 150px;
    }
    .courses ul li {
        padding: 15px;
    }
    .courses .head {
        padding-right: 40px;
    }
    .courses .head img {
        height: 38px;
    }
    .courses .head p {
        display: none;
    }
    .courses .answer h3 {
        font-size: 22px;
    }
    .allusers .about-img .dr-name strong {
        font-size: 22px;
    }
    .courses .head h3 {
        margin: 0;
    }
    .home_services .owl-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
    .home_services .accordion_li div {
        padding: 20px;
    }
    .home_services .accordion_li {
        padding: 0;
    }
    .home_services .accordion_li p {
        display: block;
    }
    .home_services .accordion_li::after {
        background: linear-gradient(80deg, #001421, #0b223112) !important;
        padding-right: 0 !important;
    }
    .home_services .owl-carousel .owl-nav button.owl-next {
        right: -30px;
    }
    .home_services .accordion_li h4 {
        font-size: 24px;
    }
    .home_services .owl-carousel .owl-stage-outer {
        border-radius: 20px;
    }
    .home_services .accordion_li {
        width: 100% !important;
    }
    .home_services .carousel_main {
        padding-left: 0;
        padding-right: 0;
    }
    .home_services .carousel-accordion .owl-item.expanded .accordion_li {
        max-width: 100% !important;
        width: 100% !important;
    }
    .doctor1 .about-img .col-6 {
        width: 100% !important;
    }
    .doctor1 .about-img .dr-name {
        padding: 15px;
        text-align: center;
    }
    .allusers .about-img .dr-name {
        text-align: center;
    }
    .doctor2 .col-6 {
        width: 100% !important;
    }
    .doctor2 .about-img img,
    .allusers .owl-carousel .about-img img {
        max-height: 320px;
    }

    /* .head_right.d-flex h6{display: none;} */
    .head_right.d-flex h6 a {
        /* min-width: 110px; */
        padding: 0 15px;
        font-size: 15px;
    }
    .head_right.d-flex h6 a.btn.btn_mon {
        min-width: auto;
        align-items: center;
        display: flex !important;
        background: transparent;
        padding: 0;
    }
    .head_right.d-flex h6 a.btn {
        display: none;
    }
    .home_team ul {
        display: block;
        gap: 0;
        justify-content: center;
    }
    .home_team ul li {
        padding: 0;
        margin-bottom: 12px;
    }
    .our-team .about-img {
        border-radius: 20px;
    }
    .home_team ul li span {
        padding: 15px;
        display: block;
    }
    .home_team {
        margin: 30px 0;
    }
    .home_services .owl-carousel .owl-nav {
        text-align: center;
        width: 31px;
        position: relative;
        right: 0;
        left: 0;
        margin: 20px auto 0;
        height: 40px;
    }
    .why-choose .box-left,
    .why-choose .box-left img {
        height: 250px;
    }
    .why-choose .choose-marquee .img {
        min-height: 300px;
    }
    h2.heading {
        font-size: 30px;
    }

    .home_banner {
        min-height: 350px;
        height: 50vh;
    }
    .home_banner h1 {
        margin: 0 0 17px;
    }

    /* .service-section .owl-nav.disabled { display: block;}
.service-section .owl-nav.disabled { display: block !important;}
 .service-section .owl-prev {
    font-size: 33px;
       margin: auto 6px;
    background: #0b223121;
    color: var(--TextColor);
    height: 50px;
    width: 50px;
    line-height: 9px;
    border-radius: 50%;
    opacity: 1;
  }

.service-section .owl-nav.disabled {
  display: inherit;
  position: relative;
  margin: auto;
  text-align: center;
  top: -15px;
}


.service-section .owl-next {
    font-size: 33px;
    margin: auto 6px;
    background: #0b223121;
    color: var(--TextColor);
    height: 50px;
    width: 50px;
    line-height: 9px;
    border-radius: 50%;
    opacity: 1;
}
.service-section .tab-content {
    margin-top: 0;
  }

 .service-section {
  overflow: hidden;
} */
    .video-section .video-title h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    .why-choose .why-us-wrap {
        padding: 30px 15px;
        border-radius: 20px;
    }
    .why-choose .choose-marquee {
        padding: 15px;
    }
    /* .service-section h2.heading span { font-weight: 700; display: block;} */
    .item.category-button img {
        max-height: 100% !important;
        min-height: 100% !important;
    }
    /* .service-section .dr-name strong,  .service-section .dr-name p, .service-section .dr-name span { padding: 0 12px;}
.service-section .dr-name { bottom: 00px; width: 100%; right: 0px;padding:12px 0px;} */
    .menu_main {
        width: 100%;
    }
    .menu_main .toggle.toggleclose {
        left: 20px;
        position: relative;
        display: inline-block;
    }
    .home_banner h1 {
        font-size: 38px;
    }
    .navbar .navbar_in {
        padding: 10px 15px;
    }
    .home_banner h1 span,
    .home_banner span {
        font-size: 17px;
    }
    .container {
        padding: 0 15px;
    }
    .logo {
        max-width: 110px;
    }
    h2.heading br {
        display: none;
    }

    /* home_banner */
    .home_banner .d-flex {
        display: block;
    }
    .home_banner .btn {
        min-width: 200px;
        margin-top: 10px;
    }
    .home_banner.about h1 {
        font-size: 34px;
    }
    .home_banner h2 {
        display: none;
    }
    .home_banner {
        padding: 70px 0 0;
        background-image: none !important;
        background-position: center;
        border-radius: 15px;
        overflow: hidden;
    }
    .mob_banner {
        display: block;
    }
    .home_banner {
        min-height: auto;
        height: auto;
        padding: 0 0 0;
    }
    .home_banner .btn.our_btn {
        display: none;
    }
    .mob-heading {
        display: block;
    }

    /* service-section */
    /* .service-section .category-button {  height: 250px; margin-top: 30px !important;  }
.owl-item.active.center {margin-top: -30px;} */
    /* .service-section .tab-content { margin-top: 20px;}
.service-section .category-button.active {margin-top: 0;}
.service-section .swiper-container { padding-top: 20px !important;}
.service-section .data-text h6 {text-align: center;} */
    .category-button {
        font-size: 12px;
    }
    .slider-button {
        top: -40px;
    }
    .slider-button.slider-prev {
        left: inherit;
        right: 32px;
    }
    .slider-button.slider-next {
        right: 0;
    }

    /* .why-choose .choose-left .d-flex { display: block;}
.why-choose .choose-top li { width: 100%; margin-top:20px;} */
    .why-choose .choose-top {
        text-align: center;
    }
    .why-choose .choose-top .choose-img img {
        height: 50px;
        margin: auto;
    }
    .why-choose .why-us-wrap .choose-img-right {
        margin-left: 0;
        margin-top: 20px;
    }
    .why-choose .choose-top ul {
        margin-bottom: 0;
        margin-top: 25px;
    }
    .why-choose .choose-top li {
        display: block;
    }
    .testi {
        padding: 30px 20px;
    }
    .testimonial .testi .testi_in {
        border-right: none;
        border-bottom: none;
        padding-bottom: 0;
    }
    .testi .testi_in p {
        margin-bottom: 10px;
    }

    .video-section .video-title h2 SPAN {
        display: initial;
    }
    .faq h2 {
        font-size: 32px;
    }
    .our-team {
        padding: 50px 0;
        border-radius: 20px 20px 0 0;
    }
    .listtable .set {
        display: flex;
        gap: 15px;
    }
    .listtable .listtable_in {
        margin-top: 25px;
        border-radius: 15px;
        padding: 20px 15px;
    }
    .listtable .set span {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta2 h2 span.mob_span {
        display: none;
    }

    /* footer */
    .footer {
        padding: 0 15px;
    }
    .footer .container {
        padding: 0 15px;
    }

    .popup-box .input-container {
        margin-bottom: 12px !important;
    }

    .popup-box {
        max-width: 315px !important;
        margin: auto;
    }
    .popup-overlay {
        display: block !important;
        overflow-y: auto;
        padding: 15px 0;
    }

    .allusers.doctors .about-img img {
        height: 350px;
    }
    .allusers.doctors .col-3 {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .new_section_home .stt .col-6.odr3 .col-6 {
        width: 100% !important;
        margin-bottom: 12px;
    }

    .home_banner h1 {
        font-size: 34px;
    }
    .navbar .navbar_in {
        padding: 15px 15px;
    }
    .doctor2 .about-img img,
    .allusers .owl-carousel .about-img img,
    .doctor1 .about-img img {
        max-height: 280px;
    }
    .nabh_logo {
        display: none;
    }
}

.carousel_main .owl-item.expanded {
    cursor: pointer;
}
