@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css");
@import url("flaticon.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{ 
	--primary-color:#2e3192;
	--secondary-color:#f4572e;
	--text-color:#8a8a8a;
	--light-bg-color:#f4f9fc;
	--primary-font-family: "Montserrat", sans-serif;
}
	
*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family:var(--primary-font-family);
	color:var(--text-color);
	font-weight:normal;
	font-style:normal;
	font-size:18px;
	line-height: 1.3;	
}
a{
	color:var(--primary-color);
	text-decoration:none;
	transition:.3s all;
	-webkit-transition:.3s all;
	-moz-transition:.3s all;
	-ms-transition:.3s all;
	display: inline-block;
}
a:hover{
	color:var(--secondary-color);
}
input, select, textarea, button {
    background-color: transparent;
    border: 2px solid #dce6f5;
    padding: 14px 20px;
	outline: none !important;
    box-shadow: none !important;
	height: auto;
	font-family: var(--primary-font-family);
    color: #000;
	font-weight: 600;
    font-size: 16px;
}
textarea {
    height: 100px !important;
    resize: vertical;
}
.container {
    max-width: 1466px;
    width: 100%;
}
.bg-light-section {
    background: var(--light-bg-color);
}
.bg-primary-color{
	background-color: var(--primary-color);
}
.bg-secondary-color{
	background-color: var(--secondary-color);
}
.breadcrumb-item+.breadcrumb-item {
    margin-bottom: 5px;
}
img{
	max-width:100%;
	height: auto;
	    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
}
ul, ol{
	padding:0;
	margin:0;
}
ul li, ol li{
	list-style:none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:  #000;
	margin-bottom:15px;
	font-weight: 600;
}
h1, .h1{
	font-size:52px;
	font-weight: 800;
}
h2, .h2{
font-size: 32px;
    font-weight: 600;
}
h3, .h3{
	font-size:32px;
    font-weight: 600;
}
h4, .h4{
	font-size:28px;
    font-weight: 600;
}
h5, .h5{
	font-size:24px;
}
h6, .h6{
	font-size:20px;
}
p{
	margin-bottom:15px;
	line-height: 28px;
    font-weight: 500;
       font-size: 16px;
    color: #222;;
}
p:last-child{
	margin-bottom:0;
}
.title {
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 700;
}
.pt-7 {
    padding-top: 70px;
}
.pb-7 {
    padding-bottom: 70px;
}
.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1.5em;
}
.alignleft {
    float: left;
    margin:0.5em 1.5em 0.5em 0;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
::scrollbar {
  width: 10px;
}
 
::scrollbar-track {
  background:#fff;
}
 
::scrollbar-thumb {
  background-color: var(--secondary-color);
}
::-webkit-scrollbar {
  width: 10px;
}
 
::-webkit-scrollbar-track {
  background:#fff;
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
}
::-moz-scrollbar {
  width: 10px;
}
 
::-moz-scrollbar-track {
  background:#fff;
}
 
::-moz-scrollbar-thumb {
  background-color: var(--secondary-color);
}
::-ms-scrollbar {
  width: 10px;
}
 
::-ms-scrollbar-track {
  background:#fff;
}
 
::-ms-scrollbar-thumb {
  background-color: var(--secondary-color);
}

.global-button {
    padding: 14px 30px;
    margin: 0;
    position: relative;
    display: inline-block;
    /* letter-spacing: 0.05rem; */
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: #ff7900;
    color: #fff;
}

.global-button:hover{
    background: #222;
    color: #fff;
}
/*

.global-button span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

.global-button:hover span {
 color: #fff;
}

.global-button::before,
.global-button::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

.global-button::before {
 content: "";
 background: #ff7900;
 color: #fff;
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.global-button:hover::before {
 transform: translate3d(100%, 0, 0);
}*/
.global-button i {
    position: relative;
    transform: rotate(-40deg);
    transition: 0.6s;
    color: #fff;
    margin-left: 6px;
}
.global-button:hover i{
transform: rotate(0deg);
}


   .updown {
    transform: translateZ(0);
    animation: bob 3s ease-in-out infinite;
    position: absolute;
    right: 0;
  }

  @keyframes bob {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-30px); } /* move up */
    100% { transform: translateY(0); }
  }


