@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url(icons/material-design-iconic-font/css/materialdesignicons.min.css);
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


html, body {
    font-family: "Noto Sans", sans-serif;;
    background:#faf2ff;
    font-size: 16px;
    scroll-behavior: smooth;
    color: #444;
  }
  * {
      padding:0;
      margin:0;
      box-sizing: border-box;
  }
  /* *::selection{
    background: var(--text-color);
    color:var(--white-color)
  } */
  
  a:hover{
    text-decoration: none !important;
  }

  p, ul li, ol li{
    font-size: 16px;
    font-family: "Noto Sans", sans-serif;
    color: #444;
    text-align: justify;
  }

  a{
    color: #8a42c2;
  }
  .editor-data a:hover {
    color: #7e44a9 !important
}

  select:required:invalid {
    color: #8c8787 !important;
  }
  
  option[value=""][disabled] {
    display: none !important;
  }
  
  option {
    color:#000
  }

  .text-purple{
    color: #7e44a9 !important;
  }

.p-relative {
    position: relative;
}

  /* ========= header css ============= */

  header.fixed-header.fixed-nav {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    box-shadow: -2px 5px 9px #69696947;
}


  .header-menu ul {
    display: flex;
    align-items: center;
    margin:0;
}

.header-menu ul li {
    display: inline-block;
    list-style: none;    
    position: relative;
}

.header-menu ul li a{
    margin: 0 12px;
    padding: 15px 5px;
    color: #fff;
    display: block;
    position: relative;
}

.header-menu ul li:first-child a{
    margin-left: 0;
}

.header-menu ul li:last-child a{
    margin-right: 0;
}

.header-menu ul li a.active{
  font-weight: bold;
}

.header-menu ul li a:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 0%;
    height: 3px;
    bottom: 6px;
    background: #fff;
    transform: translateX(-50%);
    transition: all 0.35s ease-in-out;
}

.header-menu ul li a.active:before,
.header-menu ul li a:hover:before {
    width: 90%;
    transition: all 0.35s ease-in-out;
}

.logo{
    position: absolute;
     width: 135px;
    height: 135px;
    border-radius: 50%;
    background: #fff;
    z-index: 9;
    left: 0px;
    top: -20px;
    background: linear-gradient(45deg, #faf2ff, #f1e1ff);
    box-shadow: inset 0px -6px 20px #4a008240;
}


.logo img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-bottom: 8px;
}


header.fixed-nav {
    background: #aa67dc;
    padding: 25px 0;
    /* box-shadow: -2px 5px 9px #a9a5a547; */
    position: relative;
    z-index: 9;
}

/* header.fixed-nav div.d-flex {
    height: 100px;
} */

.wrapper-area{
  /* min-height: 60vh; */
  min-height: calc(100vh - 200px);
}

.section-padding{
  padding-top: 50px;
  padding-bottom: 50px;
}



/* ================ header dropdown ============= */

ul.submenu-dropdown {
    position: absolute;
    left: 50%;
    top: 100%;
    min-width: 300px;
    background:#7d37be;
    display: none;
    flex-direction: column;
    z-index: 1;
    /* border-radius: 10px; */
    transform: translateX(-50%) ;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 10px #333333bd;
    border: 1px solid #cccccc45;
}    

ul.submenu-dropdown li {
    display: block;
    width: 100%;
}


ul.submenu-dropdown li a {
    margin: 0;
    border-bottom: 1px solid #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: normal !important;
    transition: all 0.5s ease-in-out;
    font-size: 14px;
    position: relative;
}

ul.submenu-dropdown li a:hover {
    background: #a253e7;
    transition: all 0.5s ease-in-out;
}

ul.submenu-dropdown li:last-child a{
    border-bottom: 0;
}

ul.submenu-dropdown:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background:#7d37be;
    transform: rotate(45deg) translateX(-50%);
    left: 50%;
    top: 0px;
}


li.submenu:hover ul.submenu-dropdown{
    transition: all 0.5s ease-in-out;
    display: flex;
    animation: fadeInUpSubmenu 0.65s ;
}

.header-menu ul li a i {
    margin-left: 10px;
    font-size: 18px;
    padding-top: 5px;
}

li.submenu a {
    display: flex !important;;
}

ul.submenu-dropdown li a:after,
ul.submenu-dropdown li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: unset;
    width: 4px;
    background: #a253e7;
    height: 100%;
    transition: all 0.5s ease-in-out;
    transform: unset;
    z-index: -1;
}

ul.submenu-dropdown li a:after{
    left: unset;
    right: 0;
}

ul.submenu-dropdown li a:hover:after,
ul.submenu-dropdown li a:hover:before{
    width: 100%;
    transition: all 0.5s ease-in-out;
}


@keyframes fadeInUpSubmenu{
    0%{
        opacity:0;
        -webkit-transform:translate3d(0,100%,0) translateX(-50%);
        transform:translate3d(0,100%,0) translateX(-50%)
    }
    to{
        opacity:1;
        -webkit-transform:translateX(-50%);
        transform:translateX(-50%)}
    }

  /* ========= footer css ============= */
footer {
    /* background: #2f0652; */
    background: #481f67;
    color: #efddff;
    padding: 30px 0 0;
    font-size:15px;
}

.footer-bottom {
    border-top: 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: #efddff;
    text-align: center;
    padding: 12px;
    margin-bottom: 0;
    font-size:13px;
}

.footer-links ul li p,
.footer-bottom ul li a,
.footer-links ul li a {
    color: #efddff;
    transition: all 0.5s ease-in-out;
    text-align: left;
    display: block;
    font-size:15px;
}

.footer-bottom ul li a{
    font-size:13px
}

