@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Krub:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url(nav.css);
@import url(https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css);
@import url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/css/intlTelInput.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css);


:root {
    --font_family: "Krub", serif;
    --regular_weight: 400;
    --medium_weight: 500;
    --bold_weight: 700;
    --blue_color: #1E3A8A !important;
    --pink_color: #C4302B !important;
    --light_blue_color: #D4DAEF;
    --light_pink_color: #FAD5E5;
    --light_bg: #FAFAFA;
    --light_color: #666666;
    --dark_color: #333333 !important;
}
/* Modal styles */
/* Drawer background (overlay) */
.custom-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  /* custom-Drawer content sliding from right */
  .custom-drawer-content {
    background-color: #fff;
    width: 400px;
    max-width: 100%;
    height: 100%;
    padding: 30px;
    position: absolute;
    top: 0;
    right: -100%;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  }
  
  /* custom-Drawer open state */
  .custom-drawer.open {
    display: block;
  }
  
  .custom-drawer.open .custom-drawer-content {
    right: 0;
  }
  
  .close-btn {
    font-size: 24px;
    float: right;
    cursor: pointer;
  }
  
  .custom-form {
    display: flex;
    flex-direction: column;
  }
  
  .custom-form label {
    margin-top: 10px;
  }
  
  .custom-form input,
  .custom-form textarea {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .custom-form button {
    margin-top: 20px;
    background-color: #1a3b8b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .custom-form button:hover {
    background-color: #092965;
  }
  
  
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }

  .custom-toast {
    background-color: #333;
    color: #fff;
    padding: 16px 24px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.4s forwards, fadeOut 0.5s forwards 3s;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeOut {
    to {
      opacity: 0;
      transform: translateX(100%);
    }
  }

.accordion-button:not(.collapsed){
    color: var(--blue_color) !important;
}

.accordion-button{
     color: var(--blue_color) !important;
}

.coverImage{
    max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading p strong {
	font-weight: 600;
}
.dark-text {
    color: var(--dark_color);
}
.docimg100 {
    width: 100px;
    height: 100px;
    border: 1px solid var(--pink_color);
  }
.card_shadow{
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    
}

.text-blue {
    color: var(--blue_color) !important;
}

.text-red {
    color: var(--pink_color) !important;
}

.blue-bg {
    background-color: var(--blue_color) !important;
}

.pink-bg {
    background-color: var(--pink_color) !important;
}

.light-bg {
    background-color: var(--light_bg);
}

.light-pink-bg {
    background-color: var(--light_pink_color);
}

.light-blue-bg {
    background-color: var(--light_blue_color);
}

.pink-color {
    color: var(--pink_color) !important
}

.blue-color {
    color: var(--blue_color) !important;
}

.light-text {
    color: var(--light_color) !important;
}

.pink-button {
    font-size: 14px;
    font-weight: 300;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border-radius: 10px;
    background-color: var(--pink_color);
    text-align: center;
    color: #fff;
    padding: 10px 25px;
    display: inline-block;
}

.blue-button {
    font-size: 14px;
    font-weight: 300;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border-radius: 10px;
    background-color: var(--blue_color) !important;
    text-align: center;
    color: #fff;
    padding: 10px 25px;
    display: inline-block;
}

body {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    line-height: 1;
    color: var(--dark_color) !important;
    font-family: var(--font_family) !important;
}

td, div, h1, h2, h3, p, input, form {
    margin: 0;
    padding: 0;
}

img {
    padding: 0;
    margin: 0;
    border: none;
    max-width: 100%;
}

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

a:hover, a {
    transition: all ease-in-out 0.3s;
    text-decoration: none !important;
}

.btn:focus, .dropdown-toggle:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

button:focus, input:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/*=-=-=-=-=-=-=-=-=main-wrapper=-=-=-=-=-=-=-=-=-=*/
.loader {
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    z-index: 10031;
    display: flex;
}

.loader img {
    max-width: 100px;
    height: 100px;
}

.wrapper ul li {
    font-family: var(--font_family);
    font-size: 16px;
    font-weight: var(--medium_weight);
    line-height: 16px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-align: center;
    color: var(--blue_color);
}

.wrapper ul li span {
    color: var(--pink_color);
}

.appobook ul li {
    display: inline-block;
}

.appobook ul li a {
    font-family: var(--font_family);
    font-size: 13px;
    font-weight: var(--regular_weight);
    padding: 8px 20px;
    display: inline-block
}

.logo {
    max-width: 200px;
    width: 100%;
}

.loginbtn, .menubook {
    background-color: var(--blue_color);
    border-radius: 12px;
    color: #fff !important;
    font-size: 15px;
    padding: 8px 16px !important;
}

.navigation {
    box-shadow: 0px 4px 4px 0px #00000040;
}

#customNavbar {
    position: fixed;
    /* Initial position */
    top: 0;
    /* Default starting point */
    width: 100%;
    transition: top 0.3s ease-in-out;
    /* Smooth transition for top property */
    z-index: 1000;
}

#customNavbar.fixed {
    position: fixed;
    /* Switch to fixed when scrolling */
}