section {
    overflow: hidden;
}
.round-img img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
}
.preloader {
    position: fixed;
    left: 0;
	top:0;
	right:0;
	bottom:0;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 9999999;
	background:var(--primary-color);
}
.preloader.preloader-deactivate {
    opacity: 0;
    visibility: hidden;
}
.preloader .loader {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 45%;
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.preloader .loader .loader-outter {
    position: absolute;
    border: 4px solid #ffffff;
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    -moz-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    -ms-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.preloader .loader .loader-inner {
    position: absolute;
    border: 4px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    width: 60px;
    height: 60px;
    left: calc(40% - 21px);
    left: -webkit-calc(40% - 21px);
    left: -moz-calc(40% - 21px);
    left: -ms-calc(40% - 21px);
    top: calc(40% - 21px);
    top: -webkit-calc(40% - 21px);
    top: -moz-calc(40% - 21px);
    top: -ms-calc(40% - 21px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    -moz-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    -ms-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.preloader .loader .indicator {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(1.5);
    -moz-transform: translateY(-50%) scale(1.5);
    -ms-transform: translateY(-50%) scale(1.5);
    transform: translateY(-50%) scale(1.5);
}
.preloader .loader .indicator svg polyline {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.preloader .loader .indicator svg polyline#back {
    stroke: #ffffff;
}
.preloader .loader .indicator svg polyline#front {
    stroke: var(--secondary-color);
    stroke-dasharray: 12, 36;
    stroke-dashoffset: 48;
    -webkit-animation: dash 1s linear infinite;
    -moz-animation: dash 1s linear infinite;
    -ms-animation: dash 1s linear infinite;
    animation: dash 1s linear infinite;
}
@keyframes loader-outter {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes loader-outter {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}
@keyframes loader-inner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}
@-moz-keyframes loader-inner {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(-360deg);
    }
}
@keyframes dash {
    62.5% {
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@-webkit-keyframes dash {
    62.5% {
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@-moz-keyframes dash {
    62.5% {
        opacity: 0;
    }
    to {
        stroke-dashoffset: 0;
    }
}
.navbar-brand img {
    max-width: 200px;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 50px;
    height: 50px;
    background: #fff !important;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -webkit-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%) !important;
    -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%) !important;
    font-size: 30px !important;
    line-height: 54px !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
	color:var(--secondary-color) !important;
}
.owl-nav button:hover {
    background: var(--secondary-color) !important;
	color:#fff !important;
}
.owl-nav button.owl-next {
    right:-10px;
	left:auto;
}
.owl-dots {
    text-align: center;
    margin-top: 40px;
}
.owl-dots button {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color) !important;
    margin: 0 3px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
}
.owl-dots button.active {
    width: 30px;
    background: var(--primary-color) !important;
}
.navbar-toggler {
    vertical-align: middle;
    float: right;
	    margin-top: 11px;
    padding: 0;
}
.navbar-toggler .line {
    height: 4px;
    width: 35px;
    background:var(--primary-color);
    margin: 6px auto;
	transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar-toggler .line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
}
.navbar-toggler .line:nth-child(2) {
    visibility: hidden;
}
.navbar-toggler .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    -moz-transform: rotate(-45deg) translate(7px, -7px);
    -ms-transform: rotate(-45deg) translate(7px, -7px);
}
.navbar-toggler.collapsed .line {
    transform: rotate(0deg) translate(0, 0)!important;
    -webkit-transform: rotate(0deg) translate(0, 0)!important;
    -moz-transform: rotate(0deg) translate(0, 0)!important;
    -ms-transform: rotate(0deg) translate(0, 0)!important;
	visibility: visible !important;
}
.site-header .navbar-nav>li .dropdown-icon {
    display: none;
}
.top-bar {
    background: var(--primary-color);
	padding: 10px 0;
	font-size: 16px;
}.top-header ul {
    align-items: center;
    display: flex;
    justify-content: end;
    gap: 10px;
        padding-top: 5px;
}
.top-header ul li a {
    color: #fff !important;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px !important;
}


.top-bar ul li {
    display: inline-block;
}
.head-contact li {
    color: #fff;
}
.head-contact li a{
    color:#fff;
}
.head-contact li a:hover{
    color: var(--secondary-color);
}
.head-contact li+li {
    margin-left: 20px;
}
.head-contact li i {
    margin-right: 5px;
}
.head-social-icons li+li {
    margin-left:5px;
}
.head-social-icons li a {
    display: block;
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    line-height: 31px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
}
.head-social-icons li a:hover {
    color: #ffffff;
    background-color: var(--secondary-color);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.site-header {
    padding: 5px 0;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    -moz-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    -ms-box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 4%);
    position: relative;
    z-index: 2;
}
.site-header .navbar-nav>li {
    position: relative;
	margin-left: 15px;
}
.site-header .navbar-nav>li>a {
        padding-top: 10px;
    padding-bottom: 15px;
}
.site-header li a {
    font-size: 16px;
    color: #121212;
    font-weight: 500;
}
.site-header li a:hover, .site-header li.current-menu-item>a{
	color:var(--primary-color);
}
.site-header li.menu-btn a {
    color: #fff;
    background: var(--primary-color);
    padding-left: 30px !important;
    padding-right: 30px !important;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    margin-left: 10px;
	padding-top: 15px;
    padding-bottom: 15px;
}
.site-header li.menu-btn a:hover {
    background: var(--secondary-color);
}
.site-header .navbar-nav .menu-item-has-children>a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: 10px;
    vertical-align: text-bottom;
	font-size:16px;
}
.site-header .navbar-nav>li .sub-menu {
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    background: #ffffff;
    position: absolute;
    border: none;
    top: 80px;
    left: 0;
    width: 250px;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 3px solid var(--primary-color);
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
}
.site-header .navbar-nav>li .sub-menu li {
    padding: 0;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding: 10px 0;
    margin: 0;
    color: var(--text-color);
}
.site-header .navbar-nav>li .sub-menu li a:hover, .site-header .navbar-nav>li .sub-menu li.current-menu-item>a {
    color: var(--primary-color);
}
.site-header .navbar-nav>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.btn {
    border: none;
    line-height: initial;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    padding: 17px 55px 15.5px 25px;
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
    font-family: var(--primary-font-family);
    font-weight: 700;
	box-shadow:none !important;
	-webkit-box-shadow:none !important;
	-moz-box-shadow:none !important;
}
.btn-primary{
    background:var(--primary-color);
}
.btn-secondary {
    background: var(--secondary-color);
}
.btn i {
    position: absolute;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    display: inline-block;
    height: 33px;
    width: 33px;
    line-height: 33px;
    color: var(--primary-color);
    border-radius: 50%;
    background-color: #f0f0f0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
.btn-secondary i{
    color: var(--secondary-color);
}
.btn-primary:hover, .btn-primary:focus{
    background:var(--secondary-color);
}
.btn:hover i, .btn:focus i {
    background-color: #ffffff;
    color: var(--primary-color);
}
.btn-secondary:hover, .btn-secondary:focus{
    background: var(--primary-color);
}
.btn-secondary:hover i{
    color: var(--primary-color);
}
.read-more {
    color: #000;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -m-border-radius: 5px;
    border: 1px solid #ff7900;
}
.read-more i {
    font-size: 12px;
    vertical-align: middle;
    margin-left: 10px;
	transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.read-more:hover {
    background: #ff7900;
    color:#fff;
}
.read-more:hover i{
    margin-left: 20px;
}
.main-banner {
    height: 700px;
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*.item.main-banner:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #000a5b;*/
/*    opacity: 0.5;*/
/*}*/
.home-slider .container {
    padding: 0 25px;
}
.main-banner .d-table {
    width: 100%;
    height: 100%;
}
.main-banner .d-table-cell {
    vertical-align: middle;
}
.main-banner-content {
    max-width: 850px;
    position: relative;


}
.move{
transition: transform 0.4s ease; /* smooth animation */
}
.move:hover
{   translate: none; rotate: none; scale: none; transform: translate(-20.82px, 5.02px);/*
          transform: translate(-20.82px, 5.02px) rotate(10deg) scale(1.1);*/

}
.main-banner-content .btn-box .btn:first-child {
    margin-right: 15px;
}
.main-banner-content span {
    display: inline-block;
    margin-bottom: 20px;
    background: var(--secondary-color);
    font-size: 18px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.main-banner-content h1 {
    margin-bottom: 0;
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    line-height: 80px;
}
.main-banner-content p {
    line-height: 1.8;
    color: #121521;
    max-width: 670px;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff
}
.main-banner-content .goole-rating {
    color: #fff;
    font-size: 14px;
    position: relative;
    margin-top: 12px;
}
.main-banner-content img {
    width: 120px !important;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px;
}   

.home-slider .owl-nav button {
    position: relative;
    right: 30px;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px !important;
    font-size: 21px !important;
    background: #fff !important;
    border-radius: 100%;
    outline: none;
}
.home-slider .owl-nav button:hover {
    background: var(--primary-color) !important;
	color:#fff !important;
}
/*.home-slider .owl-nav button i {
    line-height: 18px;
    width: 14px;
}*/
.home-slider .owl-nav button.owl-prev {
    margin-top: 35px;
    left: 20px;
    position: absolute;
}
.home-slider .owl-nav button.owl-next {
    margin-top: 35px;
        right: 20px;
    position: absolute;
}
/*.home-slider .owl-nav button.owl-next i {
    line-height: 18px;
    width: 7px;
}*/

/*.usp {
    background: linear-gradient(to right, #ff7900, #ffbf03);
    padding: 15px 0px;
}*/
.usp .container {
    background: #fff;
    padding: 20px 30px;
    position: relative;
    bottom: 80px;
    z-index: 9;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.usp .col-lg-3 {
    border-right: 1px solid #ccc;
}
.usp .col-lg-3:last-child{
    border: 0px;
}
.usp-sec {
    transition: 0.6s;
    transition: 0.3s linear;
    background: #fff;
/*    box-shadow: 6px 6px 70px rgb(16 40 81 / 5%);*/
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}
.usp-sec:hover{
/*  transform: translateY(-20px);*/
    background-color: #ff8500;  
}
.usp-sec span {
    width: 65px;
    display: block;
    margin: 0 auto;
        border: 1px solid #555;
    padding: 10px;
    border-radius: 100px;
    margin-bottom: 20px;
        background: #fff;
}
.usp-sec span img {
    width: 60px;
    margin: 0 auto;

}
.usp-sec:hover span img{
        transform: rotateY(180deg);
    transition: 0.6s;
}

.usp-sec:hover i {
    transform: rotateY(180deg);
    transition: 0.6s;
}
.usp-sec p {
    color: #000;
}.usp-sec a {
    color: #ff7900;
    font-size: 18px;
     font-weight: 600;
}
.usp-sec abbr {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    line-height: 22px;
    padding: 0px;
    margin: 15px 0px;
    display: inline-block;
}
.usp-sec a:hover
{
    color: #ff7900
}
.usp-sec:hover abbr
{
    color: #fff;
}

.usp-sec:hover a{
    color: #fff;
}

.usp-sec i {
    color: #000;
    text-align: center;
    font-size: 20px;
    margin-right: 8px;
    top: 5px;
    position: relative;
}


.about-section h2{
        font-weight: 800;
    line-height: 48px;
    font-size: 36px;
    color: #222;
}



img.shape1 {
    position: absolute;
    right: 0;
    opacity: 0.5;
    z-index: 0;
}
.hero-video {
    width: 80%;
}

.hero-video video {
    width: 100%;
    border-radius: 20px;
}
.about_img
 {
    position: relative;
}

.about_img img {
    border-radius: 10px;
}.Emergency-help {
    position: absolute;
    left: 0;
    margin-top: -210px;
    z-index: 999;
}

.Emergency-help textPath {
    font-size: 11px;
}


.Emergency-help svg {
    width: 250px;
    color: #000 !important;
      animation: spin 18s linear infinite;
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.Emergency-btn {
    background: #fff;
    padding: 10px 20px;
    position: absolute;
    bottom: 80%;
    left: 10%;
    border-radius: 10px;
    right: inherit !important;
}

.Emergency-btn p {
    font-size: 21px;
}

.Emergency-btn span {
    font-weight: 700;
    display: block;
}
.Emergency-btn i {
    background: #ff7900;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 25px;
    border-radius: 5px;
    color: #fff;
}
.Emergency-btn a {
    font-weight: 600;
}

.Emergency-btn  .call {
    display: flex;
    align-items: center;
    gap: 15px;
}



.about-sec {
    position: relative;
    z-index: 9;
}
.about-sec h2 {
    line-height: 55px;
    font-size: 40px;
    color: #000;
    font-weight: 700;
}

.about-sec h2 span
{
    color: #ff7900;
}

.sports-medicine img{
    width: 100%;
    margin-top: 50px;
}

/*
.content-box {
    transition: 0.6s;
    transition: 0.3s linear;
    background: #fff;
    box-shadow: 6px 6px 70px rgb(16 40 81 / 5%);
    padding: 30px 10px;
    border: 1px solid #ffd5af;
    text-align: center;
    border-radius: 10px;
}*/
.content-box img {
    width: 100%;
}

.content-box .img-box {
    width: 150px;
    position: relative;
    transition: 0.6s
}
/*
.content-box .img-box {
    border: 1px solid #ff7900;
    width: 70px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 100px;
    position: relative;
    transition: 0.6s
}*/
/*.content-box:hover .img-box {
    border: 1px solid#000;
}*/
.content-box:hover .img-box img {
    transform: scale(1.3);
            transform: rotateY(180deg);
}


.content-box p {
    font-size: 14px;
}

.about-hospital{
    background: #f8f6f0;
}

.about- {
    padding-left: 80px;
}

.work-process-section .feature-box{
    padding: 35px 25px;
}



/*
.services-section{
    background: url(https://demo.abwebexperts.com/sunlifehospital/wp-content/uploads/2025/09/service-scaled.jpeg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}
.services-section:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
        background: linear-gradient(90deg, #0e0a34 0, #003a88 100%);
        opacity: 0.9
}*/

.services-section {
    background: #f8f6f0;
    padding: 40px 0px;
    /* background: linear-gradient(360deg, rgba(255, 255, 255, 0.2) 54%, rgba(140, 74, 216, 0.2) 84.86%), #ffffff; */
}


.more-service {
    position: relative;
    text-align: center;
}
.more-service p {
    color: #000;
    border: 1px solid #ff7900;
    border-radius: 100px;
    padding: 15px 40px;
    display: inline-block;
    font-weight: 600;
}

.more-service p a {
    color: #ff7900;
}
.mission-section .feature-box.mb-4 {
    background: #edf6fb;
}


.mission-vission{
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}
.mission-vission img{
    transition: 0.6s;
    border-radius: 15px;
}
.mission-vission img:hover{
    transform: scale(1.3);
}
.mission-section .left-full-section {
    padding-left: 10%;
}
section.cta-sec {
    background: url(https://demo.abwebexperts.com/sunlifehospital/wp-content/uploads/2025/09/13-scaled.webp);
    /* background: linear-gradient(to right, #ff512f, #f09819); */
    padding: 60px 0px 0px 0px;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.cta-sec .container {
    position: relative;
}
section.cta-sec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: .6;
    background: #000;
}
section.cta-sec p{
    margin-bottom: 20px;
}
section.cta-sec a {
    text-transform: none;
    font-weight: 500;
    margin-right: 10px;
    border-radius: 5px !important;
    font-size: 16px;
}
.img-box2 img {
    width: 70%;
    text-align: right;
}

.services-section .feature-box
 {
    background: #ffffff;
    border: 1px solid #ccc;
    text-align: center; 
}

.services-section .feature-box


.why-choose-info {
    padding: 15px 10px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #ececff;
}
.why-choose-info img{
    width: 70px;
    margin-bottom: 15px;
}

section.mission-section  h5 {
    font-size: 18px;
    margin-bottom: 0px;
    padding-bottom: 5px;
}

.feature-box {
    padding: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -webkit-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
	position:relative;
	transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
	z-index: 0;
    overflow: hidden;
        height: 100%;
}

.services-section .feature-box-list .aos-init{
margin-bottom: 30px;
}


.feature-box:hover {
    transform:translateY(-10px);
    -webkit-transform:translateY(-10px);
    -moz-transform:translateY(-10px);
    -ms-transform:translateY(-10px);
}
.feature-box-hover-bg:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
	z-index: -1;
	background:var(--primary-color);
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.feature-box-hover-bg:hover:before {
    height: 100%;
    top: 0;
}
.feature-box-hover-bg:hover .service-box-icon {
    background: rgb(255 255 255 / 90%);
    color: #fff;
}
.feature-box-hover-bg:hover h4, .feature-box-hover-bg:hover p{
	color:#fff;
}
.feature-box-hover-bg:hover .read-more {
    color: #fff;
    border-color: #fff;
}
.feature-box-hover-bg:hover .read-more:hover {
    background: #fff;
    color: var(--secondary-color);
}
.feature-small-icon img {
    max-width: 55px;
    height: auto;
}

.feature-small-content p {
    font-size: 14px;
    line-height: 28px;
}
.feature-small-content p:empty{
    display: none;
}

.feature-small-content a {
    color: #fff;
}

.services-section .feature-box:hover a{
    background: #fff;
    color: #000;
}
.services-section .feature-box:hover i{
    color: #000;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}
.feature-box .icon {
    margin-bottom: 20px;
    -webkit-box-shadow: 0 10px 55px 5px rgb(137 173 255 / 30%);
    -ms-box-shadow: 0 10px 55px 5px rgb(137 173 255 / 30%);
    -moz-box-shadow: 0 10px 55px 5px rgb(137 173 255 / 30%);
    box-shadow: 0 10px 55px 5px rgb(137 173 255 / 30%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 26px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
.feature-box:hover .icon {
	background: var(--secondary-color);
	color: #fff;
	border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-webkit-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-moz-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-ms-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.feature-box :hover img {
    transform: rotateY(180deg);
    transition: 0.6s;
}

.feature-box .service-box-icon {
    text-align: center;
    /* line-height: 45px; */
    background-color: #fff;
    width: 65px;
    height: 65px;
    /* font-size: 40px; */
    color: var(--secondary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    box-shadow: 0px 3px 16px 0px rgb(0 0 0 / 6%);
    -webkit-box-shadow: 0px 3px 16px 0px rgb(0 0 0 / 6%);
    -moz-box-shadow: 0px 3px 16px 0px rgb(0 0 0 / 6%);
    -ms-box-shadow: 0px 3px 16px 0px rgb(0 0 0 / 6%);
    margin: 0 auto;
    padding: 10 px;
}
.feature-box-left-hover-bg {
    padding: 30px 20px;
	position: relative;
	z-index: 0;
    overflow: hidden;
}
.service-round-icon {
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background-color: #19ce67;
    color: #ffffff;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.service-round-icon {
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -webkit-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -ms-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -moz-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 25px;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.feature-box-left-hover-bg::before {
    width: 0;
    height: 100%;
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.feature-box-left-hover-bg:hover::before {
    width: 100%;
}
.feature-box-left-hover-bg:hover .feature-small-content *{
	color:#fff;
}
.feature-box-left-hover-bg:hover .service-round-icon {
    background: rgb(255 255 255 / 9%);
    color: #fff;
}
.feature-box-left-hover-bg:hover {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
}
.feature-box-left-hover-bg::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid #ffffff;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.feature-box-left-hover-bg:hover::after {
    left: -50px;
    bottom: -50px;
}
.subtitle {
    display: inline-block;
    margin-bottom: 20px;
    background: var(--secondary-color);
    font-size: 18px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    display: none;
}
.icon-list{
    margin-top: 25px;
	margin-bottom: 30px;
}
.icon-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 34px;
    font-weight: 500;
}
.icon-list li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 100%;
    background-color: #1a73e8;
    color: #fff; 
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: -2px;
}

.icon-list li:hover i{
    background-color:var(--secondary-color);
    color: #fff; 
}
.full-section-img {
    width: 100%;
    height: 100%;
}
.full-section-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.left-full-section-content {
    max-width: 700px;
    margin-left: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 50px;
	padding-left: 25px;
}
.right-full-section-content {
    max-width: 640px;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
	padding-right: 25px;
}
.appointment-section .right-full-section-content {
    padding-top: 80px;
    padding-bottom: 80px;
}
.max-width-title {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}
.pattern-layer-section {
    position: relative;
	z-index: 0;
}
.pattern-layer-section .pattern-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 698px;
    height: 877px;
    background-repeat: no-repeat;
    z-index: -1;
}
.pattern-layer-section .pattern-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 661px;
    height: 560px;
    background-repeat: no-repeat;
	z-index: -1;
}
.counter-section {
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.counter-item {
    background:rgb(61 64 165);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
	padding-bottom: 0;
}
.counter-icon {
    font-size: 45px;
    color: #fff;
    margin-bottom: 10px;
}
.counter-item h4 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}
.counter-item p {
    font-size: 20px;
    color: #fff;
}
.counter-item .feature-small-content {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
}
.image-bg-column {
    background-size: cover;
    background-position: center center;
}
.appointment-section .shape-left{
    display: none;
}


.shape-left {
    position: absolute;
    bottom: 0;
    right: calc(100% - 1px);
    height: 100%;
    width: 200px;
    text-align: right;
    z-index: 1;
}
.form-control {
    background-color: transparent;
    border: 1px solid #cfcfcf;
    padding: 10px 20px;
    outline: none !important;
    box-shadow: none !important;
    height: auto;
    font-family: var(--primary-font-family);
    color: #000;
    font-weight: 500;
    font-size: 12px;
}
select{
        background-color: transparent;
    border: 1px solid #cfcfcf;
    padding: 10px 20px;
    outline: none !important;
    box-shadow: none !important;
    height: auto;
    font-family: var(--primary-font-family);
    color: #000;
    font-weight: 500;
    font-size: 12px;
    width: 100%;
}
.form-field label {
    font-size: 14px;
    color: #000;
    padding-bottom: 5px;
    font-weight: 600;
}

.form-floating, .form-field {
    position: relative;
    margin-bottom: 20px;
}
.form-floating>.form-control, .form-floating>label {
    padding: 14px 20px;
}
.form-control:focus, .form-floating>.form-control:not(:placeholder-shown){
	border-color:var(--primary-color);
}
.form-floating>.form-control, .form-floating>.form-select {
    height: auto;
    line-height: normal;
}
.form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 14px;
    padding-bottom: 14px;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: 1;
    transform: scale(.85) translateY(-11px) translateX(8px);
    -webkit-transform: scale(.85) translateY(-11px) translateX(8px);
    -moz-transform: scale(.85) translateY(-11px) translateX(8px);
    -ms-transform: scale(.85) translateY(-11px) translateX(8px);
    padding: 0 10px;
    height: auto;
    background: #fff;
}
.form-submit .btn {
    padding-right: 25px;
}
.contact-form .form-control:focus{
    border-color: #dce6f5;
}
.input-group-text {
    border-color: #dce6f5;
    background: #dce6f5;
    width: 50px;
    text-align: center;
    -webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	font-size: 18px;
}
.input-group {
    flex-wrap: nowrap;
}
.wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
}
.wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-not-valid {
    border-color: #000000 !important;
}
.wpcf7-response-output {
    text-align: center;
        padding: 10px !important;
    margin: 10px 0 !important;
}
.contact-form textarea {
    height: 150px !important;
}
.contact-form  .input-group p {
    width: 100%;
}
.contact-form  label {
    font-size: 14px;
    color: #000;
}
.contact-form p{
    margin-bottom: 0px;
}
.contact-form  .input-group{
    margin-bottom: 15px;
}
.contact-form .form-submit {
    text-align: center;
}
.contact-form .form-submit .btn {
    width: 100%;
    max-width: 300px;
}

.contact-form .form-control {
    padding: 14px 20px;
}


.skill-bar {
    position: relative;
    display: block;
	padding-left: 130px;
	min-height: 60px;
    padding-right: 20px;
}
.skill-bar .progress-count {
    font-size: 50px;
    color: #fff;
    font-weight: 800;
    position: absolute;
    left: 0;
}
.skill-bar .progress-title {
    color: #fff;
    font-weight: 600;
	margin-bottom: 20px;
    display: block;
}
.progress-content-outter {
    position: relative;
    display: block;
    height: 5px;
    width: 100%;
    background: rgb(255 255 255 / 44%);
    border-radius: 0;
}
.progress-content-outter .progress-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    background: var(--secondary-color);
}
.review-slider {
    padding-left: 35px;
    padding-right: 35px;
}
.review-box {
    text-align: center;
	padding: 0 20px;
}
.review-box-image {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin-bottom: 26px;
}
.review-box-image img {
    display: block;
    width: 140px;
    padding: 8px;
    border: 2px solid #2e3192;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
}
.review-box-image .quote-icon {
    position: absolute;
    top: 0;
    right: -3px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
        border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    color: #fff;
}
.review-box h5 {
    font-weight: 600;
    font-size: 20px;
}
.review-box h6 {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #ff7900;
}
.page-template-doctors-template .team-box{
    margin: 0px !important;
}
.single-our_team  .team-box{
        margin: 0px !important;
}
.single-our_team .team-box{
    margin: 0px !important;
}

.team-box {
    position: relative;
    display: block;
	margin: 0 25px;
	padding-bottom: 30px;
}
.team-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;

}
.team-box .image-box a {
    display: block;
}
.team-box .image-box img {
    transition: all 500ms 
ease;
    -webkit-transition: all 500ms 
ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    height: 300px;
    object-fit: cover;
    width: 100%;
    object-position: top;
}
.team-box .team-content {
    position: relative;
    display: block;
    margin: 0 0px;
    position: relative;
    padding: 15px;
    border-radius: 0px 0px 15px 15px;
    -webkit-border-radius: 0px 0px 15px 15px;
    -moz-border-radius: 0px 0px 15px 15px;
    -ms-border-radius: 0px 0px 15px 15px;
    /* margin-top: -67px; */
    z-index: 1;
    box-shadow: 0 10px 30px #e7e8ea;
    -webkit-box-shadow: 0 10px 30px #e7e8ea;
    -moz-box-shadow: 0 10px 30px #e7e8ea;
    -ms-box-shadow: 0 10px 30px #e7e8ea;
    text-align: center;
}
.team-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #ff7900;
    font-size: 16px;
}
.team-content span {
    text-transform: capitalize;
    font-size: 14px;
        font-weight: 600;
}
.team-content .social-icons {
    margin-top: 20px;
}


.doctor-details h5 {
    font-size: 18px;
    color: #ff7900;
}

.doctor_fullinfo h4 {
    font-size: 20px;
    color: #ff7900;
    border-bottom: 1px solid;
    display: inline-block;
    padding-bottom: 8px;
}
figure.doctor-image img {
    border-radius: 10px !important;
}


.social-icons li {
    display: inline-block;
    margin: 0 3px;
}
.social-icons li a {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #ff7900;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    font-size: 16px;
	color:#ff7900
}
.social-icons li a:hover {
    border-color: #ff7900;
    background:#ff7900;
	color:#fff;
}
.team-box:hover .image-box img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}
.blog-grid {
    background: #fff;
    box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -webkit-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    position: relative;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
	overflow: hidden;
}
.blog-grid .image-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-grid .image-box img {
    width: 100%;
    height: 280px;
    vertical-align: middle;
    object-fit: cover;
    object-position: center center;
}
.blog-grid:hover .image-box img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
}
.blog-grid .image-box a {
    display: block;
}
.blog-grid-content {
    padding: 25px;
	padding-bottom:35px;
	position:relative;
}
.blog-grid-content h3 {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}     
.post-info {
    margin-bottom: 15px;
}
.post-info a{
	color: var(--text-color);
}
.blog-grid-content .post-date {
    position: absolute;
    display: inline-block;
    right: 30px;
    top: -45px;
    width: 90px;
    height: 90px;
    background: var(--light-bg-color);
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border: 5px solid #fff;
    padding: 13px 0 10px 0;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    margin-top: -45px;
    margin-bottom: 23px;
}
.blog-grid-content .post-date h3 {
    display: block;
    font-size: 32px;
    line-height: 32px;
    font-weight: 800;
	color:#000;
}
.blog-grid-content .post-date h3 span {
    display: block;
    font-size: 15px;
    line-height: 16px;
    font-weight: 600;
    color: #142441;
    text-transform: uppercase;
    margin-top: 4px;
	color:var(--primary-color);
}
.logo-slider .item {
    padding: 0 15px;
}
.logo-item {
    display: block;
    padding: 25px;
    background: #ffffff;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    margin-top: 10px;
    box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 33%);
    -webkit-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 33%);
    -moz-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    -ms-box-shadow: 0px 0px 16px 0px rgb(205 190 255 / 20%);
    border: 1px solid #222;
    text-align: center;
    margin: 0 auto;
    height: 100%;
}
.logo-item img {
    width: 100px !important;
    height: 100%;
    margin: 0 auto;
}


.logo-item::before, .logo-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.logo-item::before {
    left: 0;
    top: 0;
    border-left: 3px solid #ff7900;
    border-top: 3px solid #ff7900;
}
.logo-item::after {
    right: 0;
    bottom: 0;
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}
.logo-item:hover::after, .logo-item:hover::before {
    width: 40px;
    height: 40px;
    opacity: 1;
    visibility: visible;
}
.logo-item:hover img {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.go-top {
    position: fixed;
    width: 40px;
    height: 40px;
    right: 25px;
    bottom: 25px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor: pointer;
	transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
}
.go-top:hover {
    background: var(--secondary-color);
}
.go-top.active {
    opacity: 1;
    visibility: visible;
}
.site-footer {
/*       background: linear-gradient(90deg, #0e0a34 0, #003a88 100%);*/
    position: relative;
    background: #000;
}
/*footer.site-footer:before {
    position: absolute;
    content: "";
    background: url(https://demo.abwebexperts.com/sunlifehospital/wp-content/uploads/2025/09/building.webp);
    height: 40%;
    width: 100%;
    z-index: 9;
    opacity: 0.6;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 0;
}*/
.footer-logo img {
    /* filter: invert(1); */
    width: 160px;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-social ul li {
    display: inline-block;
	margin-right: 4px;
}	
.footer-social li a {
    display: block;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 37px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    background-color: #3a3a3a;
    text-align: center;
    font-size: 16px;
}
.footer-social li a:hover {
    color: #ffffff;
    background-color: #ff7900;
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.site-footer p, .site-footer a {
    color: #ddd;
    font-size: 15px;
}
.site-footer h2 {
    font-size: 18px;
    color: #ffc905;
    margin-bottom: 15px;
}
/*.site-footer h2:after {
    content: '';
    position: relative;
    display: block;
    width: 60px;
    height: 3px;
    background: #000;
    margin-top: 8px;
}*/
.footer-links li {
    margin-bottom: 15px;
}
.footer-links li a {
    position: relative;
    transition: 0.6s;
}
.footer-links li a:before {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-right: 12px;
    font-size: 14px;
	color: #ddd;
    display: none;
    position: absolute;
    left: 0;
}
.footer-links li a:hover:before{
    display: block;
    padding-left: 0px;
    left: 0;
}
.footer-links li a:hover {
    color:var(--secondary-color);
    padding-left: 20px;
}
.footer-map iframe {
    width: 100%;
    height: 240px;
/*	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);*/
}
.footer-map ul li {
    margin-bottom: 15px;
    display: flex;
    line-height: 28px;
}
.footer-map ul li i {
    margin-right: 10px;
    position: relative;
    top: 6px;
    color: #ddd;
}


.copyright-area {
    background: #0c0c0c;
    padding: 10px 0;
    font-size: 16px;
}
.copyright-area p, .copyright-area a {
    color: #ddd;
    font-size: 12px;
    text-align: left;
}
.copyright-area a:hover{
    color: var(--secondary-color);
}
.copyright-area svg {
  margin:0 2px;
}
.copyright-area #heart {
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dashoffset: 400;
  stroke-dasharray: 400;
  animation: stroke 3s ease-in-out infinite alternate;
  -webkit-animation: stroke 3s ease-in-out infinite alternate;
  -moz-animation: stroke 3s ease-in-out infinite alternate;
  -ms-animation: stroke 3s ease-in-out infinite alternate;
  stroke: red;
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
@-ms-keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
.newsletter-section {
    border-bottom: 1px solid #272a35;
    margin-bottom: 60px;
    padding-bottom: 50px;
}
.newsletter-section .title {
    color: #fff;
    font-weight: bold;
}
.newsletter-form input {
    display: block;
    width: 100%;
    height: 70px;
    line-height: initial;
    border: none;
    background-color: #ffffff;
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    color: #121521;
    outline: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 165px;
    padding-left: 30px;
    font-size: 18px;
}
.newsletter-form form{
    position: relative;
}
.newsletter-form button {
    position: absolute;
    right: 7.5px;
    top: 7.5px;
}
.page-title-banner {
    min-height: 400px;
    position: relative;
    padding: 50px 0;
	z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-title-banner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #101010;
    z-index: -1;
    opacity: .5;
}
.page-title-banner h1 {
    color: #fff;
        font-size: 26px;
    font-weight: 600;
}
ol.breadcrumb li.breadcrumb-item{
          font-size: 18px;
    font-weight: 400;  
}
.breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-item a {
    color: var(--secondary-color);
}
.about-item-section .left-align-icon {
    border: 1px solid #000;
    padding: 22px;
    height: 98%;
}

.left-align-icon .icon-img {
    width: 50px;
    margin-right: 20px;
}
.left-small-content h5 {
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 18px;
}
.skills-bar {
	margin-bottom: 40px;
	margin-right: 20px;
}

.skills-bar .progress-title-holder {
	position: relative;
	margin-bottom:0px;
}

.skills-bar .progress-title {
	font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    top: -10px;
    text-transform: capitalize;
}

.skills-bar .progress-number-wrapper {
	width: 100%;
	z-index: 10;
	font-size: 11px;
	line-height: 24px;
	height: 24px;
	letter-spacing: 0;
	font-weight: 600;
	font-style: normal;
	text-transform: none;
	color: #fff;
	margin-bottom: 0
}

.skills-bar .progress-number-mark {
	margin-bottom: 4px;
	border-radius: 3px;
	background-color: transparent;
	padding: 0 8px;
	position: absolute;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-bottom: 0!important;
	top: -7px;
}

.skills-bar .down-arrow {
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 3px solid transparent;
	position: absolute;
	left: 50%;
	top: 100%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	color: #001dff
}

.skills-bar .progress-content-outter {
	height: 6px;
	background-color: #dcdde6;
	border-radius: 20px
}

.skills-bar .progress-content {
	height: 6px;
	background: var(--secondary-color);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	width: 0%
}
.skills-bar .percent {
	margin-bottom: 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: bold;
}

.skills-bar .progress-title {
	margin-bottom: 0;
	text-transform: capitalize;
    font-weight: bold;
}
.single-service-section img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
	margin-bottom:25px;
    width: 100%;
}
.single-service-content ul {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
	margin: 30px 0 20px;
}
.single-service-content ul li {
    width: 45%;
    position: relative;
    margin-bottom: 20px;
	padding-left: 35px;
}
.single-service-content ul li:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -webkit-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -moz-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    -ms-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    background-color: rgb(244 87 46 / 26%);
    color: var(--secondary-color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: -2px;
}
.single-service-content h1, .single-service-content h2, .single-service-content h3,.single-service-content h4, .single-service-content h5, .single-service-content h6 {
    clear: both;
}
.widget-area .widget {
    margin-top: 35px;
    -webkit-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    -moz-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    -ms-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 8%);
    background-color: #ffffff;
    padding: 25px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.widget-area .widget:first-child {
    margin-top: 0;
}
.widget-area .widget .widget-title {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    font-weight: bold;
    font-size: 20px;
}
.widget-area .widget .widget-title::before {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
}
.widget-area .widget_services_list ul li a {
    display: block;
    position: relative;
    border-bottom: 1px solid #eeeeee;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 35px;
    color: #5d6576;
    z-index: 1;
    font-weight: 500;
    font-size: 16px;
}
.widget-area .widget_services_list ul li a i {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.widget-area .widget_services_list ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    opacity: 0;
    visibility: hidden;
}
.widget-area .widget_services_list ul li a.active::before, .widget-area .widget_services_list ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 5px;
}
.widget-area .widget_services_list ul li a.active, .widget-area .widget_services_list ul li a:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding-left: 20px;
}
.widget_form .row>div {
    width: 100%;
}
.widget_form .form-control {
    padding: 12px 20px;
    background-color: #f6f6f6;
}
.widget_form .form-field .ajax-loader {
    position: absolute;
    right: 0;
    top: 15px;
}
.widget_form .form-field {
    position: relative;
    margin-bottom: 15px;
}
.widget_form .form-submit .btn{
	width:100%;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.pagination-area {
    margin-top: 20px;
    text-align: center;
}
.pagination-area .page-numbers {
    width: 40px;
    height: 40px;
    margin: 0 2px;
    display: inline-block;
    background-color: #ffffff;
    line-height: 40px;
    color: #121521;
    -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -ms-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
    background: var(--secondary-color);
    color: #ffffff;
}
.entry-meta {
    margin-bottom: 20px;
}
.entry-meta li {
    display: inline-block;
    margin-right: 20px;
	position: relative;
}
.entry-meta li::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -15px;
    width: 8px;
    height: 2px;
    background: var(--secondary-color);
}
.entry-meta li:last-child::before {
    display:none;
}
.entry-meta li span {
    color: #000;
}
.widget-area .widget_fovia_posts_thumb .item {
    overflow: hidden;
    margin-bottom: 20px;
}
.widget-area .widget_fovia_posts_thumb .item:last-child {
    margin-bottom: 0px;
}
.widget-area .widget_fovia_posts_thumb .item .thumb {
    float: left;
    height: 80px;
    overflow: hidden;
    position: relative;
    width: 80px;
    margin-right: 15px;
}
.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.widget-area .widget_fovia_posts_thumb .item .info {
    overflow: hidden;
}
.widget-area .widget_fovia_posts_thumb .item .info time {
    display: block;
    color: #7d7d7d;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}
.widget-area .widget_fovia_posts_thumb .item .info h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.widget-area .widget_fovia_posts_thumb .item  .info a{
    color: #000;
}
.contact-map iframe {
    width: 100% !important;
    height: 500px !important;
    vertical-align: middle;
/*	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);*/
}
.container-bg-box {
    position: relative;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 69px 30px 52px 100px;
    margin-bottom: -105px;
    z-index: 1;
}
.contact-link-item {
    position: relative;
    display: inline-block;
    padding-left: 95px;
}
.contact-link-item .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    line-height: 73px;
    text-align: center;
    font-size: 30px;
    background: #fff;
    border-radius: 50%;
	color:var(--secondary-color);
}
.contact-link-item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}
.contact-link-item p, .contact-link-item a {
    color: #fff;
}
.contact-link-item a:hover {
    color: #fff;
}
.page-404 img {
    max-width: 80%;
}
.archive-subtitle {
    margin-bottom: 15px;
}


.woocommerce ul.products li.product .onsale {
    display: none;
}
.woocommerce ul.products li.product .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
        padding: 15px 20px;
}
.woocommerce ul.products li.product .price del {
        font-size: 18px;
        color: #333;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    border: 1px solid #ccc;
        padding-bottom: 30px;
}