.footer-bottom ul li,
.footer-links ul li {
    list-style: none;
    display: inline-block;
    margin: 6px;
    /* padding: 0px 15px; */
    padding-left: 25px;
    position: relative;
    transition: all 0.5s ease-in-out;
    /* border-right: 1px solid #fff; */
}

.footer-links ul li:hover {
    margin-left: 15px;
    transition: all 0.5s ease-in-out;
}

.footer-bottom ul li:hover a,
.footer-links ul li:hover a{
    color: #fff;
    transition: all 0.5s ease-in-out;
}


.footer-links ul {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
}

/* .footer-links ul li:last-child {
    border: 0;
} */

.footer-info img {
    width: 120px;
    /* background: #fff; */
    border-radius: 50%;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #faf2ff, #f1e1ff);
    box-shadow: inset 0px -6px 20px #4a008240;
}

.footer-info p {
    color: #efddff;
    width: 90%;
    font-size:15px;
}


.footer-links ul li:before {
    position: absolute;
    color: #efddff;
    left: 0;
    top: 50%;
    content: '\f178';
    font-family: 'FontAwesome';
    font-size: 12px;
    transform: translateY(-50%);
}

.footer-links h3 {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.footer-links h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #efddff;
    width: 60%;
    height: 3px;
    border-radius: 20px;
}
/* ================ home slider =========== */

.slider-caption {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 100px;
    width: 60%;
}

.slider-caption h2 {
    font-size: 60px;
    color: #fff;
    /* color: #7e44a9; */
    font-weight: bold;
    font-family: "Fraunces", serif;
    text-shadow: 2px 1px 2px #7e44a9, -1px -1px 0px #7e44a9;
    letter-spacing: 3px;
}

.slider-caption p {
    font-size: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;

}

.home-slider .owl-item img {
    height: 600px !important;
    width: 100%;
    object-fit: cover;
}

.home-slider .item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4012683d;
    left: 0;
    top: 0;
}

/* Optional: style nav arrows */
/* Position nav buttons on left and right side */
.home-slider .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff !important;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.home-slider .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Left and right positioning */
.home-slider .owl-nav .owl-prev {
  left: 15px;
}
.home-slider .owl-nav .owl-next {
  right: 15px;
}

.home-slider.owl-theme .owl-nav [class*=owl-] {
    padding: 10px 8px;
    background: #7e44a9;
}

/* Dots styling */
.home-slider .owl-dots {
  text-align: center;
  margin-top: -35px;
  position: relative;
}
.home-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  transition: background 0.3s;
}
.home-slider .owl-dot.active span {
  background: #000;
}

/* ============ heading ============== */

.section-heading h2 {
    font-size: 36px;
    color: #7e44a9;
    text-align: center;
    font-weight: 600;
    font-family: "Fraunces", serif;
}

.section-heading p {
    text-align: center;
    color: #8463ac;
    font-size: 20px;
}

.section-heading.text-left h2, 
.section-heading.text-left p {
    text-align: left;
}

.section-heading.text-right h2, 
.section-heading.text-right p {
    text-align: right;
}


/* ================== Services =============== */

.service-box {
    width: 100%;
    border-radius: 30px;
    position: relative;
    line-height: 0;
    overflow: hidden;
    z-index: 1;
    margin: 15px 0;
    height: 245px;
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* overflow: hidden; */
    text-align: center;
    border-radius: 30px;
}

.service-overlay a.service-icon {
    position: absolute;
    opacity: 0;
    top: -100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    line-height: 70px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
}

.service-overlay h5 {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    line-height: 2;
    font-size: 22px;
     transition: all 0.35s ease-in-out;
     font-weight: 500;
}

.service-overlay h5 a{
  color:#444
}

.service-box:hover .service-overlay h5 {
    line-height: 3.75;
    transition: all 0.35s ease-in-out;
     font-weight: 600;
}

.service-overlay h5:before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -10%;
    width: 120%;
    height: 90px;
    display: inline-block;
    z-index: -1;
    border-radius: 50% 50% 0px 0px;
    background: #ffffff9c;
    transition: all 0.35s ease-in-out;
}

.service-box:hover .service-overlay h5:before{
    height: 140px;
    transition: all 0.35s ease-in-out;
}

.service-box:hover .service-overlay a.service-icon {
    top: 0%;
    opacity: 1;
    background:#8881df;
    transition: all 0.35s ease-in-out;
}

.green{
  box-shadow: 0 0 0 2px #63ed89;
}

.purple{
  box-shadow: 0 0 0 2px #8881df;
}

.yellow{
  box-shadow: 0 0 0 2px #FFDC15;
}

.red{
  box-shadow: 0 0 0 2px #ff7380;
}

.blue{
  box-shadow: 0 0 0 2px #69dceb;
}

.orange{
  box-shadow: 0 0 0 2px #ff972f;
}

.service-box.green .service-overlay h5:hover a,
.service-box.green .service-overlay h5:hover{
  color:#63ed89;
}

.service-box.purple .service-overlay h5:hover a,
.service-box.purple .service-overlay h5:hover{
  color:#8881df;
}

.service-box.yellow .service-overlay h5:hover a,
.service-box.yellow .service-overlay h5:hover{
  color:#FFDC15;
}

.service-box.red .service-overlay h5:hover a,
.service-box.red .service-overlay h5:hover{
  color:#ff7380;
}

.service-box.blue .service-overlay h5:hover a,
.service-box.blue .service-overlay h5:hover{
  color:#69dceb;
}

.service-box.orange .service-overlay h5:hover a,
.service-box.orange .service-overlay h5:hover{
  color:#ff972f;
}


.service-box.green:hover .service-overlay a.service-icon{
  background:#63ed89;
}

.service-box.purple:hover .service-overlay a.service-icon{
  background:#8881df;
}