/*#customNavbar {
     position: relative;
     top: 0;
     width: 100%;
     z-index: 1000;
     transition: top 0.3s ease;
}
 div#customNavbar.scrolled-up{
     position: fixed;
}
*/
.banner:after {
    content: '';
    background: #00000033;
    position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.heiht {
    height: 118px;
}

.bestin {
    background-color: var(--light_blue_color);
    padding: 50px 0 0;
}

.bestcon h2 {
    font-size: 30px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.bestcon p {
    font-size: 16px;
    font-weight: 300;
    color: var(--light_color);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.findcity h3 {
    font-size: 28px;
    font-weight: var(--medium_weight);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.findcity > ul > li {
    border-right: 1px solid var(--light_color);
    padding: 0 20px;
    display: inline-block;
}

.newsfrm .form-control {
    font-size: 14px;
}

.findcity > ul > li:first-child {
    padding-left: 0;
}

.findcity > ul > li:last-child {
    border-right: 0;
}

.findcity > ul > li .dropdown-toggle, .ctnm a {
    font-size: 18px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--pink_color)
}

.findcity > ul > li .dropdown-toggle span {
    font-size: 18px;
    font-weight: var(--medium_weight);
    text-align: center;
    text-underline-position: from-font;
    border: 1px solid var(--pink_color);
    text-decoration-skip-ink: none;
    color: var(--pink_color);
    display: inline-block;
    border-radius: 50%;
    padding: 3px 8px;
    line-height: normal;
    background-color: var(--light_pink_color);
}

.findcity ul.dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--blue_color)
}

.findcity ul.dropdown-menu h5 {
    font-size: 18px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--pink_color);
    padding: 0 1rem;
}

.findcity ul.dropdown-menu {
    box-shadow: 0px 2px 10px 0px #3D409457;
    background-color: var(--light_bg);
    border: 0;
}

.heading h4 {
    font-size: 30px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color);
}

.heading p {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--light_color);
}

.machinecon h3 {
    font-size: 24px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color);
}

.machinecon p {
    font-size: 14px;
    font-weight: 300;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color);
}

.laserimg {
    max-width: 130px;
    width: 100%;
    max-height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 25px;
    border: 2px solid var(--blue_color);
}

.laserimg-red {
    max-width: 130px;
    width: 100%;
    max-height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 25px;
    border: 2px solid var(--pink_color);
}

.lasercn h5 {
    font-size: 16px;
    font-weight: var(--medium_weight);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color);
    margin: 0 0 0px;
}

.lasercn a, .readmr {
    font-size: 14px;
    font-weight: var(--medium_weight);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--pink_color);
}

.lasercn-blue a, .readmr {
    font-size: 14px;
    font-weight: var(--medium_weight);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--blue_color);
}

.machineimg img {
    max-width: 240px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.storyin .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border: 1px solid var(--blue_color);
    background-color: transparent;
    opacity: 1;
}

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

.countrvw p {
    font-size: 28px;
    font-weight: var(--bold_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.raing small {
    font-size: 12px;
    font-weight: var(--regular_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.rvwtab .nav-link {
    font-size: 14px;
    font-weight: 300;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color) !important;
}

.rvwtab .nav-item .nav-link {
    border: 1px solid var(--pink_color) !important;
    border-radius: 30px;
}

.rvwtab .nav-tabs .nav-item.show .nav-link, .rvwtab .nav-tabs .nav-link.active {
    background: #D378B966;
    color: #B63390FA !important;
    border-color: #D378B966;
}

.cusimg {
    width: 60px;
    height: 60px;
}

.custrtng h4 {
    font-size: 18px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color)
}

.custrtng span {
    font-size: 14px;
    font-weight: 300;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--light_color)
}

.rvwcon h4 {
    font-size: 16px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color)
}