ul.products.columns-4 h2.woocommerce-loop-product__title {
    padding: 0px 20px !important;
}

.woocommerce ul.products li.product .button {
    background: #ff7900;
    color: #fff;
    margin: 0 auto;
    display: table;
    padding: 10px 30px;
    font-weight: 400;
}
.woocommerce ul.products li.product .button:hover
{
    background: #ffc905;
    color: #000;
}.woocommerce-message {
    border-top-color: #8fae1b;
    display: none;
}


.single-product span.woocommerce-Price-amount.amount {
    color: #000 !important;
}

.single-product-content h2 {
    display: none;
}
.woocommerce div.product .product_title {
    font-size: 28px;
    font-weight: 600;
}

.single-product .summary.entry-summary p.price {
    font-size: 16px !important;
}
.single-product  span.posted_in {
    display: none;
}
.woocommerce span.onsale {
    display: none;
}.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0px solid #cfc8d8;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: 0px solid #cfc8d8;
}.woocommerce div.product .woocommerce-tabs ul.tabs li {
    padding: 0 0em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 0 0 5px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #ff7900;
    text-shadow: inherit;
    border-bottom: 1px solid;
}.woocommerce div.product form.cart div.quantity {
    display: none;
}
.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    background: #ff7900;
    font-weight: 400;
    padding: 14px 40px;
    margin-top: 20px;
}
section.related.products{
    display: none !important;
}