.service-box.yellow:hover .service-overlay a.service-icon{
  background:#FFDC15;
}

.service-box.red:hover .service-overlay a.service-icon{
  background:#ff7380;
}

.service-box.blue:hover .service-overlay a.service-icon{
  background:#69dceb;
}

.service-box.orange:hover .service-overlay a.service-icon{
  background:#ff972f;
}


/* ====================== */

.testimonial-box {
    width: calc(100% - 12px);
    /* background: #fbf3ff; */
    background: #fcf5ff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 3px 3px 6px #ab87ef4f, 0px 0px 6px #ab87ef4f;
    margin: 20px 8px;
    /* border: 1px solid #e5d1e6; */
    position: relative;
}

.testimonial-box:before {
    content: '\201c';
    position: absolute;
    right: 28px;
    bottom: 0;
    font-size: 60px;
    color: #7e44a9;
    content: '\f10e ';
    height: auto;
    width: auto;
    opacity: 0.45;
    font-family: 'FontAwesome';
}

.testimonial-box .testimonial-info img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid #7e44a9;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-box p {
    font-size: 15px;
    /* color: #808080; */
    color: #494949;
}

.testimonial-name h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial-name p {
    color: #8d8d8d;
    font-size: 14px;
    margin:0
}

.star-rating i {
    color: #fba017;
}

section.testimonial-section {
    background:  url('../images-front/testimonial-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    background-attachment: fixed;
}
section.testimonial-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #b66aeed1;
    opacity: 1;
    top: 0;
    left: 0;
}


/* ===================== */



.update_group {
    display: flex;
    margin:5px 0;
}

.update_left {
    width: 160px;
    border-right: 2px dashed #7e44a9;
    position: relative;
    text-align: right;
    padding-right: 45px;
}

.update_right {
    width: 100%;
    border: 1px solid #ac92c0;
    margin-left: 50px;
    padding: 20px;
    position: relative;
    background: #f9efff;
    z-index: 1;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 2px 3px 5px 0 #40126873;
}

.update_left:before {
    content: '';
    position: absolute;
    top: 15px;
    right: -15.5px;
    width: 30px;
    height: 30px;
    background: #7e44a9;
    outline: 1px dashed #7e44a9;
    border-radius: 50%;
    outline-offset: 4px;
    content: '\f091 ';
    color: #fff;
    font-family: 'FontAwesome';
    text-align: center;
    line-height: 30px;
    font-size: 20px;
}

.update_right:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    left: -10px;
    /* background: #ccc; */
    transform: rotate(45deg);
    top: 7px;
    border: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #9680ae;
}

/* =============================== */


.update_left {
    width: 50%;
    margin-right: 51px;
    margin-left: 50px;
    padding-top: 18px;
    font-size: 16px;
}

.update_right {
    width: 50%;
    margin: 0;
    margin-bottom: 30px;
}

.update_group:nth-child(odd) {
    flex-direction: row-reverse;
}

.update_group:nth-child(odd) .update_left {
    border-left: 2px dashed #7e44a9;
    border-right: 0;
    text-align: left;
    padding-left: 45px;
    margin-right: 50px;
    margin-left: 51px;
}

.update_group:nth-child(odd) .update_left::before {
    right: unset;
    left: -15.5px;
}

.update_group:nth-child(odd) .update_right {
    margin-right: 0;
    margin-left: 0;
}


.update_group:nth-child(odd) .update_right:before {
    right: -10px;
    left: unset;
    transform: rotate(45deg);
    top: 15px;
    border: 10px solid transparent;
    border-right: 10px solid #9680ae;
    border-top: 10px solid transparent;
}

.update_right {
    font-size: 13px;
}

.update_group p, .update_group ul li, .update_group p, .update_group ol li, .update_group ol, .update_group ul {
    margin: 0;
    padding: 0;
    color: #7e44a9;
    font-weight: 600;
    text-align: left;
    /* letter-spacing: 0.5px; */
}

.update_right:after {
    content: '\f091 ';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 120px;
    opacity: 0.075;
    color: #7e44a9;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    z-index: -1;
}

.page-breadcrumb {
    background: #7e44a9;
    background: url('../images-front/breadcrumb-bg.jpg') no-repeat;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 20px 50px;
}

.page-breadcrumb:before {
    /* background: #00000047; */
    background: #7c00d894;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-breadcrumb h6 {
    font-size: 40px;
    color: #fff;
    position: relative;
    z-index: 1;
    font-family: "Fraunces", serif;
}

.footer-links.footer-contact ul li:before {
    display: none;
}

.footer-links.footer-contact ul li {
    display: flex;
    padding-left: 0;
    color: #efddff;
    margin:6px !important;
}

.footer-links.footer-contact ul li span {
    margin-right: 18px;
    min-width: 16px;
    display: inline-block;
    font-size: 18px;
    text-align: center;
}