.rvwcon p {
    font-size: 14px;
    font-weight: 400;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--light_color)
}

.rvwplace p {
    font-size: 14px;
    font-weight: var(--medium_weight);
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--blue_color)
}

.rvwinr {
    background-color: #F7F7F7;
    border: 1px solid #D1C9C9;
    border-radius: 20px;
    padding: 15px;
}

.banner-style {
    margin-top: 110px;
}

.carousel-control-next, .carousel-control-prev {
    width: 10% !important;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: var(--blue_color) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: block;
    text-align: center;
    padding: 10px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center center !important;
    background-size: 16px 16px !important;
}

.swiper-button-next, .swiper-button-prev {
    background-color: var(--blue_color) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: block;
    text-align: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
}

.footer {
    background-color: #FAFAFA;
}

.footerinr img {
    max-width: 200px;
    width: 100%;
    margin: 0 0 15px;
}

.footerinr h3, .footerinr button {
    font-size: 18px !important;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--blue_color) !important;
    margin: 0 0 15px;
}

.footerinr p, .footerinr a, .footerinr li, .ftrcity ul li a, .copyright p, .footerinr button.sub-buttn, .footer .findcity > ul > li .dropdown-toggle, .footer .ctnm a, #slidePopup p, .locin ul li, .thank p, .blogcon p, .metatag ul li, .abtconin p {
    font-size: 14px !important;
    font-weight: 300 !important;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color) !important
}

.footer .findcity > ul > li .dropdown-toggle span {
    font-size: 16px;
    line-height: 14px;
    width: 25px;
    height: 25px;
}

.footerinr button:after {
    background-size: 15px;
}

.footer .findcity h3, .downapp h3 {
    font-size: 18px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--pink_color)
}

.citydropfooter > li {
    padding: 0 20px;
    border-right: 1px solid;
}

.citydropfooter > li:first-child {
    padding-left: 0;
}

.citydropfooter li:last-child {
    border-right: 0;
}

.btn.show, .btn:active, .btn:focus, .btn.active {
    border: 0;
}

.downapp img {
    max-width: 128px;
    width: 100%;
}

.bookright {
    position: fixed;
    right: -73px;
    top: 50%;
    transform: rotate(-270deg);
}

.responlogin {
    right: 40px;
    width: 35px;
    height: 35px;
    padding: 0 !important;
    font-size: 25px;
    text-align: center;
}

.stellarnav .menu-toggle {
    padding-right: 0;
}

.bookmobile ul li a {
    font-size: 12px;
}

.text-center.text-xl-end.text-lg-end.madeby p {
    font-size: 14px;
}

.shortsin iframe {
    max-width: 332px;
    margin: auto;
    width: 100%;
}

.menusocial svg {
    width: 20px !important;
    height: 20px !important;
}

.menuhead {
    position: absolute;
    top: 0;
    /* font-size: 20px;
     */
    padding: 13px 0 0 14px;
    color: #000;
}

.menuadres p {
    font-size: 13px;
}

.techout {
    background-color: #F2F2F2;
}

.techcon p {
    font-size: 14px;
    color: var(--dark_color);
    font-weight: 300;
}

.techcon h4 {
    font-size: 20px;
    font-weight: var(--medium_weight);
    color: var(--dark_color);
}

.prior p {
    font-size: 22px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--dark_color)
}

.counter, .countin span {
    font-size: 20px;
    font-weight: var(--medium_weight);
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--blue_color);
}

.countrcon p {
    font-size: 14px;
    font-weight: 300;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--light_color);
}

.whoimg {
    margin: 0 0 15px;
}

.bottom-border {
    border-bottom: 2px solid #3D4094;
}

.border-right {
    border-right: 2px solid #3D4094;
}