@media only screen and (min-width: 1200px) {
.site-header .navbar-nav>li {
    margin-left: 25px;
}	
}

@media only screen and (max-width: 1199px) {
.main-banner {
    height: 650px;
}
.main-banner-content {
    max-width: 650px;
}
.main-banner-content h1 {
    font-size: 50px;
}
h1, .h1{
	font-size:46px;
}
h2, .h2{
	font-size:40px;
}
h3, .h3{
	font-size:36px;
}
h4, .h4{
	font-size:28px;
}
h5, .h5{
	font-size:24px;
}
h6, .h6{
	font-size:20px;
}	
.feature-box {
    padding: 25px;
}
.team-box {
    margin: 0 20px;
}
.page-template-doctors-template  .team-box .team-content {
        margin: 0px !important;
}
.single-our_team  .team-box .team-content {
        margin: 0px !important;
}
.team-box .team-content {
    margin: 0 20px;
    padding: 32px 20px 40px 20px;
}
.site-footer p, .site-footer a {
    word-break: break-all;
}
section.cta-sec {
    padding: 60px 0px 70px 0px;
}
.usp-sec {
    padding: 30px 10px;
}
.about-sec h2 {
    line-height: 48px;
    font-size: 36px;
}
section.cta-sec h2 {
    font-size: 32px;
}
.title {
    font-size: 36px;
}


}