.about-img{
  border-radius: 20px;
  overflow: hidden;
box-shadow: -8px 8px 0px 0px #600b9e6b, 8px -8px 0px 0px #600b9e6b;
border: 2px solid #600b9e6b;
max-height: 500px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.btn.btn-read-more,
button.btn.btn-read-more {
    background: linear-gradient(45deg, #7c40a9, #b168e7);
    border: 1px solid #6c3d97;
    color: #fff !important;
    padding: 12px 28px;
    min-width: 180px;
    box-shadow: 0px 0px 7px 0 #7e44a9;
    border-radius: 22px 0px 22px 0px;
    transition: all 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

a.btn.btn-read-more:hover, button.btn.btn-read-more:hover {
    background: linear-gradient(220deg, #7e44a9, #6c349d);
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 10px 0 #7e44a9;
    border-radius: 0px 22px 0px 22px;
}

button.btn.btn-read-more:before,
a.btn.btn-read-more:before {
    content: '';
    position: absolute;
    width: 0px;
    height: 100%;
    background: #ffffff25;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    transition: all 0.25s ease-in-out;
    border-radius: 6px 22px 6px 22px;

}

button.btn.btn-read-more:hover:before,
a.btn.btn-read-more:hover:before {
    /* left: %; */
    width: 100%;
    transition: all 0.25s ease-in-out;
}


.qualification-group .update_right:after{
      content: '\f19d ';
}
.qualification-group .update_left:before{
      content: '\f19d ';
      font-size: 17px;
}

.policy-data {
    background: #f9efff;
    padding: 40px;
    border-radius: 18px 12px 12px 18px;
    box-shadow: 0 0 12px #8320a24f;
    border: 1px solid #40126844;
    /* color: #481548; */
    /* border-left: 10px solid #7e44a9; */
}

.policy-data h1, .policy-data h2, .policy-data h3, .policy-data h4, .policy-data h5, .policy-data h6 {
    color: #7e44a9;
    font-weight: 500;
}
 .policy-data h3{
 font-size: 18px;
    margin: 25px 0 8px;
        }


.policy-data ul, .policy-data ol {
    margin-left: 20px;
}

.policy-data ul li, .policy-data ol li, .policy-data p {
    margin: 12px 0;
    /* color: #481548; */
}


.contact-box {
    background: #f9efff;
    width: 100%;
    height: auto;
    padding: 30px 18px;
    border-radius: 12px;
    text-align: center;
    padding-top: 50px;
    box-shadow: 1px 1px 10px 0px #40126863;
    border: 1px solid #40126863;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box span {
    background: #7e44a9;
    width: 65px;
    height: 65px;
    position: absolute;
    border-radius: 50%;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 65px;
}

.contact-box p,
.contact-box a {
    font-size: 16px;
    color: #7e44a9;
    text-align: center;
    margin: 0;
}

section.services-section.section-padding {
    background: url('../images-front/services-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

section.services-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: url('../images-front/services-bg.png'); */
    z-index: 0;
    /* background: #620162b5; */
    /* background: #7121b7e3; */
    background: #944ccaeb;
}

section.services-section .section-heading{
  position: relative;
}


section.testimonial-section .section-heading h2,
section.services-section .section-heading h2 {
    color: #ffffff;
}

section.testimonial-section .section-heading p,
section.services-section .section-heading p {
    color: #ebebeb;
}

/* footer:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: url('../images-front/dot-circle.png');
} */

.achivement-box h2 {
    font-size: 36px;
    color: #7e44a9;
    text-align: center;
    font-weight: 600;
    font-family: "Fraunces", serif;
    margin-bottom: 25px;
}

.achivement-box img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #f0e3fca6;
    padding: 25px;
    border-radius: 20px 35px 20px 25px;
    border: 1px solid #efe5f9;
    animation: imgBorderChange infinite 1.5s;
}

@keyframes imgBorderChange {

  0%, 100%{
    border-radius: 22px 32px 22px 25px;
  }

  50%{
    border-radius: 32px 22px 32px 22px;

  }
  
}

/* section.achivement-section {
    background:  url('../images-front/testimonial-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    background-attachment: fixed;
} */

/* section.achivement-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #8219d1bf;
    opacity: 1;
    top: 0;
    left: 0;
} */

.achivement-box {
    /* background: #fcf5ff; */
    background: #fcf5ff;
    padding: 30px;
    margin: 30px 0px;
    border-radius: 16px;
    /* border: 2px solid #7e44a9; */
    box-shadow: 3px 5px 13px #40404059;
    position: relative;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    height: calc(100% - 60px);
}

.achivement-box:before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: #632d9315;
    left: 10px;
    bottom: -140px;
    transition: all 0.5s ease-in-out;
    background: url('../images-front/achivement.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    mix-blend-mode: luminosity;
    opacity: 0.15;
}

.achivement-box.one:before{
    background: url('../images-front/achivement.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.25;
    mix-blend-mode: luminosity;
}

.achivement-box.two:before{
    background: url('../images-front/qualifications.png');
    background-size: contain;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    opacity: 0.075;
}

.achivement-box.three:before{
    background: url('../images-front/certification.png');
    background-size: contain;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
}

.achivement-box:hover{
    box-shadow: 3px 5px 18px #2525259d;
    transition: all 0.5s ease-in-out;
    transform: translateY(-10px);
}

.achivement-box:hover:before {
    transition: all 0.5s ease-in-out;
    bottom: 10px;
    left: 10px;
}

.achivement-box p {
    margin: 20px 6px 25px;
    text-align: center;
}

.about-us-svg {
    position: absolute;
    width: 350px;
    height: 300px;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}

.about-us-svg svg {
    fill: #7e44a9;
}

.about-section{
  position: relative;
  overflow: hidden;
}

.service-detail-img{
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  /* border: 1px solid #401268ab; */
  box-shadow: 0px 5px 12px #46464657;
  background: #fff;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.editor-data p, .editor-data ul li, .editor-data ol li {
    margin: 12px 0;
    line-height: 1.65;
}

.editor-data ol,
.editor-data ul {
    margin: 0;
    padding-left: 20px;
}

.editor-data h3 {
    font-size: 20px;
    color: #7e44a9;
    margin: 22px 0 8px;
}


.about-section:before{
  content: '';
  background: url('../images-front/bg_3.jpg');
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 500px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.125;
  animation: aboutBgImg infinite 6s;
  transition: all 0.5s ease-in-out;
}

@keyframes aboutBgImg {

  0%, 100%{
    transform: scale(1.2);
  }

  50%{
    transform: scale(1);

  }
  
}

section.home-banner:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 3px;
    width: 100%;
    height: 85%;
    background: url('../images-front/home-bg.png');
     background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.35;
    animation: bannerZoom infinite 8s;
    transition: all 0.5s ease-in-out;
}

@keyframes bannerZoom {

  0%, 100%{
    transform: scale(1);
  }

  50%{
    transform: scale(0.96);

  }
  
}


.service-page-tabs .nav-pills .nav-link.active, 
.service-page-tabs .nav-pills .show>.nav-link{
  background: #7e44a9;
  color: #fff;
    border: 1px solid #fff;
    box-shadow: -3px -2px 5px 0 #40126838, 2px 3px 5px 0 #40126838;

}

.service-page-tabs button.nav-link {
    width: 100%;
    border: 1px solid #ac92c0;
    padding: 18px 12px;
    position: relative;
    background: #f9efff;
    margin-bottom: 15px;
    border-radius: 12px !important;
    box-shadow: 2px 3px 5px 0 #40126838;
    outline: none !important;
}

.service-page-tabs .tab-pane {
    background: #f9efff;
    padding: 30px 40px;
    border-radius: 18px 12px 12px 18px;
    box-shadow: 0 0 12px #8320a24f;
    border: 1px solid #40126869;
    border-left: 4px solid #7e44a9;
}

h2.service-heading{
   font-size: 36px;
    color: #7e44a9;
    text-align: center;
    font-weight: 600;
    font-family: "Fraunces", serif;  
    margin-bottom: 30px;
}

.contact-new-box {
    position: relative;
    /* height: 100%; */
    width: 100%;
    /* right: 50px; */
    /* background: #7e44a9; */
    background: #b174e7;
    padding: 30px 40px;
    /* outline: 1px dashed #2b0a47;
    outline-offset: -10px; */
    /* z-index: 11; */
     background: url('../images-front/flower-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
}

.contact-new-box:before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 1;
    /* background: #b174e7ea;   */
    background: #b174e7d4; 
    z-index: 0;
    outline: 1px dashed #7e44a9;
    outline-offset: -10px;
    border-radius: 16px;

}

.contact-map {
    position: relative;
}

/* .contact-page{
    position: relative
}

.contact-page:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    background: url('../images-front/flower-bg.jpg');
    min-width: 450px;
    max-width: 450px;
    width: 80%;
    height: 70%;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transform: translateY(-50%);
    background-position: left;
} */


.contact-new-box h2 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-family: "Fraunces", serif;
    margin-bottom: 30px;
    position: relative;
}

.contact-info-group {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    position: relative;


}

.contact-info-group p,
.contact-info-group a {
    font-size: 18px;
    color: #fff;
    text-align: left;
    
}

span.contact-info {
    background: #fff;
    min-width: 32px;
    min-height: 32px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 16px;
    font-size: 20px;
    color: #b174e7;
}

.contact-info-group.contact-times {
    display: flex;
    flex-direction: column;
}

.contact-info-group.contact-times p {
    display: flex;
}

.contact-info-group.contact-times p:last-child{
  margin-bottom: 0;
}

.contact-info-group.contact-times p span {
    min-width: 128px;
    display: flex;
    justify-content: space-between;
    margin-right: 20px;
}

.contact-new-box hr {
    border: 1px dashed #8d47bf;
    position: relative;
}

h4.contact-page-heading{
    text-align: center;
    margin-bottom: 25px;
    font-family: "Fraunces", serif;
    font-size: 30px;
    color: #7e44a9;
}

.achivements-page,
.certification-page,
.qualification-page {
    position: relative;
}

.achivements-page:before,
.certification-page:before,
.qualification-page:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    background: url('../images-front/achivement-page-bg.jpg');
    min-width: 450px;
    width: 80%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    transform: translateY(-50%);
    background-position: right;
    mix-blend-mode: luminosity;
}

/* ========================== services =============== */

.services-box {
    width: 100%;
    /* height: 260px; */
    border: 1px solid #fff;
    background: #fff;
    border-radius: 20px;
    padding: 25px 25px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    padding-top: 60px;
    transition: all 0.5s ease-in-out;

}

.services-box h4 {
    font-size: 26px;
    color: #7e44a9;
    text-align: center;
    font-weight: 600;
    font-family: "Fraunces", serif;
    transition: all 0.5s ease-in-out;

}

.services-box a{
  display: inline-block;
  text-align: center;
  color: #7e44a9;
    transition: all 0.5s ease-in-out;

}
.services-box p {
  text-align: center;
    transition: all 0.5s ease-in-out;

}

span.services-icon {
    width: 90px;
    height: 90px;
    position: absolute;
    background: #fff;
    border-radius: 50%;
    top: -40px;
    color: #7e44a9;
    border: 10px solid #9454c9;
    font-size: 40px;
    left: 50%;
    text-align: center;
    line-height: 70px;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

span.services-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

span.services-icon:before {
    content: '';
    position: absolute;
    top: 29px;
    right: -29px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at bottom right, transparent 70%, #9454c9 71%);
}

span.services-icon:after {
    content: '';
    position: absolute;
    top: 29px;
    left: -29px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at left bottom, transparent 70%, #9454c9 31%);
}

.services-box:hover {
    background: #7e44a9;
    border: 1px solid transparent;
    box-shadow: 0px 4px 10px 0px #cccccc54;
    transition: all 0.5s ease-in-out;
}

.services-box:hover h4, .services-box:hover a {
    color: #fff;
    transition: all 0.5s ease-in-out;

}

.services-box:hover p {
    color: #eee;
    transition: all 0.5s ease-in-out;

}


section.home-banner {
    position: relative;
    overflow: hidden;
}

.banner-bg-img {
    /* background-color: #4B0082; */
    /* background-color: #9440dd; */
    /* background-color: #600b9e; */
    background-color: #ad6ddc;
    background-image: url('../images-front/banner-bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: 820px;
    width: 100%;
    z-index: 1;
    right: 0;
    mix-blend-mode: multiply;
}

.banner-area{
    margin: auto;
    /* max-width: 800px; */
    padding: 30px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 660px;
    padding-bottom: 100px;
}

.banner-img {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    margin: auto;
    width: 50%;
    height: 350px;
    box-shadow:  0px 0px 0 10px #eeeeee1f, 10px 10px 0 10px #eeeeee1f, 20px 20px 0 10px #eeeeee1f, 30px 30px 0 10px #eeeeee1f, -0px -0px 0 10px #eeeeee1f, -10px -10px 0 10px #eeeeee1f, -20px -20px 0 10px #eeeeee1f, -30px -30px 0 10px #eeeeee1f;
}

.banner-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.banner-caption h2 {
    color: #fff;
    text-align: left;
    font-weight: 600;
    font-family: "Fraunces", serif;
    font-size: 50px;
    margin: 0;
    margin-bottom: 20px;
}

.banner-caption p{
    font-size: 18px;
    color: #e9e9e9;

}

.banner-caption {
    position: relative;
    z-index: 1;
    /* text-align: center;
    margin: 25px auto 35px; */

    text-align: left;
    margin-right: 20px;
    width: 50%;
    padding-right: 40px;
}


/* ========== flip service card  ============== */

.services-flip-box {
  background-color: transparent;
  width: 100%;
  height: 230px;
    margin: 30px 0;
  perspective: 1000px;
}

.service-box-inner {
  transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    /* border: 1px solid #fff; */
    background: #fff;
    border-radius: 20px;
    /* padding: 25px 25px; */
    text-align: center;
    position: relative;
    transition: transform 0.8s;
    
}

.services-flip-box:hover .service-box-inner {
  transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.service-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-front {
    overflow: hidden;
    border-radius: 20px;
    transform: rotateY(180deg);
}

.service-card-back {
  padding: 25px 25px;
  padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.service-box-inner h4 {
    font-size: 26px;
    color: #7e44a9;
    text-align: center;
    font-weight: 600;
    font-family: "Fraunces", serif;
}

.service-box-inner a{
  display: inline-block;
  text-align: center;
  color: #7e44a9;

}
.service-box-inner p {
  text-align: center;
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff9c;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.service-img-overlay a {
    width: 50px;
    height: 50px;
    background: #7e44a9;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    line-height: 50px;
    padding: 0;
    font-size: 22px;
    margin-top: 30px;
    transition: all 0.35s ease-in-out;
}

.service-img-overlay a:hover {
    background: #b174e7;
    color: #fff;
    transition: all 0.35s ease-in-out;
}

.certificate-img {
    border: 2px solid #7e44a9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.cerfification-box{
    margin-bottom: 16px;
}

.cerfification-box h3 {
    font-size: 20px;
    text-align: center;
    margin: 8px 0;
    font-family: "Fraunces", serif;
    color: #7e44a9;
}


.cerfification-box h3 img {
    width: 50px;
    margin-right: 16px;
    margin-top: 8px;
}

.certificate-img a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    background: #4d237785;
    transition: all 0.5s ease-in-out;
    content: '\f00e ';
    font-family: 'FontAwesome';
    font-size: 36px;
    color: #e7e7e7;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -100px;
    left: 0;

}

.certificate-img a:hover:before {
    transition: all 0.5s ease-in-out;
    height: 100%;
    top: 0;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================== mobile menu hamburger CSS ========================= */
#nav-icon3{
  width: 50px;
  height: 45px;
  position: relative;
  margin: 20px 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}


#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 13px;
}

#nav-icon3 span:nth-child(4) {
  top: 26px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


.sergical-service-tab {
    background: #7e44a9;
    width: 100%;
    border-radius: 0px;   
    overflow: hidden;
    /* border: 1px solid #cf9bfc !important; */
}

.sergical-service-tab ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.sergical-service-tab button.nav-link {
    border: 0;
    width: 100%;
    background: transparent;
    color: #fff;
    border-right: 1px solid #fff;
    border-radius: 0;
    padding: 22px 18px;
    outline: none;
    /* font-size: 17px; */
}

.sergical-service-tab li:last-child button.nav-link{
    border-right: 0;
}

.sergical-service-tab li {
    width: 33.33%;
}

.sergical-service-tab button.nav-link.active {
    background: #f0d8ff;
    color: #7e44a9;
    font-weight: 600;
}


.card-header {
    padding: 0;
    border: 0;
}

.card-header button.btn.btn-link {
    padding: 1.25rem 1.25rem;
    display: block;
    width: 100%;
    text-align: left;
    color: #7e44a9;
    font-weight: 600;
    background: #faefff;
    text-decoration: none;
    border: 0;
}

.card.mb-3 {
    border: 1px solid #600b9e1c;
    box-shadow: 0px 2px 10px #ccccccba;
    border-radius: 10px 10px;
    overflow: hidden;
    background: #fcf5ff;
}

 .mobile-service-panel{
        display: none;
        position: relative;
    }

    .desktop-service-panel{
        display: block;
    }

    .mobile-service-panel select {
        margin-bottom: 30px;
        height: 65px;
        font-size: 18px;
        border: 1px solid #8a42c2 !important;
        background: #8a42c2 !important;
        color: #fff !important;
        box-shadow: none !important;
        border-radius: 16px;
        text-align: center;
        padding: 10px 20px;
        appearance: none;
        padding-right: 40px;
    }



.mobile-service-panel select option {
    background: #f2e1ff;
    color: #8a42c2;
    text-align: left;
    line-height: 3;
}

.mobile-service-panel:before {
    position: absolute;
    right: 14px;
    top: 20px;
    /* height: 100%; */
    content: '\f078 ';
    font-family: 'FontAwesome';
    display: flex;
    align-items: center;
    /* width: 35px; */
    color: #fff;
    font-size: 16px;
}

.contact-f2f-box {
    background: #f9efff;
    box-shadow: 2px 3px 11px 0 #40126830;
    padding: 10px 30px 15px;
    border-radius: 12px;
    border: 1px solid #dfd1e9;
    margin-bottom: 26px;
}

.contact-f2f-box {
    display: flex;
    align-items: center;
}

.contact-f2f-box img {
    min-width: 300px;
    min-height: 300px;
    max-width: 300px;
    max-height: 300px;
    margin-right: 40px;
    mix-blend-mode: multiply;
    object-fit: contain;
}

/* ====================== Responsive CSS ========================= */

/* @media (min-width: 1300px){
    .container{
        max-width: 1240px;
    }

   .about-section .about-info.editor-data {
        max-width: 650px;
    }
    
} */

@media (min-width: 1400px){
    .container{
        max-width: 1340px;
    }

   .about-section .about-info.editor-data {
        max-width: 600px;
    }
    .banner-img{
            height: 420px;
    }
}

@media (min-width: 1600px){
    .container{
        max-width: 1440px;
    }

   .about-section .about-info.editor-data {
        max-width: 600px;
    }
}

@media (max-width:1199.98px) {
.header-menu ul li a{
    margin: 0 5px;
}

.service-box-inner h4{
    font-size: 20px;
}

.achivement-box{
    padding: 30px 20px;
}

h2.service-heading,
.achivement-box h2,
.section-heading h2{
    font-size: 32px;
}

.section-heading p{
    font-size: 16px;
}
.achivement-box p{
    margin: 20px 0px 25px;
}

.banner-caption h2{
    font-size: 44px;
}
}


@media (max-width:991.98px) {
    header.fixed-nav{
        z-index: 99;
    }

    #nav-icon3{
        display: block;
        height: 30px;
        margin: 13px 0;
    }

    .header-menu {
        position: fixed;
        width: 320px;
        transition: all 0.5s ease-in-out;
        left: -360px;
        height: 100vh;
        background: #b055ff;
        overflow: auto;
        top: 0;
        z-index: 999;
        box-shadow: 4px 0px 16px 0px #0c0c0c73;
    }

    .header-menu:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url('../images-front/breadcrumb-bg.jpg') no-repeat;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.175;
    }

    .header-menu ul li a:before{
        display: none;
    }

    .header-menu ul li a:hover,
    .header-menu ul li a.active {
        font-weight: bold;
        background: #40126896;
    }

    .mobile-menu-active {
        left: 0;
        transition: all 0.5s ease-in-out;
    }

    .header-menu ul {
        flex-direction: column;
    }

    .header-menu ul li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .header-menu ul li a {
        color: #fff;
        padding: 16px 20px;
        margin: 0 0 2px;
        font-size: 16px;
    }

    ul.submenu-dropdown:before{
        display: none;
    }

    li.submenu a {
        justify-content: center;
    }

    ul.submenu-dropdown {
        position: relative;
        box-shadow: none;
    }

    .body-overlay{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #000;
        z-index: 11;
        opacity: 0.75;
        display: none;
        transition: all 0.5s ease-in-out;
        top: 0;
        left: 0;
    }

    .body-overlay.active{
        display: block;
        transition: all 0.5s ease-in-out;
    }

    body.body-hidden {
        overflow: hidden;
        height: 100vh;
    }

    .logo {
    width: 110px;
    height: 110px;
    top: -10px;
}

.logo img {
    width: 100%;
}

header.fixed-nav {
    padding: 12px 0;
}

    .banner-area {
        flex-wrap: wrap;
        padding: 0;
    }

    .banner-caption {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-bottom: 75px;
        margin-top: 50px;
    }

    .banner-img {
        width: 80%;
        height: auto;
    }

    .about-section .row {
        flex-direction: column-reverse;
        padding: 0 !important;
    }

    .about-img {
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .footer-info, .footer-links {
        margin-bottom: 50px;
    }

    footer .row .col-lg-3.col-md-6:nth-child(2) {
        order:3
    }

     footer .row .col-lg-3.col-md-6:nth-child(3) {
        order:4
    }

     footer .row .col-lg-3.col-md-6:nth-child(4) {
        order:2
    }

    .update_left {
        width: 50%;
        margin-right: 52px;
        margin-left: 48px;
    }

    .contact-new-box{
        margin-top: 50px;
    }

    .sergical-service-tab button.nav-link {
        min-height: 92px;
    }

    .cerfification-box h3{
        font-size: 16px;
    }

    .contact-f2f-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-f2f-box img {
    margin-right: 0;
    margin-bottom: 10px;
}
    
.achivement-box{
    margin: 15px 0;
}
}


@media (max-width:767.98px) {
    .update_group:nth-child(odd) {
        flex-direction: unset;
    }

.update_left {
    width: 130px;
    margin: 0;
    text-align: right;
    padding-right: 35px;
}

.update_group:nth-child(odd) .update_left {
    border: 0;
    margin: 0;
    padding: 0;
    border-right: 2px dashed #7e44a9;
    padding-top: 18px;
    text-align: right;
    padding-right: 35px;
}

.update_group:nth-child(odd) .update_left::before {
    left: unset;
    right: -13px;
}

.update_right {
    margin-left: 45px !important;
    width: calc(100% - 180px);
}

.update_group:nth-child(odd) .update_right:after {
    right: 10px;
    left: unset;
}

.update_right:before,
.update_group:nth-child(odd) .update_right:before {
    left: -10px;
    /* background: #ccc; */
    transform: rotate(45deg);
    top: 16px;
    border: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #9680ae;
}

/* .contact-new-box {
    position: unset;
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: unset;
    margin-bottom: 0;
} */

/* .contact-map iframe {
    height: 360px;
} */

    .banner-caption h2 {
        font-size: 40px;
    }

    .banner-caption p{
        font-size: 18px;
    }

    .section-heading p{
        font-size: 15px;
    }

    .editor-data h3 {
        font-size: 18px;
        margin: 20px 0 8px;
    }

    h4.contact-page-heading{
        font-size: 25px;
    }

    .banner-caption{
        margin-bottom: 0;
        margin-top: 20px;
    }
    .page-breadcrumb h6{
        font-size: 36px;
    }

    h2.service-heading{
        font-size: 26px;
    }

    .sergical-service-tab button.nav-link {
        min-height: 103px;
        padding: 15px;
    }

    .cerfification-box {
        margin-bottom: 35px;
    }

    .col-md-4.col-sm-6:last-child .cerfification-box{
        margin-bottom: 0px;

    }

    .service-page-tabs .tab-pane{
        padding: 20px 20px;
    }

    footer .row .col-lg-3.col-md-6:nth-child(3) .footer-links{
        margin-bottom: 0px;
    }

    .mobile-service-panel{
        display: block;
    }

    .desktop-service-panel{
        display: none;
    }

.banner-img {
     box-shadow:  0px 0px 0 6px #eeeeee1f, 
                  8px 8px 0 6px #eeeeee1f, 
                  -0px -0px 0 6px #eeeeee1f, 
                  -8px -8px 0 6px #eeeeee1f
}
}


@media (max-width:575.98px) {
.cerfification-box{
        max-width: 400px;
        margin: auto;
        margin-bottom: 35px;
}

h2.service-heading{
    font-size: 20px;
}

.policy-data{
    padding: 20px;
}
}

@media (max-width:499.98px) {
    .footer-bottom .d-flex {
    flex-wrap: wrap;
    justify-content: center !important;
    width: 100%;
    padding-bottom: 16px;
}

.footer-bottom p{
    width: 100%;
}
.update_right {
    padding:12px;
     margin-left: 38px !important;
    width: calc(100% - 150px);
}

.update_left{
    font-size: 15px;
    width: 122px;
   
}
p, ul li, ol li{
    font-size: 15px;
}
.banner-img {
        width: 100%;
        margin-top: 5px;
}

.banner-area{
    min-height: 625px;
}

.page-breadcrumb{
    padding: 20px 16px;
}
    .page-breadcrumb h6 {
        font-size: 28px;
    }

        .sergical-service-tab button.nav-link {
        min-height: 85px;
        padding: 10px;
        font-size: 14px;
    }

    .sergical-service-tab .container {
    padding: 0 0;
}

    .cerfification-box h3 {
        font-size: 18px;
    }

    .service-detail-img {
    width: 100%;
    height: 225px;
    }
}



/* ======================== cookie css ================= */

  .cookie-d-flex {
    display: flex;
    align-items: center;
    max-width:1200px;
    margin: auto;
}

.cookie-d-flex span.mdi.mdi-cookie {
    font-size: 75px;
    margin-right: 15px;
    color:#070949;
}

.cookie-d-flex span.myCookie-text {
    width: 75%;
    margin-right: 30px;
}

.cookie-d-flex span strong {
    font-size: 1.35rem;
    margin-bottom: 6px;
    display: inline-block;
    color: var(--theme-logo-color);;
}

          
.myCookie-grey {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.myCookie {
    width: 100%;
    font-size: 14px;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    color: #fdfaff;
    padding: 0px 60px 0px 20px;
    font-family: "Source Sans Pro", arial, helvetica, sans-serif;
    z-index: 10000;
    background: rgb(248 249 249); 
    font-size: 14px; 
    color: rgb(51, 51, 51); 
    bottom: 0px; 
    right: 0px; 
}
.myCookie a.myCookie-button {
    text-decoration: none;
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 6px 10px;
    font-weight: 700;
    border-radius: 4px;
}
.myCookie-more-button {
    display: inline-block;
    text-decoration: underline;
}
.myCookie-more-button:hover {
    text-decoration: none;
}
.myCookie-close {
    transition: all 0.5s;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
}
.myCookie-close:hover {
    transform: rotate(90deg);
}
.myCookie-close svg {
    max-width: 100%;
    max-height: 100%;
}

.myCookie-grey .myCookie-close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
}

a.button.buttonCookie {
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    padding: 10px 22px;
    margin: 0 5px;
    border: 1px solid #eee;
    box-shadow: 0px 2px 10px #333333b8;
    border-radius: 8px;
}



a.button.buttonCookie.btnNo {
    background: #bc7eea !important;
    color: #fff !important;
}

a.button.buttonCookie.btnYes{
    background: #8732d1 !important;
    color: #ffffff;
}

@media (max-width: 768px) {
    .myCookie {
    padding: 10px 60px 10px 20px;
}
}
@media (max-width: 640px) {
.cookie-d-flex{
    flex-wrap:wrap
}

.myCookie {
        padding: 10px 20px 10px 20px;
    }

    /* .buttonCookie{
        margin-left:90px;
    } */

}

@media (max-width: 580px) {
.cookie-d-flex span.mdi.mdi-cookie{
    font-size:60px
}

/* .cookie-d-flex{
    justify-content: center;
} */

/* .buttonCookie {
        margin-left: 75px;
    } */

    .cookie-d-flex span.myCookie-text {
    width: calc(100%);
    margin-right: 0;
    margin-bottom: 15px;
}

.contact-f2f-box img {
    min-width: 250px;
    min-height: 250px;
    max-width: 250px;
    max-height: 250px;
}

    
}