 /***
====================================================================
	Reset
====================================================================
***/
 * {
   margin: 0px;
   padding: 0px;
   border: none;
   outline: none;
   font-size: 100%;
   line-height: inherit;
 }

 :root {
   --color-default: #292929;
   --color-primary: #f17a27;
   --color-secondary: #292929;
   --color-teritary: #8fb94e;
 }

 .container {
   position: relative;
 }

 .mobile-view {
   display: none;
 }

 @font-face {
   font-family: "headfont";
   src: url(../fonts/main-font.ttf);
 }

 .mobile-view {
   display: none;
 }

 .fixed-header .header-one {
   position: fixed;
   -webkit-animation-name: slideInDown;
   -webkit-animation-duration: 100ms;
   -webkit-animation-timing-function: ease;
   -moz-animation-name: slideInDown;
   -moz-animation-duration: 100ms;
   -moz-animation-timing-function: ease;
   -ms-animation-name: slideInDown;
   -ms-animation-duration: 100ms;
   -ms-animation-timing-function: ease;
   animation-name: slideInDown;
   animation-duration: 100ms;
   animation-timing-function: ease;
   background-color: #fff;
   box-shadow: 0px 0px 10px;
   height: 138px;
   width: 100%;
 }

 .fixed-header .lower-box .logo {
   width: 118px;
   top: 8px;
 }

 .fixed-header .main-menu {
   margin: 73px 0 0;
 }

 .fixed-header .top-left {
   top: 18px;
 }

 .fixed-header .top-phn a {
   color: var(--color-primary);
   font-weight: 400;
   border: 1px solid;
 }

 .fixed-header .top-phn {
   top: 38px;
 }

 .fixed-header .header-one::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 3px;
   margin: auto;
   background: linear-gradient(to left, var(--color-primary), var(--color-teritary));
   z-index: 2;
   top: 0px;
   left: 0px;
 }

 /*** 
====================================================================
	Global Settings
====================================================================
 ***/
 body {
   font-size: 16px;
   color: var(--color-default);
   line-height: 1.6em;
   -webkit-font-smoothing: antialiased;
   -moz-font-smoothing: antialiased;
   font-family: "Mulish", serif;
 }

 a {
   text-decoration: none;
   cursor: pointer;
   color: var(--color-primary);
 }

 a:hover,
 a:focus,
 a:visited {
   text-decoration: none;
   outline: none;
   color: var(--color-primary);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   position: relative;
   font-weight: 600;
   margin: 0px;
   background: none;
   line-height: 1.2em;
 }

 img {
   max-width: 100%;
   height: auto;
 }

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

 ol,
 li {
   margin: 0;
   padding: 0;
 }

 .main-menu .navigation>li .active i {
   color: #fff;
 }

 .main-menu .navigation>li .active {
   color: #fff;
   background-color: var(--color-primary);
 }

 .main-menu .navigation>li .active::before {
   content: "";
   position: absolute;
   height: 2px;
   width: 100%;
   background-color: var(--color-primary);
   bottom: -3px;
   left: 0;
 }

 .main-menu .navigation>li .active:hover {
   background: var(--color-primary);
   color: #fff;
 }

 .auto-container {
   position: static;
   max-width: 1200px;
   padding: 0px 15px;
   margin: 0 auto;
 }

 .page-wrapper {
   margin: 0 auto;
   width: 100%;
   min-width: 320px;
   overflow: hidden;
   position: relative;
 }

 .top-wrap {
   position: relative;
   height: 100vh;
 }

 .top-wrap::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 3px;
   margin: auto;
   background: linear-gradient(to left, var(--color-primary), var(--color-teritary));
   z-index: 2;
   top: 0px;
   left: 0px;
 }

 .header-main {
   position: absolute;
   width: 100%;
   z-index: 5;
 }

 .header-one {
   position: relative;
 }

 .header-one .container {
   position: relative;
   max-width: 1200px;
 }

 .header-one .lower-box {
   position: relative;
   height: 100%;
 }

 .lower-box .logo {
   top: 6px;
   position: absolute;
   display: inline-block;
   z-index: 999;
   width: 143px;
 }

 .lower-box .nav-outer {
   position: relative;
   display: inline-block;
   text-align: right;
   margin-left: 0;
   width: 100%;
   padding: 0;
   margin-top: 0;
 }

 .nav-outer .mobile-nav-toggler {
   position: relative;
   display: none;
   float: right;
   cursor: pointer;
   padding: 25px 0;
 }

 .nav-outer .mobile-nav-toggler .inner {
   position: relative;
   display: block;
   padding: 3px 5px;
 }

 .main-menu {
   position: relative;
   display: inline-block;
   text-align: center;
   margin: 78px 0 0;
   top: 0;
 }

 .main-menu .navbar-collapse {
   padding: 0px;
   display: block !important;
 }

 .main-menu .navigation {
   position: relative;
   display: block;
   padding: 3px 11px;
 }

 .main-menu .navigation>li {
   position: relative;
   display: inline-table;
 }

 .main-menu .navigation>li>a:hover {
   color: var(--color-primary);
 }

 .main-menu .navigation>li>a {
   position: relative;
   display: block;
   font-size: 19px;
   line-height: 30px;
   border-right: 0px;
   padding: 2px 10px;
   opacity: 1;
   color: var(--color-default);
   border-radius: 5px;
 }

 .main-menu .navigation>li>a i {
   font-size: 14px;
   color: var(--color-primary);
 }

 /*** 
========================================
    Mobile Menu
========================================
***/
 .nav-outer .mobile-nav-toggler {
   position: relative;
   display: none;
   float: right;
   cursor: pointer;
   padding: 25px 0;
 }

 .nav-outer .mobile-nav-toggler .inner {
   position: relative;
   display: block;
   padding: 3px 5px;
 }

 .mobile-menu {
   position: fixed;
   top: 0;
   right: 0;
   width: 300px;
   max-width: 100%;
   height: 100%;
   padding-right: 30px;
   opacity: 0;
   visibility: hidden;
   z-index: 999999;
 }

 .mobile-menu .menu-backdrop {
   position: fixed;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background-color: #393939;
   -webkit-transform: translateX(101%);
   -ms-transform: translateX(101%);
   transform: translateX(101%);
   transition: all 900ms ease;
   -moz-transition: all 900ms ease;
   -webkit-transition: all 900ms ease;
   -ms-transition: all 900ms ease;
   -o-transition: all 900ms ease;
   z-index: 1;
 }

 .mobile-menu-visible .mobile-menu .menu-backdrop {
   opacity: 0.7;
   visibility: visible;
   -webkit-transition: all 0.7s ease;
   -moz-transition: all 0.7s ease;
   -ms-transition: all 0.7s ease;
   -o-transition: all 0.7s ease;
   transition: all 0.7s ease;
   -webkit-transform: translateX(0%);
   -ms-transform: translateX(0%);
   transform: translateX(0%);
 }

 .mobile-menu .mCSB_inside>.mCSB_container {
   margin-right: 5px;
 }

 .mobile-menu .navbar-collapse {
   display: block !important;
 }

 .mobile-menu .nav-logo {
   position: relative;
   padding: 30px 25px;
   text-align: left;
 }

 .mobile-menu .nav-logo a {
   position: relative;
   display: inline-block;
 }

 .mobile-menu-visible {
   overflow: hidden;
 }

 .mobile-menu-visible .mobile-menu {
   opacity: 1;
   visibility: visible;
 }

 .mobile-menu .menu-box {
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   max-height: 100%;
   overflow-y: auto;
   background: var(--color-default);
   padding: 0px 0px;
   z-index: 5;
   opacity: 0;
   visibility: hidden;
   border-radius: 0px;
   -webkit-transform: translateX(101%);
   -ms-transform: translateX(101%);
   transform: translateX(101%);
 }

 .mobile-menu-visible .mobile-menu .menu-box {
   opacity: 1;
   visibility: visible;
   -webkit-transition: all 0.7s ease;
   -moz-transition: all 0.7s ease;
   -ms-transition: all 0.7s ease;
   -o-transition: all 0.7s ease;
   transition: all 0.7s ease;
   -webkit-transform: translateX(0%);
   -ms-transform: translateX(0%);
   transform: translateX(0%);
 }

 .mobile-menu .close-btn {
   position: absolute;
   top: 10px;
   right: 10px;
   color: #ffffff;
   font-size: 20px;
   line-height: 30px;
   width: 24px;
   text-align: center;
   cursor: pointer;
   z-index: 10;
   -webkit-transition: all 0.9s ease;
   -moz-transition: all 0.9s ease;
   -ms-transition: all 0.9s ease;
   -o-transition: all 0.9s ease;
   transition: all 0.9s ease;
 }

 .mobile-menu-visible .mobile-menu .close-btn {
   -webkit-transform: rotate(360deg);
   -ms-transform: rotate(360deg);
   transform: rotate(360deg);
 }

 .mobile-menu .close-btn:hover {
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
 }

 .mobile-menu .navigation {
   position: relative;
   display: block;
   width: 100%;
   float: none;
 }

 .mobile-menu .navigation li {
   position: relative;
   display: block;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .mobile-menu .navigation li>ul>li {
   border-top: 1px solid rgb(0 0 0 / 10%);
 }

 .mobile-menu .navigation:last-child {
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .mobile-menu .navigation li>ul>li:first-child {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .mobile-menu .navigation li>a {
   position: relative;
   display: block;
   padding: 10px 25px;
   color: #ffffff;
   font-size: 15px;
   line-height: 24px;
   font-weight: 600;
   text-transform: uppercase;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .navigation li>a:before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   height: 0;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
 }

 .mobile-menu .navigation li.current>a:before {
   height: 100%;
 }

 .mobile-menu .navigation li ul li>a {
   font-size: 15px;
   font-weight: 400;
   margin-left: 20px;
   text-transform: capitalize;
   position: relative;
   color: var(--color-default);
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn {
   position: absolute;
   top: 6px;
   right: 6px;
   width: 32px;
   height: 32px;
   text-align: center;
   color: #ffffff;
   font-size: 16px;
   line-height: 32px;
   background: var(--color-primary);
   cursor: pointer;
   border-radius: 2px;
   -webkit-transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
   transition: all 500ms ease;
   z-index: 5;
 }

 .mobile-menu .navigation li.dropdown .dropdown-btn.open {
   -webkit-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
   transform: rotate(90deg);
 }

 .mobile-menu .navigation li>ul,
 .mobile-menu .navigation li>ul>li>ul {
   display: none;
   background: #fff;
 }

 .main-menu .navigation>li>ul.cstmwidth {
   width: 105px;
 }

 .main-menu .navigation>li>ul.cstmwidth1 {
   width: 235px;
 }

 .main-menu .navigation>li>ul>li>a:hover {
   padding-left: 30px;
 }

 .main-menu .navigation>li>ul {
   position: absolute;
   top: 100%;
   visibility: hidden;
   left: 0;
   width: 168px;
   opacity: 0;
   z-index: 100;
   background-color: var(--color-secondary);
   box-shadow: 0px 0px 5px #a5a5a5;
 }

 .main-menu .navigation>li>ul>li>ul {
   position: absolute;
   top: 0%;
   visibility: hidden;
   left: 100%;
   width: 300px;
   opacity: 0;
   z-index: 100;
   background-color: var(--color-secondary);
   box-shadow: 0px 0px 5px #a5a5a5;
 }

 .main-menu .navigation>li.dropdown:hover>ul {
   opacity: 1;
   visibility: visible;
   -moz-transform: translateY(0);
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
   transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
 }

 .main-menu .navigation>li>ul>li.dropdown:hover>ul {
   opacity: 1;
   visibility: visible;
   -moz-transform: translateY(0);
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   -o-transform: translateY(0);
   transform: translateY(0);
   transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
 }

 .main-menu .navigation>li>ul>li {
   position: relative;
   width: 100%;
   border-bottom: 1px solid #ffffff57;
 }

 .main-menu .navigation>li>ul>li>ul>li {
   position: relative;
   width: 100%;
   border-bottom: 1px solid #ffffff57;
 }

 .main-menu .navigation>li>ul>li:hover>a {
   background: var(--color-primary);
   color: #fff;
 }

 .main-menu .navigation>li>ul>li>ul>li>a:hover {
   background: var(--color-primary);
   color: #fff;
 }

 .main-menu .navigation>li>ul>li>a {
   position: relative;
   display: block;
   padding: 5px 20px;
   line-height: 24px;
   font-size: 15px;
   font-weight: 400;
   text-transform: capitalize;
   color: #fff;
   text-align: left;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li>ul>li>a {
   position: relative;
   display: block;
   padding: 5px 20px;
   line-height: 24px;
   font-size: 15px;
   font-weight: 400;
   text-transform: capitalize;
   color: #fff;
   text-align: left;
   transition: all 500ms ease;
   -moz-transition: all 500ms ease;
   -webkit-transition: all 500ms ease;
   -ms-transition: all 500ms ease;
   -o-transition: all 500ms ease;
 }

 .main-menu .navigation>li>ul>li:last-child {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>ul>li:last-child {
   border-bottom: none;
 }

 .main-menu .navigation>li>ul>li>a i {
   position: absolute;
   right: 7px;
   top: 0px;
   bottom: 0px;
   margin: auto;
   height: fit-content;
 }

 /*
* 4. banner style
*/
 .banner-wrapper {
   position: relative;
 }

 .banner-one__slide {
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   height: 100vh;
 }

 .slide-one {
   background-image: url(../gallery/banners/banner1.png);
 }

 .slide-two {
   background-image: url(../gallery/banners/banner2.png);
 }

 .slide-three {
   background-image: url(../gallery/banners/banner3.png);
 }

 /***
====================================================================
	Scroll To Top style
====================================================================
***/
 .scroll-to-top {
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 48px;
   height: 48px;
   color: #ffffff;
   font-size: 20px;
   line-height: 51px;
   text-align: center;
   z-index: 9999;
   cursor: pointer;
   background: linear-gradient(to right, var(--color-primary), var(--color-primary));
   display: none;
   border-radius: 50%;
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
 }

 .scroll-to-top:hover {
   background: linear-gradient(to right, var(--color-secondary), var(--color-secondary));
 }

 .fr_appnts {
   position: absolute;
   right: 281px;
   z-index: 99;
   top: 21px;
   font-size: 15px;
   background: #ffd9e1;
   padding: 4px 14px;
   color: #0a0a0a;
 }

 .fr_appnts i {
   position: relative;
   display: inline-block;
   margin-right: 5px;
   background: #141414;
   color: #ffffff;
   font-size: 15px;
   line-height: 31px;
   width: 32px;
   height: 32px;
   text-align: center;
   border-radius: 50%;
 }

 .fr_appnts a {
   color: #0a0a0a;
 }

 .logins_section {
   position: absolute;
   right: 34px;
   z-index: 99;
   display: inline-block;
   top: 21px;
 }

 .logins_section span {
   display: inline-block;
   color: #fff;
   padding: 7px 12px;
   /* background: #131313; */
   background: var(--color-primary);
   cursor: pointer;
   width: 100%;
   font-size: 16px;
   border-radius: 30px;
 }

 .logins_section i {
   width: 25px;
   height: 25px;
   background: #fff;
   color: var(--color-primary);
   text-align: center;
   line-height: 25px;
   border-radius: 50%;
   box-shadow: 0px 0px 0px 3px #ccc;
   margin-right: 4px;
 }

 .logins_section a:nth-child(2) i {
   background: #63b32c;
 }

 .main-btn {
   display: inline-block;
   padding: 5px 17px;
   font-size: 16px;
   font-weight: 500;
   color: #ffffff !important;
   background: var(--color-secondary);
   line-height: 27px;
   text-transform: capitalize;
   border-radius: 28px;
   transition: all 0.3s ease-out 0s;
 }

 .main-btn:hover,
 .main-btn:focus {
   background: var(--color-primary);
   color: #fff;
 }

 .social-icons-block ul li {
   display: inline-block;
 }

 .social-icons-block ul li a {
   box-shadow: 0px 0px 4px #0000004f;
   width: 31px;
   height: 28px;
   text-align: center;
   line-height: 27px;
   margin-right: 8px;
   font-size: 15px;
   background: #ffe9d1;
 }

 .social-icons-block {
   position: absolute;
   right: 25px;
   top: 17px;
   z-index: 1;
 }

 .top-border {
   position: relative;
   width: 60%;
   height: 1px;
   background: var(--color-secondary);
   margin: auto;
   border-radius: 50px;
   z-index: -1;
 }

 .top-border::after {
   content: " ";
   position: absolute;
   width: 10px;
   height: 10px;
   background: var(--color-primary);
   border-radius: 50%;
   right: 0px;
   top: 0px;
   bottom: 0px;
   margin: auto;
 }

 .sec-head h3 {
   font-weight: 600;
   font-size: 22px;
   display: inline-block;

   padding: 2px 14px;
 }

 .serv-section .sec-head h3 {
   color: #fff;
 }

 .sec-head h2 {
   font-size: 45px;

   font-weight: 500;
   color: var(--color-secondary);

   margin: 9px 0px;
   line-height: 33px;
   margin-bottom: 11px;
 }

 .sec-head p {
   padding: 0 120px;
   margin-bottom: 0px;
 }

 .serv-section .sec-head h2,
 .serv-section .sec-head p {
   color: #fff;
 }

 .why-section {
   position: relative;

   margin-bottom: 45px;
   padding: 45px 0;
 }

 .why-section .why-blk {
   position: relative;
   height: 255px;
   width: auto;
   margin: 12px;
 }

 .why-blk .why-txt-name {
   text-align: center;
   position: relative;
 }

 .why-txt-name h2 {
   font-size: 20px;

   color: var(--color-primary);
   text-transform: uppercase;
   margin-bottom: 14px;
 }

 .why-blk .why-txt-p {
   position: relative;
 }

 .why-txt-p p {
   position: absolute;
   font-size: 15px;
   padding: 10px 25px;
   margin-bottom: 0px;
   line-height: 21px;
   top: 67px;
 }

 .why-icon {
   height: 50px;
   width: 50px;
   padding: 5px;
   position: absolute;
   top: 25px;
   right: 0;
   background: linear-gradient(to left, #29292900, #d9e6c2);
   border-radius: 50%;

   left: 0;
   margin: auto;
 }

 .why-shape {
   position: relative;
   z-index: -1;
 }

 .why-main-blk {
   display: flex;
   justify-content: center;
 }

 .doc-section {
   position: relative;
   min-height: 50vh;
   margin-bottom: 75px;
 }

 .doc-section .doc-pic {
   border: 8px solid #e8e8e8;
 }

 .doc-shape {
   position: absolute;
   left: -36px;
   z-index: -1;
   top: -34px;
 }

 .doc-section .doc-about-blk {
   position: relative;
 }

 .doc-about-blk h2 {
   text-transform: uppercase;
   font-size: 42px;
 }

 .abt-matter p {
   padding-top: 10px;
   line-height: 27px;
 }

 .doc-section .doc-shape2 {
   position: absolute;
   right: -25%;
   z-index: -1;
   opacity: 0.2;
   transform: rotate(45deg);
 }

 .doc-section .doc-shape3 {
   position: relative;
   text-align: right;
   margin-top: 17px;
 }

 .exp-blk .exp-txt {
   position: relative;
   padding: 11px;
   padding-bottom: 25px;
 }

 .exp-blk .exp-txt h2 {
   font-family: "Cinzel", serif;
   font-size: 68px;
   line-height: 55px;
   color: var(--color-primary);
   margin-bottom: 4px;
 }

 .exp-txt h3 {
   color: var(--color-default);
   font-size: 18px;
   font-weight: 400;
 }

 .exp-blk .col-md-4:nth-child(1) {
   border-right: 1px dashed var(--color-primary);
 }

 .exp-blk .col-md-4:nth-child(2) {
   border-right: 1px dashed var(--color-primary);
 }

 .call-btn {
   display: flex;
   align-items: center;

   margin-top: 18px;
   justify-content: center;
 }

 .call-btn img {
   width: 75px;
   height: 75px;

   position: relative;
 }

 .call-btn a {
   text-decoration: none;
   color: var(--color-default);
   font-size: 28px;
   font-weight: 500;
 }

 .call-btn a:hover {
   color: var(--color-primary);
   /* Change color on hover */
 }

 .sec-head .title-shape {
   width: 169px;
   text-align: center;
   position: relative;
   left: 0;
   right: 0;
   margin: auto;
 }

 .serv-section {
   position: relative;
   margin-bottom: 90px;

   padding: 75px 0px 125px;
   border-radius: 0 0 50% 50%;
   overflow: hidden;
 }

 .serv-section::before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/serv-bg.jpg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   top: 0;
   left: 0;
   z-index: -1;
   opacity: 0.09;
 }

 .serv-section::after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background: linear-gradient(to left, var(--color-default), #c95300, var(--color-default));
   top: 0;
   left: 0;
   z-index: -2;
 }

 .one,
 .two {
   margin-top: 45px;
 }

 .l-one {
   margin-top: 200px;
   left: 45px;
 }

 .r-one {
   right: 45px;
 }

 .serv-row .serv-img {
   position: relative;
   height: 440px;
   width: 540px;
 }

 .serv-row .col-md-4:nth-child(2) .serv-blk {
   margin-top: -30px;
 }

 .serv-img-blk {
   position: relative;

   z-index: -1;
 }

 .serv-img-inner {
   height: 250px;
   width: 250px;
   border-radius: 50%;
   overflow: hidden;
   border: 5px solid #fff;
   background-color: var(--color-primary);
 }

 .one-row {
   position: absolute;
   top: 0;

   height: 100%;
   width: 100%;
   left: 39px;
   top: -27px;
 }

 .ser-img-txt h2 {
   color: var(--color-primary);
   font-weight: 700;
   text-transform: uppercase;
   font-size: 24px;
 }

 .two-row {
   position: absolute;
   height: 100%;
   width: 100%;
   right: 43px;
   top: 27px;
 }

 .serv-img-inner:before {
   content: "";
   background: #fff;
   position: absolute;
   height: 250px;
   width: 250px;
   opacity: 0;
   transform: rotate3d(1, -1, 0, 100deg);
   transition: all 0.4s ease-in-out;
   border-radius: 50%;
   top: 0;
   left: 15px;
 }

 .serv-img:hover .serv-img-inner:before {
   opacity: 0.9;
   transform: rotate3d(0, 0, 0, 0deg);
 }

 .serv-img-inner img {
   width: 100%;
   height: auto;
   transform: translate3d(0, 0, 0) scale(1);
   transition: all 0.5s ease 0s;
 }

 .serv-img:hover .serv-img-inner img {
   opacity: 0.3;
   transform: translate3d(-12px, 0, 0) scale(1.1) rotate(3deg);
 }

 .serv-icon {
   color: #ff416c;
   width: 100%;

   opacity: 0;
   transform: translateX(-50%) translateY(-50%);
   position: absolute;
   z-index: 1;
   transition: all 0.4s ease-in-out;
   margin: auto;
   top: 50%;
   left: 24px;
   right: 0;
   height: 25px;
   width: 25px;
 }

 .serv-icon .fa {
   font-size: 35px;
 }

 .serv-img:hover .serv-icon {
   opacity: 1;
   transform: translateX(-50%) translateY(-50%);
 }

 .serv-scroll .owl-dots {
   position: relative;
   left: 0;
   top: -24px;
   width: 100%;
   text-align: center;
 }

 .serv-scroll .owl-dot {
   position: relative;
   display: inline-block;
   width: 10px;
   height: 10px;
   transform: rotate(45deg);
   opacity: 1;
   margin: -13px 7px;
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
   background: #fff;
 }

 .serv-scroll .owl-dot:hover,
 .serv-scroll .owl-dot.active {
   opacity: 1;
   background: var(--color-default);
 }

 .ad-section {
   position: relative;

   margin-bottom: 45px;
 }

 .ad-section .test-shape {
   position: relative;
   border-radius: 25px;
   overflow: hidden;
   border: 2px solid #e8c5cc;
 }

 .ad-section .test-main-blk {
   position: relative;
 }

 .test-main-blk .testimonial-scroll {
   position: absolute;
   top: 0;
   height: 100%;
   width: 100%;
 }

 .test-main-blk .test-txt {
   position: absolute;
   top: 0;

   padding: 42px;
 }

 .test-txt P {
   margin-bottom: 0px;
 }

 .test-txt h2 {
   text-transform: uppercase;
   font-size: 25px;
   font-weight: 700;
   margin-top: 10px;
 }

 .t-left {
   margin-top: 0px;
 }

 .tips-section {
   position: relative;

   margin-bottom: 75px;
 }

 .tips-section .tips-head {
   position: relative;
 }

 .tips-head h2 span {
   color: var(--color-primary);
   text-transform: uppercase;
   font-weight: 700;
 }

 .tips-img {
   margin-top: 38px;
 }

 .serv-row .serv-blk {
   position: relative;
   width: 350px;
   height: 469px;

   margin-top: 48px;
 }

 .serv-blk .serv-shape3 {
   position: relative;
 }

 .serv-shape3 .serv-txt {
   position: absolute;
   bottom: 15px;
   left: 0;
   right: 0;
   margin: auto;
   text-align: center;
 }

 .serv-txt h2 {
   color: #fff;
   text-transform: uppercase;
   font-size: 22px;
   font-weight: 600;
 }

 .serv-txt-btm {
   color: #fff;
 }

 .serv-row {
   margin-top: 75px;
 }

 .serv-two {
   padding-top: 75px;
 }

 .serv-txt-btm p {
   padding: 0 37px;
   margin-bottom: 0px;
 }

 .serv-txt-btm p a {
   color: #fff;
 }

 .serv-shape3 .serv-inner-img {
   position: absolute;
   border-radius: 50%;
   overflow: hidden;
   height: 220px;
   width: 220px;
   right: 64px;
   top: 29px;
   border: 5px solid #f7f7f7;
   background-color: var(--color-primary);
   transition: all ease 0.4s;
   z-index: 1;
   box-shadow: 0 0 10px #0000009e;
 }

 .serv-inner-img::before {
   content: "";
   background: #fff;
   position: absolute;
   height: 220px;
   width: 220px;
   opacity: 0;
   transform: rotate3d(1, -1, 0, 100deg);
   transition: all 0.4s ease-in-out;
   border-radius: 50%;
   top: -3px;
   left: -3px;
 }

 .serv-icon {
   color: #ff416c;
   width: 100%;
   opacity: 0;
   transform: translateX(-50%) translateY(-50%);
   position: absolute;
   z-index: 1;
   transition: all 0.4s ease-in-out;
   margin: auto;
   top: 50%;
   left: 24px;
   right: 0;
   height: 25px;
   width: 25px;
 }

 .serv-blk:hover .serv-inner-img:before {
   opacity: 0.9;
   transform: rotate3d(0, 0, 0, 0deg);
 }

 .serv-inner-img img {
   width: 100%;
   height: auto;
   transform: translate3d(0, 0, 0) scale(1);
   transition: all 0.5s ease 0s;
 }

 .serv-blk:hover .serv-inner-img img {
   opacity: 0.3;
   transform: translate3d(-12px, 0, 0) scale(1.1) rotate(3deg);
 }

 .serv-blk:hover .serv-icon {
   opacity: 1;
 }

 .serv-blk:hover .serv-inner-img {
   transform: scale(1.1);
 }

 .serv-scroll .owl-item.center.active .serv-blk {
   transform: translateY(-55px);
 }

 .serv-scroll .owl-item .serv-blk {
   transition: transform 0.5s ease-in-out;
   /* Smooth transition */
   transform: translateY(0);
 }

 .blogs-section {
   position: relative;
   margin-bottom: 110px;
 }

 .blogs-section .blogs-row {
   position: relative;
   padding-top: 35px;
 }

 .blogs-section .timeline-icon img {
   width: 45px;
   filter: brightness(0) invert(1);
 }

 .blogs-section .doc-shape2 {
   position: absolute;
   right: -25%;
   z-index: -1;
   opacity: 0.2;
   transform: rotate(45deg);
 }

 .blogs-section .blogs-img {
   position: absolute;
   right: 0;
   bottom: 25px;
 }

 .blogs-section .blogs-img2 {
   position: absolute;
   right: -100px;
   bottom: -25px;
   width: 250px;
 }

 .appointment-form .btn-style-one {
   position: relative;
   font-size: 16px;
   line-height: 30px;
   text-transform: uppercase;

   font-weight: 500;
   overflow: hidden;
   min-width: 110px;
   border-radius: 30px;
   border: none;
   background-color: var(--color-default);
   color: #fff;
   margin-top: 25px;
 }

 .form-control {
   color: #fff;
   border-bottom: 1px solid #ffffff4d;
 }

 .footer_section {
   position: relative;
 }

 .footer_section .footer_add_row {
   position: relative;
 }

 /* .footer_section .footer_add_row::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
  border-radius: 15px;
} */
 /* .footer_section .footer_add_row::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
} */
 .footer_add_row .col-md-4:nth-child(1),
 .footer_add_row .col-md-4:nth-child(2) {
   border-right: 1px solid #fff;
 }

 .address_info_sec {
   position: relative;
   text-align: center;
 }

 .address_info_sec i {
   position: relative;
   left: 0px;

   width: 40px;
   height: 40px;
   font-size: 24px;
   text-align: center;
   color: var(--color-primary);
   border-radius: 50%;
   line-height: 40px;
   display: inline-block;
   /*! margin-bottom: 15px; */
   /*! box-shadow: 0px 0px 0px 5px #adadad; */
 }

 .address_info_sec span {
   display: block;
   color: #000;
   line-height: 24px;
 }

 /* .bottom-footer {
  padding: 5px 0;
    border-top: 1px solid var(--color-default);
} */
 .bottom-footer p {
   margin: 0;
   color: var(--color-default);
   font-size: 15px;
   display: inline-block;
   border-top: 1px solid var(--color-default);

   padding: 10px 15px;
 }

 .bottom-footer a {
   color: var(--color-primary) !important;
 }

 .footer_section .footer_wid p a {
   color: var(--color-primary);
 }

 .footer_section .footer_wid .footer_logo {
   width: 300px;
 }

 .footer_section .footer_top {
   position: relative;
   padding: 15px 10px 10px;
 }

 .footer_section .footer_top h2 {
   color: var(--color-primary);
   font-size: 21px;
   text-transform: uppercase;
   text-align: center;
   margin-bottom: 15px;
   display: inline-block;
   border-bottom: 1px solid var(--color-primary);
 }

 .footer_section .footer_wid p {
   font-size: 14px;
   line-height: 25px;
   display: block;
 }

 .footer_section .footer_wid_text {
   position: relative;
   padding-bottom: 12px;
   margin: 10px 0px;
 }

 .footer_section .footer_wid_text li {
   font-size: 14px;
 }

 .social-icon-two {
   position: relative;
   margin: 2px 0px;
 }

 .social-icon-two li {
   position: relative;
   display: inline-block;
 }

 .social-icon-two li a {
   position: relative;
   display: block;
   font-size: 24px;
   width: 38px;
   height: 38px;
   line-height: 37px;
   color: var(--color-default);
   border-radius: 50%;
   font-weight: 400;
   margin: 0 1px;
 }

 .footer_top .footer_wid_text:after,
 .footer_top .footer_wid_text:before {
   content: "";
   position: absolute;
   left: 0;
   bottom: 0;
   width: 40px;
   height: 3px;
   background-color: var(--color-primary);
   border-radius: 3px;
 }

 .footer_top .footer_wid_text:after {
   left: 44px;
   width: 4px;
   background-color: var(--color-primary);
 }

 .footer_wid li a {
   color: var(--color-default);
 }

 .footer-logo img {
   width: 160px;
   margin-bottom: 21px;
 }

 .footer_section .footer_wid ul li::before {
   content: "\f0da";
   position: absolute;
   left: 14px;
   display: block;
   font-size: 14px;
   line-height: 26px;
   color: var(--color-primary);
   font-weight: 900;
   font-family: "Font Awesome 5 Free";
 }

 .footer_section .footer_wid ul li {
   padding-left: 20px;
 }

 .footer-widget__social {
   display: flex;
   justify-content: center;
   align-items: center;
   margin-bottom: 15px;
 }

 .footer-widget__social span {
   color: #06334d;
   font-size: 24px;
   font-weight: 600;
 }

 .footer-widget__social ul {
   display: flex;
   list-style: none;
   margin: 0 8px 0;
   padding: 0;
 }

 .footer-widget__social li a {
   display: block;
   width: 41px;
   height: 41px;
   border-radius: 50%;
   text-align: center;
   line-height: 39px;
   color: var(--color-default);

   margin: 0 4px;
   box-shadow: 0px 0px 5px #6464649e;
   font-size: 19px;
   border: 1px dashed var(--color-primary);
 }

 .footer-widget__social li a img {
   width: 20px;
 }

 .footer-widget__social li a:hover {
   color: #ffffff;
   background: var(--color-primary);
 }

 .footer-widget__social li a:hover img {
   filter: brightness(0) invert(1);
 }

 .footer_add_row .col-md-3:nth-child(1) {
   background: linear-gradient(to right, transparent, #ddd);
 }

 .footer_add_row .col-md-3:nth-child(2) {
   background: linear-gradient(to right, transparent, #ddd, transparent);
 }

 .footer_add_row .col-md-3:nth-child(3) {
   background: linear-gradient(to left, transparent, #ddd);
 }

 .footer_mp iframe {
   border: 5px solid #f5f5f5;
   background: #fff;

   box-shadow: 0px 0px 11px #919191;
 }

 .as_inner_textad h2 a {
   color: var(--color-default);
   font-weight: 600;
 }

 .footer_wid .address_info_sec {
   position: relative;
 }

 .footer_wid .address_info_sec:nth-child(3) {
   border-top: 1px dashed var(--color-default);
   border-bottom: 1px dashed var(--color-default);
 }

 .footer-about p {
   font-size: 14px;
   line-height: 25px;
   margin: 0;
   padding: 0px 0px 25px;
 }

 .footer-about p a {
   color: var(--color-primary);
 }

 .footer-newsletter {
   text-align: center;
   font-size: 15px;
   margin-bottom: 25px;
 }

 .footer-newsletter form {
   background: #fff;
   padding: 6px 10px;
   position: relative;
   border-radius: 50px;
   box-shadow: 0px 2px 15px rgba(208, 224, 180, 0.37);
   text-align: left;
 }

 .footer-newsletter form input[type="email"] {
   border: 0;
   padding: 4px 8px;
   width: calc(100% - 100px);
 }

 .footer-newsletter form input[type="submit"] {
   position: absolute;
   top: 0;
   right: -1px;
   bottom: 0;
   border: 0;
   background: none;
   font-size: 16px;
   padding: 0 20px;
   background-color: var(--color-default);
   /* background: linear-gradient(to right, var(--color-primary),var(--color-secondary)); */
   color: #fff;
   transition: 0.3s;
   border-radius: 50px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
 }

 .footer_links {
   text-align: center;
 }

 .footer_links ul {
   display: inline-block;
   padding: 6px 190px 6px;
   margin: 0 0 15px;
 }

 .footer_links ul li {
   display: inline-block;
   line-height: 35px;
 }

 .footer_links ul li:last-child a {
   border-right: 0px;
 }

 .footer_links ul li a {
   color: var(--color-default);
   font-size: 17px;
   line-height: 19px;
   border-right: 1px solid;
   padding: 0 11px;
   text-transform: uppercase;
   font-weight: 600;
 }

 .footer_links ul li a:hover {
   color: var(--color-primary);
 }

 .footer_section .footer-left-sec a {
   color: #000;
   font-size: 15px;
 }

 .footer_section .f-call i,
 .footer_section .f-mail i,
 .footer-section .f-ad i {
   margin-right: 15px;
   font-size: 20px;
 }

 .f-ad p {
   margin-bottom: 0px;
 }

 .footer_section .f-ad {
   text-align: center;
   padding-top: 6px;
   border-top: 1px dashed #000;
 }

 .footer_section .f-call {
   border-right: 1px dashed #000;
   left: 17px;
   position: relative;
 }

 .footer_section .f-call,
 .footer_section .f-mail,
 .footer_section .f-ad {
   text-align: center;
   margin-bottom: 10px;
 }

 .f-ad p {
   font-size: 15px;
   color: var(--color-default);
 }

 .footer_section a {
   color: var(--color-default);
   font-size: 15px;
 }

 .footer_section .shape {
   position: relative;
   width: 70%;
   height: 5px;
   border-radius: 15px;
   background: linear-gradient(to left, var(--color-primary), transparent, var(--color-secondary));
 }

 .f-reach {
   margin-top: 15px;
 }

 .footer_links1 {
   text-align: center;
 }

 .footer_links1 ul {
   display: inline-block;
   /* padding: 0px 80px 6px; */
   margin: 0 0 15px;
 }

 .footer_links1 ul li {
   display: inline-block;
   line-height: 30px;
 }

 .footer_links1 ul li:last-child a {
   border-right: 0px;
 }

 .footer_links1 ul li a {
   color: var(--color-default);
   font-size: 15px;
   line-height: 19px;
   border-right: 1px dashed;
   padding: 0 11px;
 }

 .footer_links1 ul li a:hover {
   color: var(--color-primary);
 }

 .subscribe-block {
   position: relative;
   padding: 25px 20px;
   background-color: var(--color-default);
   margin: 30px 0px 15px;
   border-radius: 12px;
 }

 .sub-title h4 {
   text-transform: uppercase;
   color: #fff;
   font-size: 33px;
 }

 .subscribe-input {
   position: relative;
   margin-top: 8px;
 }

 .sub-title p {
   margin: 0;
   color: #fff;
   font-size: 14px;
 }

 .subscribe-input .form-control {
   height: 58px;
   background-color: white;
   border: 1px solid #e4e4e4;
   color: var(--color-secondary);
 }

 .subscribe-input .form-control::placeholder {
   color: #6b6b6b;
 }

 .subscribe-input .btn {
   position: absolute;
   top: 7px;
   right: 8px;
   background: var(--color-secondary);
   border: none;
   border-radius: 0;
   padding: 11px 16px;
   color: #fff;
 }

 .footer_links1 p span {
   color: var(--color-primary);
   text-transform: uppercase;
   font-weight: 600;
   font-size: 21px;
 }

 /* .f-left::after{
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background: linear-gradient(to top, #fff0,var(--color-default),#fff0);
  top: 0;
  right: 0;
} */

 .footer-about p {
   font-size: 15px;
   line-height: 30px;
   margin: 0;
   padding: 0px 0px 25px;
   color: var(--color-default);
 }

 /* 
.footer_section .doc-shape2 {
  position: absolute;
  right: -25%;
  z-index: -1;
  opacity: 0.2;
  transform: rotate(45deg);
 bottom: 0;
} */

 .w-one {
   left: 17px;
 }

 .w-two {
   left: -6px;
 }

 .counter {
   text-align: center;
   padding: 0 20px 11px;
   position: relative;
   z-index: 1;
 }

 .counter:before,
 .counter:after {
   content: "";
   border: 2px solid var(--color-secondary);
   border-radius: 100px 100px 0 0/50px 50px 0 0;
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   top: 30px;
   bottom: 0;
   z-index: -1;
 }

 .counter:after {
   background-color: #fff;
   border: none;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
   left: 10px;
   right: 10px;
   top: 6px;
   bottom: 10px;
 }

 .counter .counter-icon {
   color: #fff;
   background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
   font-size: 32px;
   line-height: 32px;
   line-height: 85px;
   width: 60px;
   height: 75px;
   margin: 0 auto 20px;
   border-radius: 40px 40px 50px 50px/ 15px 15px 50px 50px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
 }

 .counter .counter-icon i {
   line-height: inherit;
 }

 .counter h3 {
   color: var(--color-primary);
   font-size: 18px;
   font-weight: 600;
   letter-spacing: 0.5px;
   text-transform: capitalize;
   margin: 0 0 13px;
 }

 .counter .counter-value {
   font-size: 33px;
   font-weight: 800;
 }

 @media screen and (max-width: 990px) {
   .counter {
     margin-bottom: 40px;
   }
 }

 .blogs-section .counter-icon img {
   width: 45px;
   filter: brightness(0) invert(1);
 }

 .blogs-section .sec-head {
   margin-bottom: 25px;
 }

 .blogs-section iframe {
   border-radius: 16px;
 }

 .tips-section .appt-blk {
   position: relative;
 }

 .appt-section {
   position: relative;

   margin-bottom: 82px;
   padding: 70px 0;
   z-index: 1;
 }

 .appt-section::before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/appt-bg.png);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   top: 0;
   left: 0;
   z-index: -1;
   opacity: 0.29;
 }

 .appt-section::after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: #000;
   /* background: linear-gradient(to left,var(--color-primary), #752335,var(--color-primary)); */
   top: 0;
   left: 0;
   z-index: -2;
 }

 .form-control::placeholder {
   color: #fff;
 }

 .form-control:focus {
   color: #000000;
   background-color: #be4d951a;
   border-color: transparent;
   outline: 0;
   box-shadow: 0 0 10px var(--color-secondary);
 }

 .appt-section .title-txt h2 {
   color: #fff;
 }

 .appt-section .title-txt p {
   color: #fff;
 }

 .appt-section .appt-left h2 {
   color: #fff;
 }

 .appt-left p {
   color: #fff;
 }

 .appt-left li {
   font-size: 17px;
   margin-bottom: 3px;
   padding: 1px 41px;
   padding-top: 1px;
   padding-top: 1px;
   display: block;
   position: relative;
   padding-top: 11px;
   color: #fff;
 }

 .appt-left ul li::before {
   content: "";
   position: absolute;
   height: 100%;
   width: 4%;
   background: url(../gallery/bicon.png);

   background-size: auto;
   background-size: contain;
   background-repeat: no-repeat;
   left: 9px;
   top: 13px;
 }

 .appt-left p {
   position: relative;
   padding-bottom: 15px;
 }

 .appt-left p::after {
   content: "";
   position: absolute;
   height: 2px;
   width: 100%;
   background: linear-gradient(to right, var(--color-primary), #fff0);
   left: 0px;
   bottom: 0;
 }

 .appt-left p::before {
   content: "";
   position: absolute;
   height: 15px;
   width: 15px;
   background-color: var(--color-secondary);
   transform: rotate(45deg);
   bottom: -7px;
   left: -5px;
 }

 .appt-section .appt-shape {
   position: absolute;
   top: -5px;
   left: 0;
   right: 0;
   background: linear-gradient(to left, var(--color-primary), var(--color-secondary));
   height: 10px;
   width: 50%;
   border-radius: 32px;
   margin: auto;
   opacity: 0.4;
 }

 .appt-section .appt-shape2 {
   position: absolute;
   bottom: -5px;
   left: 0;
   right: 0;
   background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
   height: 10px;
   width: 50%;
   border-radius: 32px;
   margin: auto;
   opacity: 0.4;
 }

 .appt-section .appt-right-blk {
   position: absolute;
   background-color: #321e25;
   padding: 188px 0 35px;
   top: -112px;
   z-index: 99;
   border-radius: 25px;
   box-shadow: 0 0 14px #8a4c5985;
 }

 .appt-right-blk::before {
   content: "";
   background: url(../gallery/apt-bg.jpg);
   width: 100%;
   height: 100%;
   border-radius: 25px;
   position: absolute;
   top: 0px;
   left: 0;
   background-position: center top;
   background-repeat: no-repeat;
   background-size: cover;
   z-index: -1;
 }

 .appointment-form {
   padding: 14px 35px;
 }

 .appt-left span {
   text-transform: uppercase;
   font-weight: 700;
   color: var(--color-primary);
   font-size: 44px;
 }

 .news-img {
   border: 2px solid var(--color-secondary);
   padding: 8px;
   position: relative;
 }

 .news-img img {
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
 }

 .footer_links1 ul li span {
   font-weight: 800;
   color: var(--color-secondary);
 }

 .f-ad span {
   font-weight: 800;
   color: var(--color-secondary);
   font-size: 17px;
 }

 .footer_links1 .footer-a {
   color: var(--color-secondary);
   padding: 0px;
 }

 .top-social {
   position: absolute;
   z-index: 91;
   text-align: center;
   top: 33px;
   right: 41px;
   width: auto;
   display: inline-flex;
 }

 .top-social li {
   display: inline-block;
   margin-right: 1px;
 }

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

 .top-social li img {
   filter: brightness(0) invert(1);
 }

 .top-social span {
   line-height: 34px;
   padding-right: 5px;
 }

 .top-social li a {
   display: block;
   width: 34px;
   height: 34px;
   color: var(--color-default);
   text-align: center;
   line-height: 34px;
   font-size: 14px;
   margin: 0px 1px;
   border: 1px solid var(--color-secondary);
   transition: all 300ms ease;
   border-radius: 50%;
 }

 .top-social li a:hover {
   color: var(--color-primary);
   border-color: var(--color-primary);
 }

 .top-numb {
   border-right: 1px solid var(--color-primary);
   padding-right: 11px;
   margin-right: 10px;
 }

 .top-numb a {
   background: var(--color-secondary);
   padding: 3px 10px;
   color: #fff;
   border-radius: 4px;
   transition: all 300ms ease;
   top: 5px;
   position: relative;
 }

 .doctor-text {
   border-radius: 14px;
   margin-top: 10px;
   padding: 8px 0;
 }

 .doctor-text h2 {
   font-weight: 600;
   font-size: 30px;
   color: var(--color-primary);
 }

 .doctor-text h3 {
   font-weight: 400;
   font-size: 17px;
   margin: 3px 0px;
 }

 .doctor-text h4 {
   font-size: 19px;
   font-weight: 500;
   margin-bottom: 8px;
 }

 .doctor-text a {
   display: inline-block;
   color: var(--color-primary);
   border: 1px solid;
   padding: 0 5px;
 }

 .abt-head h3::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 1px;
   background: var(--color-default);
   bottom: 0px;
   right: -90px;
 }

 .abt-head h3::after {
   content: " ";
   position: absolute;
   width: 10px;
   height: 10px;
   background: var(--color-default);
   bottom: 0px;
   right: -90px;
 }

 .abt-head h3 {
   font-weight: 400;
   background: var(--color-default);
   display: inline-block;
   padding: 2px 10px;
   position: relative;
   margin-bottom: 10px;
   color: #fff;
 }

 .abt-head h1 {
   font-size: 53px;
   font-family: "Cinzel", serif;
   line-height: 53px;
   font-weight: 600;
   color: var(--color-primary);
   text-transform: uppercase;
 }

 .abt-head h4 {
   font-weight: 500;
   display: inline-block;
 }

 .exp-blk {
   margin-top: 25px;
   padding: 25px;
   background: linear-gradient(to top, #e7e7e78a, #fff);
   border: 1px solid #fff;
   border-radius: 21px;
   box-shadow: 0 0 10px #00000030;
   padding-bottom: 28px;
 }

 .consult-blk h4 {
   font-weight: 400;
   font-family: "Open Sans", sans-serif;
   font-size: 24px;
   line-height: 34px;
 }

 .consult-blk a {
   padding: 5px 15px;
   font-family: "Open Sans", sans-serif;
   border-radius: 8px;
   font-size: 18px;
   font-weight: 500;
   color: #fff;
   z-index: 2;
   background: var(--color-primary);
   position: relative;
 }

 .appt-btn {
   margin-top: 15px;
 }

 .div-s {
   height: 4px;
   width: 100%;
   left: 0;
   right: 0;
   margin: auto;
   border-radius: 5px;
   background-color: var(--color-primary);
 }

 .consult-blk {
   margin-top: 16px;
   position: relative;
 }

 .test-sec {
   position: relative;
   margin-bottom: 83px;
 }

 .test-blk {
   position: relative;
   text-align: right;
   padding: 25px;
   padding-top: 45px;
   padding-right: 57px;
 }

 .test-left {
   position: relative;
   /* margin-top: 125px; */
 }

 .test-left-img {
   position: absolute;
   top: 35px;
   left: 0;
 }

 .test-txt-main {
   position: relative;
   padding-top: 108px;
 }

 .test-blk p {
   margin-bottom: 5px;
   font-size: 15px;
   padding: 15px;
   background: #f0f0f0;
   border-radius: 28px;
 }

 .test-blk h2 {
   font-weight: 500;
   display: inline-block;
   background: var(--color-default);
   color: #fff;
   padding: 0 15px;
   border-radius: 25px;
   font-size: 25px;
 }

 .test-blk .testi-star {
   color: var(--color-primary);
   padding-right: 15px;
 }

 .test-left .sec-head p {
   padding: 0 45px;
 }

 .blgBox {
   text-align: center;
   background: linear-gradient(to bottom, #fff0, #fff5ee);
   padding: 10px;
   border-bottom: 1px solid;
 }

 .blgBox .blg-icon {
   color: var(--color-primary);

   font-size: 35px;
   line-height: 85px;
   width: 85px;
   height: 85px;
   margin: 0 auto 55px;
   border-radius: 50px 50px 0 0;
   border: 2px solid var(--color-primary);
   border-bottom: none;
   position: relative;
   z-index: 1;
 }

 .blgBox .blg-icon i {
   line-height: inherit;
 }

 .blgBox .blg-icon:before,
 .blgBox .blg-icon:after {
   content: "";
   background: #fff;
   width: calc(100% - 15px);
   height: calc(100% - 15px);
   border-radius: 50%;
   box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
   transform: translateX(-50%) translateY(-50%);
   position: absolute;
   top: 50%;
   left: 50%;
   z-index: -1;
 }

 .blgBox .blg-icon:after {
   background: var(--color-secondary);
   width: 100px;
   height: 40px;
   border-radius: 0;
   box-shadow: none;
   transform: translateX(-50%) translateY(0);
   top: auto;
   bottom: -40px;
   clip-path: polygon(50% 75%, 100% 0, 100% 25%, 50% 100%, 0 25%, 0 0);
 }

 .blgBox .blg-title {
   color: var(--color-default);
   font-size: 17px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin: 0 0 7px;
 }

 .blgBox .blg-description {
   color: #555;
   font-size: 15px;
   font-weight: 400;
   line-height: 24px;

   margin: 0 10px;
 }

 @media only screen and (max-width: 1199px) {
   .blgBox {
     margin: 0 0 30px;
   }
 }

 .blg-icon img {
   width: 45px;
 }

 /* Outer wrapper with border */
 .insta-wrapper {
   border: 1px solid var(--color-default);
   /* nice colored border */
   border-radius: 15px;
   /* rounded corners */
   padding: 10px;
   /* gap between border & frame */
   background: #f9f9f9;
   /* subtle background */
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   /* soft shadow */
 }

 /* Inner embed */
 .insta-embed {
   max-height: 560px;
   overflow: hidden;
   border-radius: 10px;
 }

 /* Instagram blockquote tweaks */
 .insta-embed blockquote.instagram-media {
   background: #fff;
   border: 0;
   margin: 0;
   max-width: 100%;
   width: 100%;
 }

 /* 📱 Tablet */
 @media (max-width: 768px) {
   .insta-embed {
     max-height: 610px;
   }
 }

 /* 📱 Small Mobile */
 @media (max-width: 480px) {
   .insta-embed {
     max-height: 610px;
   }
 }

 .faq-row {
   padding-top: 30px;
 }

 .faq-content p {
   font-size: 14px;
   line-height: 22px;
 }

 .faq-content {
   position: absolute;
   text-align: center;
   top: 92px;
   bottom: 0px;
   margin: auto;
   height: fit-content;
   padding: 0px 30px 0px 20px;
   left: 0px;
 }

 .faq-content h2 {
   font-size: 18px;
   color: var(--color-secondary);
 }

 .faq-sec {
   position: relative;

   margin-bottom: 40px;
 }


 .chatbox {
   position: fixed;
   bottom: 91px;
   left: 28px;
   width: 260px;
   background: white;
   border-radius: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   display: none;
   z-index: 2;
 }

 .chatbox-header {
   background: var(--color-secondary);
   color: white;
   padding: 13px 15px;
   display: flex;
   justify-content: space-between;
 }

 .chatbox-header h2 {
   line-height: 33px;
   font-size: 20px;
 }

 .chatbox-header .btn-danger {
   color: #fff;
   background-color: var(--color-primary);
   border-color: transparent;
 }

 .chatbox-footer .btn-success {
   color: #fff;
   background-color: var(--color-secondary);
   border-color: var(--color-secondary);
 }

 .chatbox-footer .btn-success:hover {
   color: #fff;
   background-color: var(--color-secondary);
   border-color: var(--color-secondary);
 }

 .chatbox-footer .btn-success.focus,
 .chatbox-footer .btn-success:focus {
   box-shadow: 0 0 0 0.2rem #6e341963;
 }

 .chatbox-body {
   height: 200px;
   overflow-y: auto;
   padding: 10px;
   border-bottom: 1px solid #ddd;
   background-image: url(../gallery/chat-bg.jpg);
   background-size: cover;
 }

 .close-btn {
   font-size: 34px;
   padding: 0px;
   line-height: 24px;
   width: 30px;
   height: 32px;
   text-align: center;
   display: block;
   padding-bottom: 5px;
 }

 .chatbox-footer .form-control {
   border-bottom: none;
   font-size: 15px;
 }

 .chatbox-footer .form-control:focus {
   box-shadow: none;
 }

 .chatbox-footer {
   padding: 5px 10px;
   display: flex;
   gap: 5px;
 }

 #chatbox-open {
   position: fixed;
   bottom: 15px;
   left: 15px;
   padding: 0px;
   background: #ffffff00;
   z-index: 5;
 }

 .btn img {
   width: 65px;
 }

 #chat-messages {
   background: #ffffff;
   padding: 14px;
   border-radius: 0px 25px 25px 25px;
   box-shadow: 0px 0px 8px #00000059;
 }

 #chat-messages p {
   margin-bottom: 0px;
   font-size: 15px;
   line-height: 23px;
 }


 .chatbox-footer .form-control::placeholder {
   color: #000;
 }

 .chatbox-footer .form-control:focus {
   color: #000000;
   background-color: transparent;
   border-color: transparent;
   border-bottom-color: transparent;
   outline: 0;
   box-shadow: transparent;
 }

 .chatbox-footer .form-control {
   color: var(--color-default);
 }



 .gen-med-title a:hover {
   color: var(--color-primary);
 }

 .gen-med-title a {
   color: var(--color-primary);
   font-size: 17px;
   font-weight: 600;
 }

 .doc-pic-scroll .owl-dots {
   position: relative;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;
 }

 .doc-pic-scroll .owl-dot {
   position: relative;
   display: inline-block;
   width: 28px;
   height: 5px;
   opacity: 1;
   margin: -13px 2px;
   -webkit-transition: all 300ms ease;
   -moz-transition: all 300ms ease;
   -ms-transition: all 300ms ease;
   -o-transition: all 300ms ease;
   transition: all 300ms ease;
   background: var(--color-default);
 }

 .doc-pic-scroll .owl-dot:hover,
 .doc-pic-scroll .owl-dot.active {
   opacity: 1;
   background: var(--color-primary);
 }

 .top-wrap1 {
   position: relative;
 }

 .inner-section {
   position: relative;
   min-height: 47vh;
   padding: 128px 0;
 }

 .inner-section1 {
   position: relative;
   padding: 60px 0 70px;
 }

 .serv-matter p {
   text-align: justify;
   line-height: 30px;
   margin-bottom: 10px;
 }

 .ol_styles {
   padding: 0;
   padding-left: 20px;
 }

 .ol_styles li {
   position: relative;
   padding-left: 1px;
   margin-bottom: 5px;
   line-height: 28px;
   font-size: 16px;
   text-align: justify;
   list-style: disc;
 }

 .serv-matter h2 {
   color: var(--color-secondary);
   font-size: 23px;
   margin: 15px 0px 5px;
 }

 .serv-matter h3 {
   color: var(--color-primary);
   font-size: 20px;
   margin: 15px 0px 5px;
 }

 .inner-serv-img {
   text-align: center;
 }

 .inner-serv-img img {
   border: 6px solid #ffffff;
   box-shadow: 0px 0px 8px #00000052;
 }


 .breadcrumb {
   position: relative;
   text-align: right;
   padding: 170px 0 30px;
   margin-bottom: 0;
   z-index: 2;
   display: block;
   background: transparent;
 }

 .bread-bg {
   padding: 93px 0px;
   position: relative;
 }

 .bread-bg::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background: linear-gradient(to left, var(--color-default), #c95300, var(--color-default));
   left: 0px;
   top: 0px;
   opacity: 0.85;
 }

 .bread-bg::after {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/serv-bg.jpg);
   background-size: cover;
   background-position: center;
   left: 0px;
   top: 0px;
   z-index: -1;
 }

 .bread-inner {
   position: relative;
   padding-right: 28px;
 }

 .bread-inner::before {
   content: " ";
   position: absolute;
   width: 2px;
   height: 115px;
   background: #fff;
   top: -96px;
   right: 0px;
   margin: auto;
 }

 .bread-inner::after {
   content: " ";
   position: absolute;
   width: 10px;
   height: 10px;
   background: #fff;
   top: 14px;
   right: -4px;
   margin: auto;
 }

 .breadcrumb h1 {
   color: #fff;
   position: relative;
   font-size: 54px;
   text-transform: capitalize;
   font-weight: 500;
   margin-bottom: 0px;
   font-family: "Cinzel", serif;
   letter-spacing: 1px;
 }

 .breadcrumb ul li a {
   font-weight: 500;
   color: #fff;
 }


 .breadcrumb ul li::before {
   content: "/";
   position: absolute;
   right: 0;
   top: 0;
   width: 2px;
   color: #fff;
 }

 .breadcrumb ul li:last-child::before {
   content: none
 }

 .breadcrumb ul li {
   font-size: 18px;
   display: inline-block;
   position: relative;
   text-transform: capitalize;
   padding: 0 14px;
   margin: 0
 }

 .breadcrumb ul {
   padding: 6px 0px;
   position: relative;
   display: inline-block;
 }

 ._serv_nav {
   position: relative;
   padding: 17px 18px;
   margin: 30px 0 19px;
   border-top: 4px solid var(--color-secondary);
   box-shadow: 0 0 10px #ccc;
   background: #f5f5f5;
   text-align: center;
 }

 ._serv_nav h4 {
   font-size: 29px;
   margin-bottom: 14px;
   display: inline-block;
   border-bottom: 1px solid;
   color: var(--color-primary);
   text-transform: uppercase;
 }

 ._serv_nav ul {
   padding: 0;
   list-style: none;
 }

 ._serv_nav ul li a {
   text-align: left;
   display: block;
   position: relative;
   border-bottom: 1px dashed #ccc;
   padding-bottom: 10px;
   margin-bottom: 10px;
   padding-left: 17px;
   color: var(--color-default);
   font-size: 16px;
 }

 ._serv_nav ul li a.active {
   color: var(--color-primary);
 }

 ._serv_nav ul li a:hover {
   color: var(--color-primary);
 }

 ._serv_nav ul li a::before {
   content: "";
   position: absolute;
   width: 10px;
   height: 10px;
   border: 2px solid;
   left: 0;
   border-radius: 50%;
   top: 8px;
 }

 ._serv_nav ul li:last-child a {
   border-bottom: none;
   padding-bottom: 0;
   margin-bottom: 0;
 }

 .main-timeline:after {
   content: '';
   display: block;
   clear: both;
 }

 .main-timeline:before {
   content: '';
   height: 100%;
   width: 3px;
   border-left: 3px dashed #555;
   transform: translateX(-50%);
   position: absolute;
   top: 0;
   left: 50%;
 }

 .main-timeline .timeline {
   width: 50%;
   padding: 15px 15px 15px 55px;
   margin: 0 0 0 5px;
   float: right;
   position: relative;
   z-index: 1;
 }

 .main-timeline .timeline:before {
   content: '';
   background-color: var(--color-primary);
   height: 20px;
   width: 20px;
   border-radius: 50%;
   transform: translateY(-50%);
   position: absolute;
   left: -10px;
   top: 50%;
 }

 .main-timeline .timeline-content {
   background: #fff;
   text-align: center;
   padding: 15px;
   border-radius: 20px;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
   display: block;
   position: relative;
 }

 .main-timeline .timeline-content:hover {
   text-decoration: none;
 }

 .main-timeline .timeline-content:before,
 .main-timeline .timeline-content:after {
   content: "";
   background: var(--color-primary);
   width: 35px;
   height: 35px;
   transform: translateY(-50%) rotate(45deg);
   position: absolute;
   top: 50%;
   left: -33px;
   z-index: -1;
 }

 .main-timeline .timeline-content:after {
   background: linear-gradient(to left, transparent, var(--color-primary));
   height: auto;
   width: auto;
   border-radius: 20px;
   transform: translateY(0);
   left: -15px;
   right: -15px;
   top: -15px;
   bottom: -15px;
   z-index: -2;
 }

 .main-timeline .timeline-icon {
   color: #555;
   font-size: 30px;
   font-weight: 600;
   line-height: 35px;
   margin: 0 0 10px;
 }

 .main-timeline .title {
   color: var(--color-secondary);
   font-size: 25px;
   font-weight: 500;
   text-transform: uppercase;
   margin: 0 0 10px 0;
 }

 .main-timeline .description {
   font-size: 15px;
   line-height: 22px;
   margin: 0;
 }

 .main-timeline .timeline:nth-child(even) {
   padding: 15px 55px 15px 15px;
   margin: 0 5px 0 0;
   float: left;
 }

 .main-timeline .timeline:nth-child(even):before {
   left: auto;
   right: -10px;
 }

 .main-timeline .timeline:nth-child(even) .timeline-content:before {
   left: auto;
   right: -33px;
 }

 .main-timeline .timeline:nth-child(even) .timeline-content:after {
   transform: rotate(180deg);
 }

 @media screen and (max-width:767px) {
   .main-timeline:before {
     transform: translateX(-50%);
     left: 18px;
   }

   .main-timeline .timeline,
   .main-timeline .timeline:nth-child(even) {
     width: 100%;
     padding: 15px 15px 15px 55px;
     margin: 0 0 30px;
   }

   .main-timeline .timeline:before,
   .main-timeline .timeline:nth-child(even):before {
     left: -7px;
   }

   .main-timeline .timeline-content:before,
   .main-timeline .timeline:nth-child(even) .timeline-content:before {
     left: -33px;
     right: auto;
   }

   .main-timeline .timeline:nth-child(even) .timeline-content:after {
     transform: rotate(0);
   }

   .main-timeline .title {
     font-size: 23px;
   }
 }

 .contact-form {
   position: relative;
   text-align: center;
   padding: 32px 48px;
   background: #fff;
   box-shadow: 0px 0px 12px 0px #00000026;
   border: 10px solid #f5f5f5;
   border-radius: 20px;
   margin: auto;
 }

 .contact-map iframe {
   box-shadow: 0px 0px 12px 0px #00000026;
   border: 10px solid #f5f5f5;
   border-radius: 20px;
   height: 442px;
   width: 100%;
 }

 .contact-form h2 {
   margin-bottom: 28px;
   color: var(--color-secondary);
   font-size: 33px;
   font-weight: 500;
   display: inline-block;
   padding-bottom: 3px;
   border-bottom: 1px solid;
 }

 .contact-form .form-control {
   height: 44px;
   color: #000;
   border-bottom: 1px solid #00000045;
   border-radius: 0;
   font-size: 16px;
   background: #f17a2714;
 }

 .contact-form .form-control::placeholder {
   color: var(--color-default);
 }

 .contact-form .btn-danger {
   color: #fff;
   background: var(--color-secondary);
   border-color: initial;
   margin-top: 18px;
 }

 .contact-form textarea.form-control {
   height: 95px;
 }

 .contact-page-map h2 {
   margin-bottom: 23px;
   color: #ffffff;
   font-size: 28px;
   display: inline-block;
   padding-bottom: 5px;
   padding-top: 5px;
   font-weight: 300;
   position: relative;
 }

 .contact-form .col-md-12,
 .contact-form .col-md-6 {
   padding: 0px 8px;
 }

 .adr-blk {
   position: relative;
 }

 .add-icon-row {
   margin-bottom: 30px;
 }

 .adr-icon img {
   width: 50px;
 }

 .adr-icon {
   background: #fff;
   width: 100px;
   height: 100px;
   line-height: 100px;
   box-shadow: 0px 0px 9px #0000003d;
   margin: auto;
   border-radius: 20px 20px 0px 0px;
   position: relative;
 }

 .adr-icon::before {
   content: " ";
   position: absolute;
   width: 118px;
   height: 118px;
   border-radius: 23px 23px 0px 0px;
   border: 1px solid var(--color-primary);
   border-bottom: 0px;
   left: -9px;
   right: 0px;
   margin: auto;
   top: 0px;
   bottom: 0px;
 }

 .adr-txt {
   margin-top: -10px;
 }

 .adr-txt p {
   font-size: 20px;
   margin-top: 10px;
 }

 .adr-txt h2 {
   background: var(--color-primary);
   color: #fff;
   display: inline-block;
   padding: 7px 28px 5px;
   border-radius: 30px;
   text-transform: uppercase;
   font-size: 22px;
   font-weight: 500;
 }

 .hos-abt-img img {
   box-shadow: 0px 0px 16px #00000030;
   border: 8px solid #fff;
 }

 .team-doc-img img {
   border: 8px solid #f5f5f5;
 }

 .team-doc-content h2 {
   font-size: 28px;
   text-transform: uppercase;
   color: var(--color-primary);
 }

 .team-doc-content h3 {
   font-size: 18px;
   margin: 3px 0px 4px;
 }

 .team-doc-content h4 {
   font-size: 16px;
 }

 .team-doc-content {
   position: relative;
   padding-bottom: 8px;
   margin-bottom: 5px;
 }

 .team-doc-content::before {
   content: " ";
   position: absolute;
   width: 58%;
   height: 1px;
   background: var(--color-default);
   bottom: 0px;
   left: 0px;
 }

 .team-doc-btm h5 {
   font-size: 17px;
   font-weight: 700;
   padding-bottom: 3px;
   margin-top: 10px;
 }

 .team_styles {
   position: relative;
   margin-bottom: 12px;
   list-style-type: none;
 }

 .team_styles li {
   position: relative;
   padding-left: 20px;
   font-size: 15px;
   line-height: 27px;
   margin-bottom: 4px;
   font-weight: 400;
 }

 .team_styles li::before {
   font-family: "FontAwesome";
   content: "\f14a";
   position: absolute;
   left: 0;
   top: 0;
   color: var(--color-primary);
   font-size: 13px;
 }

 .team-row1,
 .team-row2,
 .team-row3,
 .team-row4 {
   margin-bottom: 40px;
 }

 .team-row {
   box-shadow: 0 6px 13px #cccccc75;
   padding: 27px 23px 27px;
   border-radius: 45px;
   position: relative;
 }

 .team-row1::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/medicine-icon.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: 80%;
   opacity: 0.05;
 }

 .team-row2::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/cardio-icon.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: 80%;
   opacity: 0.05;
 }

 .team-row3::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/ortho-icon.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: 80%;
   opacity: 0.05;
 }

 .team-row4::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/anaesthesia-icon.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: 32%;
   opacity: 0.05;
   filter: blur(2px);
 }

 .team-row5::before {
   content: " ";
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: url(../gallery/general-surgery-icon.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: 32%;
   opacity: 0.05;
   filter: blur(2px);
 }

 .fac-block {
   margin-bottom: 40px;
   position: relative;
   cursor: pointer;
 }

 .fac-block h2 {
   font-size: 20px;
   margin-top: 8px;
   border-top: 1px solid;
   padding-top: 8px;
   display: inline-block;
 }

 .faci-row {
   margin-top: 50px;
 }

 .facc-head {
   margin-bottom: 20px;
   position: relative;
 }

 .facc-head h2 {
   text-transform: uppercase;
   background: var(--color-primary);
   display: inline-block;
   color: #fff;
   padding: 3px 20px;
 }

 .arogyasri-sec {
   position: relative;
   margin-bottom: 80px;
 }

 .argoya-block {
   background: var(--color-secondary);
   color: #fff;
   padding: 20px 15px;
   border-radius: 50px;
 }

 .argoya-block h2 {
   font-size: 28px;
   text-transform: uppercase;
 }