@media only screen and (max-width: 991px) {
h1, .h1{
	font-size:40px;
}
h2, .h2{
	font-size:33px;
}
h3, .h3{
	font-size:30px;
}
h4, .h4{
	font-size:26px;
}
h5, .h5{
	font-size:24px;
}
h6, .h6{
	font-size:20px;
}
.pb-7 {
    padding-bottom: 60px;
}

.pt-7 {
    padding-top: 60px;
}
.site-header {
    padding: 0;
}
.site-header .navbar {
    padding: 15px 0 !important;
}
.navbar-collapse {
    position: absolute;
    background: var(--primary-color);
    left: 0;
    right: 0;
    top: 100%;
}
.site-header .navbar-nav>li {
    position: relative;
    margin-left: 0px;
    display: block;
    width: 100%;
	border-bottom: 1px solid rgb(220 230 245 / 25%);
}
.site-header .navbar-nav>li:last-child{
	border:none;
}
.site-header .navbar-nav>li>a {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 25px;
    padding-right: 25px;
	color: #fff;
}
.site-header .navbar-nav>li{
	color: #fff;
}
.site-header .navbar-nav>li .dropdown-icon {
    display: inline-block;
    position: absolute;
    right: 15px;
    font-size: 24px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    top: 8px;
}
.site-header li.menu-btn {
    padding: 20px 25px;
}
.site-header li.menu-btn a {
    color: #fff;
	text-align: center;
	margin:0;
}
.site-header .navbar-nav .menu-item-has-children>a:after{
	display:none;
}
.site-header li.menu-btn a {
    background: var(--secondary-color);
}
.site-header .navbar-nav>li .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 0;
    background: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    padding: 0;
    width: 100%;
    margin: 0;
    border: none;
	display:none;
	-webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    transition: none;
}
.site-header .navbar-nav>li .sub-menu li {
    padding: 0;
	border-bottom: 1px solid rgb(220 230 245 / 25%);
	color:#fff;
}
.site-header .navbar-nav>li .sub-menu li:last-child{
	border:none;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 35px;
    padding-right: 25px;
    color: #fff;
	font-size: 16px;
}
.site-header .navbar-nav>li .sub-menu li a:hover {
    color: #fff;
}
.site-header .navbar-nav>li.current-menu-item>a, .site-header .navbar-nav>li .sub-menu li.current-menu-item>a {
    color: var(--secondary-color);
}
.site-header ul li .dropdown-icon.active:before {
    content: '\f068';
}
.main-banner-content h1 {
    font-size: 42px;
}
.main-banner-content {
    max-width: 650px;
    padding-right: 50px;
}