.btn-gradient {
    background: linear-gradient(white, white) padding-box, linear-gradient(90.29deg, #D378B9 0%, #7C7EBF 100%) border-box;
    border-radius: 50em;
    border: 3px solid transparent;
    color: var(--light_color);
    font-size: 20px;
    font-weight: 300;
}

.btn-gradient:after, .apobtn .dropdown-toggle:after {
    display: none !important;
}

.docout {
    background-color: #f6f6f6;
}

.doccon p, .regfees ul li, .guidecon p, .commoncon .lasercn p, .diagnoin p, .exmin ol li, .tretp, .stimulatecon p, .howin p, .stepcon p, .bookform .form-control, .bookform .form-select, .bookform a, .otp-field input, .accordion-body, .signtxt p, .bookform .form-check-label, .iti__selected-flag, .emrcon p, .emrcon ol li, .emrcon ul li, .emrsidebar p, .doclistcon p, .doclistcon span, .info p {
    color: #666;
    font-size: 14px;
}

.emrcon ul li {
    list-style: disc;
}

.doccon {
    min-height: 160px;
}

.apobtn .dropdown-menu {
    box-shadow: 0px 2px 10px 0px #3D409457;
    font-size: 14px;
}

.border-right-bottom {
    border-right: 2px solid var(--pink_color);
}

.bottom-pink-border {
    border-bottom: 2px solid var(--pink_color);
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag, .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}

.iti__country {
    font-weight: 300;
    font-size: 12px;
}

.stimulatecon h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark_color)
}

.step {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--pink_color);
    /* background-color: var(--light_pink_bg);
     */
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    color: var(--pink_color)
}

/*.booknw{
     background: linear-gradient(135deg, rgba(250,213,229,1) 0%,rgba(212,218,239,1) 100%);
}
*/
.process .nav-link {
    color: var(--light_color) !important;
    border: 1px solid var(--pink_color) !important;
    font-size: 14px;
}

.process .nav-link.active {
    background-color: var(--light_pink_color) !important;
    color: var(--pink_color) !important;
    border-color: var(--light_pink_color) !important
}

.process .nav-link span {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background-color: var(--light_pink_color) !important;
    line-height: 28px;
    color: var(--pink_color);
}

.process .nav-link.active span {
    background-color: var(--pink_color) !important;
    color: #fff !important
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important
}

.accordion-button:after {
    transform: rotate(-90deg) !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg) !important;
}

.scroll-section .nav-link {
    border: 1px solid #7C7EBF !important;
    color: var(--dark_color) !important
}

.scroll-section .nav-link.active {
    background-color: var(--light_blue_color) !important;
    color: var(--blue_color) !important;
    border-color: var(--light_blue_color) !important;
}

.livechat .chaticn {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    box-shadow: 3px 10px 10px 0 #0000005c;
    margin: 0 auto 5px;
}

.livechat a span {
    font-size: 12px;
    font-weight: 300;
}

.ambulmen ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--pink_color) !important;

}

.ambulmen ul li {
    list-style: disc;
    margin: 0 0 10px;
    color: var(--pink_color) !important;
}

.ambusec:after {
    content: '';
    display: block;
    background-color: var(--pink_color) !important;
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.saycon h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3D4094
}

.saycon p {
    min-height: 45px;
}

.fextramen ul li {
    display: inline-block;
    border-right: 1px solid #ccc;
    padding: 0 6px 0 0;
    line-height: normal;
    font-size: 13px;
}

.fextramen ul li:last-child {
    border: 0;
}

.fextramen ul li a {
    color: #3e4094;
}

.fextramen h6, .fextramen h5 {
    font-size: 13px;
    font-weight: 600;
}

.docimg {
    width: 70px;
    height: 70px;
    border: 1px solid var(--pink_color);
}

.doclist #prev {
    transform: rotate(90deg);
}

.doclist #prev:after, .doclist #next:after {
    color: var(--pink_color);
}

.doclist #next {
    transform: rotate(90deg);
}

.directvid iframe {
    height: 500px;
}


.add-read-more.show-less-content .second-section, .add-read-more.show-less-content .read-less {
    display: none;
}

.add-read-more.show-more-content .read-more {
    display: none;
}

.add-read-more .read-more, .add-read-more .read-less {
    font-weight: bold;
    margin-left: 2px;
    color: var(--pink_color);
    cursor: pointer;
}

.signimg img {
    width: 60px;
    height: 60px;
}

#slidePopup {
    position: fixed;
    bottom: 0;
    left: -400px;
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: left 0.5s ease-in-out;
    z-index: 1050;
    /* Above other content */
}

#slidePopup.show {
    left: 0;
}

#slidePopup .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    /* background: none;
     */
    border: none;
    width: 25px;
    height: 25px;
    background-color: red;
    border-radius: 50%;
    line-height: 0;
    color: #fff;
}