.left-full-section-content {
    max-width: 100%;
    margin-left: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 15px;
    padding-left: 15px;
}
.image-bg-column {
    height: 600px;
}
.appointment-section .right-full-section-content {
    padding-top: 60px;
    padding-bottom: 60px;
}
.right-full-section-content {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.pattern-layer-section .pattern-1 {
    width: 498px;
    height: 377px;
}
.pattern-layer-section .pattern-2 {
    width: 460px;
    height: 490px;
}
.skill-bar {
    padding-left: 130px;
    min-height: 60px;
    max-width: 400px;
    margin: 0 auto;
    padding-right: 20px;
}
.counter-section .row>div+div {
    margin-top: 40px;
}
.owl-nav button.owl-next {
    right: -5px;
    left: auto;
}
.owl-nav button.owl-prev {
    left: -5px;
}
.home-slider .owl-nav button {
    right: 15px;
	left:auto;
}
.owl-dots {
    margin-top: 10px;
}
.form-control {
    padding: 16px 20px;
}
.blog-grid-content .post-date {
    right: 15px;
    top: -25px;
    width: 80px;
    height: 80px;
    border-width: 4px;
}
.blog-grid-content {
    padding: 20px;
	padding-bottom: 30px;
}
.post-info {
    font-size: 14px;
}
.left-align-icon .icon-img {
    width: 70px;
}
.left-align-icon .left-small-content {
    width: calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -ms-calc(100% - 90px);
}
.left-small-content h5 {	
    font-size: 20px;
}
.single-service-content ul li {
    width: 100%;
}
.container-bg-box {
    position: relative;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 50px 30px 50px 30px;
    margin-bottom: -100px;
    z-index: 1;
}
.contact-link-item .icon-box {
    width: 60px;
    height: 60px;
    line-height: 64px;
    font-size: 25px;
}
.contact-link-item {
    padding-left: 75px;
}
.contact-link-item h4 {
    font-size: 18px;
}
.contact-link-item p, .contact-link-item a {
    font-size: 16px;
}

    .main-banner {
        height: 500px;
    }
.about_img img {
    width: 100%;
}

section.about-section.about-sec {
    padding-top: 0px;
}

.content-box .img-box {
    width: 200px;
}

    section.cta-sec {
        padding: 60px 0px 0px 0px;
    }

.appointment-section .row.m-0 {
    flex-direction: column-reverse;
}.main-banner-content h1 {
        font-size: 36px;
        line-height: 56px;
    }

.about-hospital .round-img img {
    width: 100%;
}.about- {
    padding-left: 20px;
    margin-top: 30px;
}    .left-align-icon .left-small-content {
        width: calc(100% - 10px);
        width: -webkit-calc(100% - 10px);
        width: -moz-calc(100% - 10px);
        width: -ms-calc(100% - 10px);
    }

}

@media only screen and (max-width: 767px) {
body {
    font-size: 16px;
}
    p {
        line-height: 28px;
        font-size: 15px;
    }
h1, .h1{
	font-size:30px;
}
h2, .h2{
	font-size:28px;
}
h3, .h3{
	font-size:26px;
}
h4, .h4{
	font-size:24px;
}
h5, .h5{
	font-size:22px;
}
h6, .h6{
	font-size:18px;
}
.btn {
    font-size: 14px;
}
.main-banner-content .btn {
    min-width: 240px;
}
.main-banner-content span, .subtitle {
    font-size: 14px;
}
.site-header .navbar-nav>li>a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.site-header .navbar-nav>li .dropdown-icon {
    right: 5px;
}
.site-header .navbar-nav>li .sub-menu li a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 15px;
}
.main-banner-content h1 {
    font-size: 30px;
}
.btn {
    padding: 14px 50px 13.5px 20px;
}
.home-slider .container {
    padding: 0 15px;
}
.home-slider .owl-nav button {
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 42px !important;
    font-size: 24px !important;
}
.home-slider .owl-nav button.owl-prev {
    margin-top: 25px;
}
.home-slider .owl-nav button.owl-next {
    margin-top: 25px;
}
.team-box {
    margin: 0 10px;
}
.team-content h5 {
    font-size: 20px;
}
.team-content span {
    font-size: 16px;
}
.skill-bar .progress-count {
    font-size: 40px;
}
.skill-bar {
    padding-left: 110px;
}
.newsletter-form input {
    height: 60px;
    padding-left: 20px;
    font-size: 16px;
}
.newsletter-form button {
    right: 6.5px;
    top: 6.5px;
}
.site-footer h2, .footer-logo {
    margin-bottom: 20px;
	    font-size: 22px;
}
.copyright-area p {
    max-width: 400px;
    margin: 0 auto;
}
.go-top {
    right: 15px;
    bottom: 15px;
}
.site-header .navbar {
    padding: 10px 0 !important;
}
.main-banner {
    height: 450px;
}
.owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 24px !important;
    line-height: 42px !important;
}
.page-title-banner {
    min-height: 200px;
}
.left-align-icon {
    margin: 0 auto;
}
.about-item-section .row>div+div {
    margin-top: 40px;
}
.skills-bar .progress-title {
    font-size: 18px;
}
.widget-area .widget {
    padding: 20px;
}
.alignright, .alignleft {
    float: none;
    margin: 0;
}
.single-service-section img {
    margin-bottom: 25px;
}
.single-service-content ul {
    margin: 20px 0 10px;
}
.blog-grid-content .post-date {
    top: -32px;
}
.blog-grid-content .post-date h3 {
    font-size: 28px;
}
.container-bg-box {
    margin-bottom: 60px;
}
.contact-link-item {
    margin-bottom: 30px;
	padding-left: 65px;
	max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.contact-link-item:last-child {
    margin-bottom: 0px;
}
.contact-link-item .icon-box {
    width: 50px;
    height: 50px;
    line-height: 54px;
    font-size: 22px;
}
.contact-map iframe {
    height: 350px !important; 
}
.cta-sec .btn-group.justify-content-center {
    display: block;
}section.cta-sec a {
    font-size: 16px;
    width: 90%;
    margin-bottom: 10px;
}
}