#slidePopup h4 span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #b6348f;
    display: inline-block;
    vertical-align: middle;
    line-height: 37px;
    margin: 0 10px 0 0;
}

#slidePopup input {
    font-size: 14px;
}

.tabSwiper .swiper-slide, .commnSwiper .swiper-slide {
    display: inline-block;
    /* Ensure slides respect content width */
    white-space: nowrap;
    /* Prevent content from breaking into multiple lines */
    width: auto !important;
}

.tabSwiper .swiper-button-prev, .tabSwiper .swiper-button-next, .commnSwiper .swiper-button-prev, .commnSwiper .swiper-button-next {
    width: 30px;
    height: 30px;
    font-size: 15px;
    top: 27px;
    line-height: 26px;
}

.tabSwiper .swiper-button-prev, .commnSwiper .swiper-button-prev {
    left: 0;
}

.tabSwiper .swiper-button-next, .commnSwiper .swiper-button-next {
    right: 0;
}

.tabSwiper .swiper-button-prev:after, .tabSwiper .swiper-button-next:after, .commnSwiper .swiper-button-prev:after, .commnSwiper .swiper-button-next:after {
    font-size: 10px;
    line-height: 20px;
}

/*.back-to-top {
     bottom: 110px;
     display: none;
     width: 40px;
     height: 40px;
     color: #fff !important;
     font-size: 14px !important;
     line-height: 34px !important;
     right: 40px;
     box-shadow: 0px 0px 20px 0 #3e4094a6;
     z-index: 1032 
}
*/
#back-to-top {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    bottom: 40px;
    right: 40px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 34px !important;
    border: 2px solid var(--pink_color) !important;
}

#back-to-top:hover {
    cursor: pointer;
    background-color: #333;
}

#back-to-top:active {
    background-color: #555;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.blogcon h2 {
    min-height: 50px;
}

.locin ul li:first-child {
    min-height: 65px;
}

.alphabet ul li a {
    display: block;
    text-align: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background-color: #FAD5E5;
    color: var(--pink_color);
    line-height: 45px;
}

.medicanm ul li {
    border-bottom: 1px solid #66666630;
    padding: 20px 0 20px;
    color: var(--light_color);
    font-size: 14px;
}

.medicanm ul li span {
    display: block;
    font-size: 12px;
    color: #666666;
}

.alphaserch svg {
    top: 9px;
    left: 12px;
}

.alphaserch .form-control {
    padding: 10px 0 10px 40px;
    height: auto;
    color: #666 !important;
}

.mailcall:hover {
    color: var(--pink_color) !important;
}

ol.breadcrumb li {
    font-size: 14px;
}

.clicbanr {
    padding: 140px 0;
}

.contentload {
    display: none;
}

#loadMore, #loadm2 {
    transition: .3s;
}

.noContent {
    color: #000 !important;
    background-color: transparent !important;
    pointer-events: none;
}

.otp-field input {
    text-align: center;
    margin: 2px;
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    border: 2px solid var(--pink_color);
    box-shadow: 0 0 2px 2px #a527ff6a;
}

.disabled {
    opacity: 0.5;
}

.space {
    margin-right: 1rem !important;
}

#scroll_container {
    position: fixed;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#scroll_container .wrapper {
    transition: all ease 0.4s;
    transform-origin: center;
    cursor: grab;
}

#scroll_container .wrapper.drag {
    cursor: grabbing;
    transform: scale(0.93);
}

.bloc {
    display: inline-block;
    width: 440px;
    height: 300px;
    background: black;
    margin: 25px;
}

.grid {
    position: relative;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

/* Common style */
.grid figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    border-radius: 20px;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
}