@media only screen and (max-width: 520px) {
  .usp .col-lg-3 {
    border-right: 0px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
.about-sec h2 {
        line-height: 36px;
        font-size: 26px;
    }
  section.about-section.about-sec p {
    line-height: 36px;
  }

  .content-box .img-box {
    width: 150px;
  }
  .title {
        font-size: 26px;
  }
      section.cta-sec h2 {
        font-size: 26px;
    }


  .image-bg-column {
    height: 270px;
  }
  .copyright-area .text-end {
    text-align: left !important;
    margin-top: 10px;
  }
  section.cta-sec p {
    margin-bottom: 20px;
    line-height: 32px;
}.Emergency-btn.updown {
    animation: auto;
}
section.about-section.about-sec .updown {
    animation: auto;
}

.top-header ul li a {
    padding: 10px 10px;
    font-size: 14px;
}
.top-header ul {
    justify-content: center;
}

section.about-section.pt-7.pb-7 {
    padding-bottom: 0px;
}
    .page-title-banner {
        min-height: 200px;
    }
.page-title-banner h1 {
    font-size: 21px;
}
ol.breadcrumb li.breadcrumb-item {
    font-size: 15px;
}
.doctor-details h2 {
    font-size: 22px;
}.doctor-details h5 {
    font-size: 16px;
    line-height: 28px;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 100% !important;
}
}





@media only screen and (max-width: 480px) {
.review-box {
    padding: 0;
}	
.logo-slider .item {
    padding: 0 10px;
}
.pt-7 {
    padding-top: 50px;
}
.pb-7 {
    padding-bottom: 50px;
}
.blog-grid .image-box img {
    height: 220px;
}.form-control {
        padding: 10px 15px;
    }
}