.grid figure figcaption {
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before, .grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000026;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

.effect-lily:hover figcaption {
    background: #00000080;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

.effect-lily h2 {
    font-size: 24px;
    font-weight: var(--medium_weight);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-shadow: 0px 2px #00000040;
}

.effect-lily p {
    font-size: 14px;
    font-weight: 300;
    text-shadow: 0px 2px #00000040;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.effect-lily a {
    font-size: 14px;
    font-weight: 300;
    line-height: 21.13px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background-color: var(--blue_color);
    border-radius: 30px;
    color: #fff;
    padding: 8px 25px;
    display: inline-block;
    text-transform: capitalize;
}

figure.effect-lily img {
    width: 100%;
    webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

figure.effect-lily figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 50%;
}

figure.effect-lily h2, figure.effect-lily p, figure.effect-lily a {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

figure.effect-lily h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.effect-lily p {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

figure.effect-lily:hover img, figure.effect-lily:hover h2, figure.effect-lily:hover p, figure.effect-lily:hover a {
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.effect-lily:hover h2, figure.effect-lily:hover p {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -110px, 0);
}

figure.effect-lily:hover a {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

figure.effect-lily:hover p, figure.effect-lily:hover a {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    opacity: 1;
}

.content {
    display: table;
    width: 100%;
    min-height: 95vh;
    z-index: 1;
    position: relative;
}

.content .inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.inner h1 {
    text-shadow: 0px 2px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 48px;
    font-weight: var(--medium_weight);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.inner p {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.wrapper {
    display: block;
    height: 35px;
    position: relative;
}

#info {
    position: absolute;
    top: 0;
}

#static, #ticker {
    display: inline-block;
    width: 100%;
    height: 40px;
    color: #fff;
}

#static {
    /*line-height: 20px;
     font-size: 20px;
    */
    vertical-align: top;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    overflow: hidden;
}

#static:before {
    content: "";
    position: absolute;
    left: 0;
    top: -25px;
    height: 25px;
    width: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0, rgba(255, 255, 255, 0.97) 27%, rgba(255, 255, 255, 0));
}

#static:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    height: 25px;
    width: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 75%, #fff);
}

#ticker {
    position: absolute;
    margin: 0 5px;
    list-style: none;
    padding: 0;
    vertical-align: top;
    height: 100px;
    top: -30px;
    text-align: left;
    transition: 0.5s;
}

#ticker li {
    position: relative;
    padding: 0;
    line-height: 50px;
    font-size: 16px;
    transition: 0.8s;
    margin: 25px 0;
}


/*.box {
      position: relative;
      width: 50%;
      padding: 1rem 3rem;
      opacity: 0;
      transform: translateY(500px) scale(0);
      transition: opacity 0.3s, transform 0.3s;
    }

    .box.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }*/


.box {
    position: relative;
    width: 50%;
    padding: 1rem 3rem;
    /*opacity: 0;
    animation: animateBox 0.3s linear forwards;*/
}

/*@keyframes animateBox {
  0% {
    opacity: 0.8;
    transform: translateY(500px) scale(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.box:nth-child(2) {
  animation-delay: 0s;
}

.box:nth-child(3) {
  animation-delay: 0.4s;
}

.box:nth-child(4) {
  animation-delay: 0.6s;
}

.box:nth-child(5) {
  animation-delay: 0.9s;
}

.box:nth-child(6) {
  animation-delay: 1s;
}

.box:nth-child(7) {
  animation-delay: 1s;
}*/

.box-left {
    left: 0;
    text-align: right;
}

.box-right {
    left: 50%;
}

.box i {
    position: absolute;
    background-color: var(--light_pink_color);
    top: 71px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 50%;
    right: -17px;
    z-index: 10;
    /* color: red; */
}

.box .html {
    color: #00626c;
    border: 4px solid var(--pink_color);
}

.box .css {
    /* color: var(--blue); */
    /* border: 4px solid var(--blue); */
    color: #00626c;
    border: 4px solid var(--pink_color);
}

.box .javascript {
    /* color: var(--yellow); */
    /* border: 4px solid var(--yellow); */
    color: #00626c;
    border: 4px solid var(--pink_color);
}

.box .react {
    /* color: var(--blue); */
    /* border: 4px solid var(--blue); */
    color: #00626c;
    border: 4px solid var(--pink_color);
}

.box .angular {
    /* color: var(--red); */
    /* border: 4px solid var(--red); */
    color: #00626c;
    border: 4px solid var(--pink_color);
}

.box .vue {
    /* color: var(--green); */
    /* border: 4px solid var(--green); */
    color: #00626c;
    border: 4px solid var(--pink_color);
}

.box-right i {
    left: -18px;
}

.info {
    position: relative;
    padding: 15px 30px 15px 15px;
    border-radius: 10px;
    background: #fff;
    min-height: 146px;
    box-shadow: 0px 10px 7px 0 #0000001f;
}

.info h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info p {
    margin: 0;
}


.info a {
    text-decoration: none;
    color: var(--blue);
    font-size: 1rem;
    font-weight: 500;
    display: none;
}

.info a:hover {
    text-decoration: underline;
}

.info::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 66px solid transparent;
    border-bottom: 66px solid transparent;
    border-left: 19px solid #ffffff;
    right: -19px;
    z-index: 10;
}

.box-right .info::after {
    border-left: 0;
    border-right: 15px solid #fff;
    left: -14px;
}


.vertical-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 0; /* Initially hidden */
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: var(--blue_color);
    transition: height 3s linear;
}

.vertical-line.animate {
    height: 100%;
}

/*.vertical-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 2px;
  background-color: var(--blue_color);
  animation: animateLine 3s linear forwards;
}

@keyframes animateLine {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}*/

@media screen and (max-width: 775px) {
    .vertical-line {
        left: 60px;
    }

    .box {
        width: 100%;
        /* padding-right: 1.5rem; */
        padding-left: 109px;
    }

    .box-left,
    .box-right {
        left: 0;
        text-align: left;
    }

    .box i {
        left: 42px;
    }

    .info::after {
        left: -16px;
    }

    .box-left .info::after {
        border-left: 0;
        border-right: 14px solid white;
        left: -14px;
    }

    /* .box i::after {
      content: "";
      width: 6px;
      height: 50px;
      background-color: red;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    } */
}


@media (max-width: 767px) {
    .box-left.fstml .info::after {
        border-left: 0;
        border-right: 14px solid white;
        left: -14px;
        top: 10px;
        border-top: 75px solid transparent;
        border-bottom: 75px solid transparent;

    }

    .box .html {
        top: 82px;
    }
}

@media screen and (max-width: 500px) {
    .vertical-line {
        left: 40px;
    }

    .box {
        width: 100%;
        padding-right: 1.5rem;
        padding-left: 85px;
    }

    .box i {
        left: 22px;
    }

    /* .box i::after {
      content: "";
      width: 5px;
      height: 50px;
      background-color: red;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    } */
}


@media (max-width: 1199px) {
    .heiht {
        height: 94.5px;
    }
}

@media (max-width: 1024px) {
    .clicbanr {
        padding: 80px 0;
        background-position: -90px center !important;
    }
}

@media (max-width: 768px) {
    .clicbanr {
        padding: 20px 0;
        background-position: -50px center !important;
    }

    .tabSwiper.swiper, .commnSwiper.swiper {
        padding: 0 30px;
    }

    .borderno {
        border-right: 0;
    }

    .top-border {
        border-top: 2px solid #3D4094;
        border-right: 2px solid #3D4094;
        border-bottom: 0;

    }

    .tabnobodr {
        border-right: 0;
    }

}

@media (max-width: 480px) {

    .content {
        min-height: 35vh;
    }

    .citydropfooter > li {
        padding: 0 5px;
    }

    .footer {
        padding-bottom: 70px;
    }

    .machineimg img {
        max-width: 120px;
    }

    .inner h1 {
        font-size: 35px;
    }

    .inner p {
        font-size: 18px;
    }

    .heading h4, .bestcon h2, .findcity h3 {
        font-size: 25px;
    }

    .heading p, .rvwtab .nav-link {
        font-size: 14px;
    }

    .logo {
        max-width: 150px;
    }

    .findcity > ul > li {
        padding: 0 10px 0 4px;
    }

    .footer .findcity > ul > li {
        padding: 0;
        border: 0;
    }

    .findcity > ul > li .dropdown-toggle, .ctnm a {
        font-size: 14px;
    }

    figure.effect-lily figcaption > div {
        padding: 5px;
    }

    .effect-lily h2 {
        font-size: 16px;
    }

    #ticker li {
        font-size: 12px;
    }

    .border-right-bottom {
        border-right: 0;
    }

    .bdr, .respons-bottom-pink-border {
        border-bottom: 2px solid var(--pink_color);
    }

    div.livechat {
        bottom: 60px !important;
    }

    .bottom-pink-border {
        border-bottom: 0;
    }

    .clicbanr {
        background: none !important;
    }

    .back-to-top {
        right: 15px;
        bottom: 20px;
    }

    .alphabet ul li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    #slidePopup {
        bottom: 70px;
    }

    .directvid iframe {
        height: 250px;
    }

}


.accordion-item {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--bs-border-color) !important;
}