/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Reclin - Addiction Recovery & Rehabilitation Center HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Our Feature css
09. What We Do css
10. How It Work css
11. Our Programs css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css 
18. Services Page css 
19. Service Single css 
20. Blog Archive css 
21. Blog Single css 
22. Case Study Page css
23. Case Study Single css
24. Team Page css 
25. Team Single css 
26. Testimonials Page css 
27. Image Gallery css 
28. Video Gallery css 
29. FAQs Page css 
30. Contact Us Page css 
31. Book Appointment css
32. 404 Error Page css 
33. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #052d54;
	--secondary-color			: #E9F2DF;
	--accent-secondary-color	: #CE9E6E33;
	--bg-color					: #FFFDFA;
	--text-color				: #7D898D;
	--accent-color				: #dfb011;
	--white-color				: #FFFFFF;
	--divider-color				: #26505E1A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Sora", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--accent-secondary-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
3	line-height: 1.3em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1360px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	border-radius: 100px;
	padding: 16px 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default::before{
	display: none;
	content: '';
	position: absolute;
    top: 50%;
    right: 5px;
    width: 40px;
    height: 40px;
	background-color: var(--primary-color);
    background-image: url('../images/arrow-white.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
	border-radius: 50%;
    transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--accent-color);
}

.btn-default::after{ 
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

.btn-default.btn-highlighted{
	background: var(--primary-color);
}

.btn-default.btn-highlighted:hover{
	background: transparent;
	color: var(--primary-color);
}

.btn-default.btn-highlighted::before{
	background-color: var(--accent-color);
}

.btn-default.btn-highlighted:hover::before{
	background-color: var(--accent-color);
}

.btn-default.btn-highlighted::after{
	background-color: var(--bg-color);
}

.btn-default.btn-dark:hover{
	background: transparent;
	color: var(--primary-color);
}

.btn-default.btn-dark::after{
	background-color: var(--secondary-color);
}

.readmore-btn{
	position: relative;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	background-image: url('../images/arrow-accent.png');
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	transform: translate(0, -50%);
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before{
	transform: translate(3px, -50%);
	filter: brightness(0) invert(0);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.bg-section{
	background-color: var(--secondary-color);
}

.dark-section{
	background-color: var(--primary-color);
}

.bg-section{
	width: 100%;
	max-width: 1800px;
	border-radius: 20px;
	margin: 0 auto;
}

.section-row{
	margin-bottom: 30px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

.section-title-content p:last-child{
	margin-bottom: 0;	
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	position: relative;
	display: inline-block;
	font-size: 14px;
    font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 15px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.section-title h1{
	font-size: 50px;
    line-height: 55px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 0;
	cursor: none;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
	color: #626262;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	z-index: 100;
	height: auto !important;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	background: transparent;
	width: 100%;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
    transform: translateY(0);
	background: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-top: none;
	border-radius: 0 0 20px 20px;
}
header.main-header .header-sticky.active .navbar{padding:0;}

.navbar{
	padding: 11px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: left;
    margin: 0 10px 0 80px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 18px 18px !important;
	color: #052d54;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	border-bottom: transparent solid 2px;
	
}
.active-menu a{color: #e4981a !important; border-bottom: #e4981a solid 2px !important;}

.active-menu ul li a{color: #052d54 !important; border-bottom: #e8e8e8 solid 1px !important;}


.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: #dfb001;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	min-width: 300px;
	width: auto;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	box-shadow: 0px 0px 30px 5px rgba(0,0,0,.08);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 280px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}
.main-menu ul ul li a::before {
  content: '\f105';
  line-height: 20px;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  color: #d3b232;
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 13px;
}
.main-menu ul ul li:last-child a{border-bottom: 0;}
.main-menu ul ul li a{
	color: #052d54;
	padding: 13px 15px 13px 35px !important;
	transition: all 0.3s ease-in-out;
	border-bottom: #e8e8e8 solid 1px;
	font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: #fff;
    background-color: var(--accent-color);
    
}

.main-menu ul li.highlighted-menu{
    /*display: none;*/
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
    height: 40px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: #052d54;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 25px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: #ffd322;
}
.login-fotter {margin: 15px 0 0 0;}
.login-fotter a{display: none;border-radius: 4px;}

.top-register-btn i {margin:0 8px 0 0;color: #e4981a;}
.top-register-btn{background-color: var(--primary-color); padding: 9px 20px; color:#fff;}

.top-register-btn:hover{background-color: #e4981a; }

.calling strong{color: #5e5e5e;font-weight: 400;}
.calling a{font-size: 16px; color: #e4981a;font-weight: bold;}
.calling i {margin-right: 10px;font-size: 15px;color: #e8b053;display: inline-block;}
.calling a:hover{text-decoration: underline;color: #052d54;}
.toptotop{background-color: #f0f0f0; padding: 2px 0;}
.header-top .top-left ul {margin: 0; padding: 0;}
.header-top .top-left ul li:first-child {border: 0;}
.header-top .top-left ul li {
	display: block;
  margin-left: 10px;
  border-left: #d4d4d4 solid 1px;
  padding: 5px 0 5px 15px;
  font-size: 15px;
  float: right;
}
.header-top .top-left ul li span {
  color: #052d54;
}
.header-top .top-left ul li span i {
  margin-right: 10px; color: #d7b01a; font-size: 18px;
}
.header-top .top-right {
  float: right;
}
.header-area-v3 .header-top .top-right ul li {
  display: inline-block;
  margin-right: 15px;
}
.header-area-v3 .header-top .top-right ul li:last-child {
  margin-right: 0;
}
.header-top .top-right .social-link {margin: 0px;
}
.header-top .top-right ul.social-link li { list-style: none;
  margin-left: 0px; float: left;
}
.header-top .top-right ul.social-link li a {
  width: 31px;
  height: 30px;
  line-height: 25px;
  border: 0px solid #cecece;
  display: block;
  text-align: center;
  border-radius: 50%;
  color: #052d54;
	background-color: transparent;
}
.header-top .top-right ul.social-link li a:hover, .header-top .top-right ul.social-link li a:focus {
  background-color: transparent;
  border-color: #ca080f;
  color: #fff;
}
.header-top .top-right ul.social-link li a img{height: 15px;}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background-image: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 550px;
	align-content: end;
	padding: 80px 0 80px;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(38, 80, 94, 0) 27%, rgba(38, 80, 94, 0.9) 92.8%);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	min-height: 550px;
	align-content: end;
	padding: 80px 0 80px;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(38, 80, 94, 0) 27%, rgba(38, 80, 94, 0.9) 92.8%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-section{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero .container-fluid{
	position: relative;
	padding: 0;
	z-index: 2;
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.satisfy-client-box{
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.satisfy-client-images{
	display: inline-flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -18px;
	z-index: 1;
}

.satisfy-client-image:first-child{
	margin: 0;
}

.satisfy-client-image figure{
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.satisfy-client-image img{
    width: 100%;
	border-radius: 50%;
}

.satisfy-client-image.add-more{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more:hover{
	background: var(--primary-color);
}

.satisfy-client-image.add-more i{
	font-size: 20px;
	color: var(--white-color);
}

.satisfy-client-content{
    width: 48%;
}

.satisfy-client-content p{
	color: var(--white-color);
	margin: 0;
}

.satisfy-client-content p span{
	font-weight: 700;
	color: var(--accent-color);
}

.recovery-circle{
	text-align: right;
}

.recovery-circle a{
	display: inline-block;
	border-radius: 50%;
}

.recovery-circle a img{
	max-width: 220px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
    from{
        transform: rotate(0deg);
      }
    to{
        transform: rotate(360deg);
    }
}

.recovery-circle a:hover img{
	animation-play-state: paused;
}





.name-data-and-side{}
.name-data-and-side .section-title h2 {font-size: 28px; line-height: 40px;}


.facilities-slider-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.home-facilities-slider .facilities-button-next,
.home-facilities-slider .facilities-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.home-facilities-slider .facilities-button-next{
	margin-left: 15px;
}

.home-facilities-slider .facilities-button-next:hover,
.home-facilities-slider .facilities-button-prev:hover{
	background: var(--white-color);
}

.home-facilities-slider .facilities-button-next::before,
.home-facilities-slider .facilities-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.png") no-repeat center center;
    background-size: 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.home-facilities-slider .facilities-button-prev::before{
	transform: rotate(180deg);
}

.home-facilities-slider .facilities-button-next:hover:before,
.home-facilities-slider .facilities-button-prev:hover:before{
	filter: brightness(0) invert(0);
}


.video-slide{max-height: 626px;width: 100%;position: relative;}

 /* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: relative;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
	width: 100%;
	max-width: 1920px;
}

/* Add some content at the bottom of the video/page */
.content {
  position: absolute;
  bottom: 5%;
  text-align: right;
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
width: auto;
  font-size: 14px;
  border-radius: 25px;
  padding: 5px 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
} 

/* Page Section */

.page-section{padding: 40px 0;}
.page-section-content{}
.page-data-section{}
.page-data-section p {color: rgb(37, 41, 48); font-size: 18px; line-height: 24px; letter-spacing: -0.5px; text-align: justify;}
/*.page-data-section ul {margin:15px 15px 15px 30px; color: #222;}
.page-data-section ul li { list-style:square; line-height: 20px; margin: 0 0 7px 0; font-size: 15px;}
.page-data-section ul li i {  color:  #020a53;}*/

.page-data-section ul{font-size: 16px;padding: 15px 0;}
.page-data-section li {color: rgb(37, 41, 48);margin: 0 0 3px 0; list-style: none;font-weight: 500;line-height: 22px;}
.page-data-section li::before { color: #a57c00; content: "\f105";  font-family: "Font Awesome 5 Free"; font-size: 12px;  float: left; background-color: #f7f2e4;
border-radius: 50%;height: 20px;width: 20px;line-height: 20px;text-align: center;margin: 2px 10px 0px 0;font-weight: 600;}

.page-data-section  h1{font-size: 30px; margin: 6px auto; color: #171c28;letter-spacing: -0.7px;font-weight: 600;}
.page-data-section  h2{font-size: 26px; margin: 6px auto; color: #171c28;letter-spacing: -0.7px;font-weight: 600;}
.page-data-section  h3{font-size: 24px; margin: 6px auto; color: #171c28;letter-spacing: -0.7px;font-weight: 600;}
.page-data-section  h4{font-size: 20px; margin: 6px auto; color: #171c28;letter-spacing: -0.7px;font-weight: 600;}
.page-data-section  h5{font-size: 18px; margin: 6px auto; color: #171c28;letter-spacing: -0.7px;font-weight: 600;}

/* My Block Title */
.my-block-title p {margin: 0;font-size: 17px;line-height: 1em;font-weight: bold;color: var(--thm-base);text-transform: uppercase;letter-spacing: 0.15em;display: -webkit-box;display: flex;-webkit-box-align: center;align-items: center;}
.my-block-title p::before {content: "";width: 60px;height: 2px;background-color: rgb(221, 167, 7);display: block;-webkit-transform: translateX(-50%);transform: translateX(-50%);}
.my-block-title {margin-bottom: 10px;}
.my-block-title h3 {font-weight: bold;color: #171c28;font-size: 45px;margin: 10px 0 20px 0;position: relative; padding-bottom: 20px; border-bottom: #eaeaea solid 1px;line-height: 50px;}
.my-block-title h3::after {position: absolute;content: "";left: 0px;top: 68px;width: 100px;height: 4px;background-color: rgb(221, 167, 7);}

.abjective{border: #beb8e1 solid 0px; padding: 0px;margin: 0;display: inline-block; font-size: 18px; color: #2f2f2f;}
.abjective h3{font-size: 25px; margin: 15px auto; display: inline-block; color: #b59104;font-weight: 700;letter-spacing: -1px;}
.abjective ul {margin: 0 0 0 15px; padding: 0;}
.abjective ul li {position: relative;list-style:none; line-height: 26px; margin: 0 0 15px 0;letter-spacing: -0.4px;text-align: justify;}
.abjective ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #a27c0b; font-weight: 900; position: absolute;left: -15px;
  top: 3px;}

.misvis-part{display: flex;}
.misvis-box{position: relative;width: 50%;text-align: center; border: #eac845 solid 1px; margin: 2%; box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);background-image: url(../../images/welcome-bg.png);background-size: 45px;padding: 40px 20px;background-color: #fffcf1;border-radius: 8px;}
.misvis-box .icon{position: relative;display: block;}
.misvis-box .icon img{width: auto;height: 110px; padding: 10px; border-radius: 50%;background-image: url(../../images/welcome-bg.png); background-size: 30px;border: #fff solid 5px;box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.1);}
.misvis-box:nth-child(1) .icon img{background-color: #cfb53c;}
.misvis-box:nth-child(2) .icon img{background-color: #bd9b16;}
.misvis-box:nth-child(3) .icon img{background-color: #bd9008;}
.misvis-box .containt-box{position: relative;display: block;}
.misvis-box .containt-box h2{color: #2d353d;font-size: 34px;line-height: 34px;font-weight: 700;letter-spacing: -1.5px;margin: 20px 0;}
.misvis-box .containt-box p{color: #4e555c;font-size: 26px;line-height: 36px;font-weight: 500;letter-spacing: -1.2px;margin: 0;}
.misvis-box::after {position: absolute;content: '';left: 30%;bottom: -2px;	width: 40%;	height: 5px;background: linear-gradient(90deg, rgb(228, 177, 24) 0%, rgb(228, 174, 12) 0%, rgb(221, 179, 12) 100%);}

.collection-page{}
.collection-page .item{float: left; width: 25%;padding: 10px;margin: 0 0 120px 0;}
.collection-page .collection-two__content {width: calc(100% - -1px);bottom: -50px;}
.collection-page .collection-two__content::after {height: 0px;}
.collection-page .collection-two__content h3 {font-size: 18px;line-height: 22px;}

.sidebar-video{}
.my-sidebar-title p {margin: 0;font-size: 15px;line-height: 1em;font-weight: bold;color: var(--thm-base);text-transform: uppercase;letter-spacing: 0.15em;display: -webkit-box;display: flex;-webkit-box-align: center;align-items: center;}
.my-sidebar-title p::before {content: "";width: 40px;height: 2px;background-color: var(--thm-base);display: block;-webkit-transform: translateX(-0%);transform: translateX(-0%);}
.my-sidebar-title {margin-bottom: 10px;}
.my-sidebar-title h3 {letter-spacing: -1px;font-weight: bold;color: #171c28;font-size: 28px;margin: 5px 0 15px 0;position: relative; padding-bottom: 10px; border-bottom: #eaeaea solid 1px;}
.my-sidebar-title h3::after {position: absolute;content: "";left: 0px;top: 43px;width: 80px;height: 4px;background-color: rgb(221, 167, 7);}

/*Why Choose us Page*/
.why-choose .section-title { margin-bottom: 0px; margin-top: 20px;}
.why-choose .section-title h4 {font-size: 22px;line-height: 40px;padding: 10px 20px; color: #242424;}
.why-choose .section-title p{margin: 0 0 7px 0; line-height: 24px; color: #444; font-size: 16px;}

.why-choose {margin: 10px 0 0 0;   background-color: #fff;   padding: 10px 0;}
.why-choose .container {/*background-image: url('../images/bg1.jpg'); padding-left: 0;  padding-right: 0;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: top; background-size: 400px;*/}
 


/*About Us Page*/

/*.about-page{padding: 50px 0;}*/

.about-option1 .section-title { margin-bottom: 0px; margin-top: 20px;}
.about-option1 .section-title h2 {font-size: 25px;line-height: 40px;padding: 0 30px;}


.about-option1 {margin: 30px 0 0 0;background-color: #fff; padding: 20px 0; }
.about-option1 .container {background-image: url('../images/bg1.jpg'); padding-left: 0;  padding-right: 0;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: top; background-size: 400px;}
/*.about-option1 .why-choose-image-box::after {position: absolute; right: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(-50deg, #e8b610, #172660);
  content: ''; width: 200px; height: 200px; display: block;}*/

.about-lay-content1{padding: 0 0 0 30px;}
.about-lay-content1 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.about-lay-content1 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

.about-option1 .why-choose-image-box{position: relative;padding: 20px 20px 20px 0px;}
.about-option1 .why-choose-image-box img{ border-radius: 10px; z-index: 1; position: relative;}

.about-option1 .why-choose-image-box22{position: relative;padding: 20px 0px 20px 20px;}
.about-option1 .why-choose-image-box22::after {position: absolute; left: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(50deg, #172660, #e8b610);
  content: ''; width: 200px; height: 200px; display: block;}
.about-option1 .why-choose-image-box22 img{ border-radius: 10px; z-index: 1; position: relative;}
.about-lay-content11{padding: 0 30px 0 0;}
.about-lay-content11 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.about-lay-content11 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}


.about-mv1{margin: 0px 0 0 0;background-color: #fff; padding: 20px 0; }
.about-mv-content1{background-image: url('../images/bg1.jpg'); padding: 20px; text-align: center; border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: top; background-size: 350px;min-height: 330px; margin: 0 0 30px 0;}
.about-mv-content1 .icon img{width: 80px;}
.about-mv-content1 h2{margin: 5px 0 5px 0; font-weight: 600; font-size: 28px; line-height: 40px;}
.about-mv-content1 p{text-align: center; line-height: 26px; margin-bottom: 15px; color: #5c5c5c; font-size: 16px;}

.about-mv-content1 ul {margin: 0 0 0 20px; padding: 0;  color: #5c5c5c; font-size: 15px;}
.about-mv-content1 ul li {list-style: none;position: relative;line-height: 20px; margin: 0 0 7px 0;letter-spacing: 0px;text-align: left;}
.about-mv-content1 ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900; position: absolute;left: -20px; top: 0px;}



.about-timeline{margin: 20px 0 50px 0;background-color: #fff;}

/* The actual timeline (the vertical ruler) */
.main-timeline-5 {
  position: relative;
  max-width: 98%;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-5::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #052d54;
  top: 0;
  bottom: 0;
  left: auto;
  margin-left: -3px;
}

/* Container around content */
.timeline-5 {
  position: relative;
  background-color: inherit;
  width: 100%;
}
.timeline-5 .card-body{background-image: url('../images/bg1.jpg'); padding: 20px; border-radius: 10px; box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09); background-color: #fff;
  border: #bcd2ea solid 1px; background-position: top; background-size: 310px;}
.timeline-5 .card{border: 0;}
.timeline-5 .card-body h5{margin: 0 0 10px 0;font-size: 18px; }
.timeline-5 .card-body span{margin: 0 0 0 10px; font-size: 15px; border-left: #868686 solid 1px;  padding: 0 0 0 10px;}
.timeline-5 .card-body span i{margin: 0 5px 0;color: #d7a80c; }
.timeline-5 .card-body p{margin: 10px 0 0 0;font-size: 15px;line-height: 22px;color: #5c5c5c;}

/* The circles on the timeline */
.timeline-5::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  right: 1px;
  background-color: #052d54;
  top: 18px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the right */
.right-5 {
  padding: 0px 0px 15px 25px;
  left: auto;
}

/* Add arrows to the right container (pointing left) */
.right-5::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 15px;
  border: medium solid #052d54;
  border-width: 10px 10px 10px 0;
  border-color: transparent #052d54 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-5::after {
  left: -10px;
}

@media (max-width: 991px) {
  .main-timeline-5 {
    max-width: 100%;
  }
}


.careers-page {margin: 30px 0 0 0;background-color: #fff; padding: 20px 0; }
.careers-page-layout-1 {background-image: url('../images/bg1.jpg'); padding: 30px;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: top; background-size: 400px;margin: 0 0 30px 0;}
.careers-page-layout-1 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.careers-page-layout-1 p{text-align: justify; line-height: 26px; margin-bottom: 10px; color: #5c5c5c; font-size: 16px;}

.careers-page-layout-1 .case-study-content{}
.careers-page-layout-1 .case-study-content ul {margin: 0 0 0 20px; padding: 0;}
.careers-page-layout-1 .case-study-content ul li {list-style: none; margin: 20px 0; line-height: 30px;font-size: 16px;color: #5c5c5c;}
.careers-page-layout-1 .case-study-content ul li::before { content: '\f105'; line-height: 20px; font-size: 18px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900;
  position: absolute; left: -20px; top: 5px;}

.careers-page-data-table {background-image: url('../images/bg1.jpg'); padding: 30px;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: top; background-size: 400px;margin: 0 0 30px 0;}
.careers-page-data-table h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}

.careers-page-data-table table{vertical-align: text-top;}

.careers-page-data-table ul {margin: 0; padding: 0;}
.careers-page-data-table ul li {list-style: none; margin: 20px 0; }
.careers-page-data-table ul li strong {color: #225586;}

.apply-now-email{margin: 20px 0; text-align: center;display: block ruby;}
.apply-now-email h3{margin: 0 0 20px 0; font-weight: 500; font-size: 18px; line-height: 24px;color: #686868;}
.apply-now-email a {color:#fff;font-weight: 600;border: #ddd solid 0px;padding: 7px 20px;border-radius: 25px;background-color: #225586;}
.apply-now-email a i{margin: 0 10px 0 0; color:#fff; }
.apply-now-email a:hover {color:#e4981a; background-color: #164068;}


.team-sspl{padding: 40px 0;}
.core-team-boxed {background-image: url('../images/bg1.jpg');padding: 20px;border-radius: 10px;box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);background-color: #fff;border: #f0f0f0 solid 1px;background-position: right bottom;background-size: 350px;margin: 0 0 30px 0;}
.core-team-boxed .director-info{display: inline-block;width: 100%;margin: 0 0 10px 0;}
.core-team-boxed .director-info .director-photo{float: left;max-width: 200px;margin: 0 15px 0 0;}
.core-team-boxed .director-info .director-photo img{border: #d2d2d2 solid 1px;border-radius: 10%; width: 100%; max-width: 120px;}
.core-team-boxed .director-data {max-width: 230px;float: left;margin: 10px 0 0 0;}
.core-team-boxed .director-data .author-info .name {color: #052d54; font-weight: bold; font-size: 18px;margin: 0 0 10px 0;}
.core-team-boxed .director-data .designation {font-size: 15px; margin: 5px 0 5px 0;color: #b99313; font-weight: 600; line-height: 22px;} 
.core-team-boxed .director-data  span{font-size: 14px; color: #646464; display: inline-block;width: 100%;line-height: 22px;}
.core-team-boxed .data-for-direct{min-height: 75px;}
.core-team-boxed .data-for-direct p{font-size: 14px; line-height: 22px; color: #646464;text-align: left;}


.leadership-team{margin: 40px 0;}
.about_director_boxed {background-image: url('../images/bg1.jpg');padding: 20px;border-radius: 10px;box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);background-color: #fff;border: #f0f0f0 solid 1px;background-position: top;background-size: 350px;}

.director-info{display: inline-block;width: 100%;margin: 0 0 10px 0;}
.director-info .director-photo{float: left;max-width: 150px;margin: 0 20px 0 0;}
.director-info .director-photo img{border: #bfc6d7 solid 1px; border-radius: 10px;}
.director-data {float: left;margin: 30px 0 0 0;max-width: 320px;}
.director-data .author-info .name {color: #052d54; font-weight: 600; font-size: 22px;margin: 0 0 10px 0;}
.director-data .designation {font-size: 16px; margin: 0 0 10px 0;color: #b99313;font-weight: 500;line-height: 20px;}
.director-data  span{font-size: 15px; color: #646464; display: inline-block;width: 100%;}
.data-for-direct{min-height: 170px;}
.data-for-direct p{font-size: 15px; line-height: 24px; color: #5c5c5c;text-align: justify;}
.data-for-direct p a{color: #b99313;} 
.data-for-direct p a:hover{color: #052d54;} 

.model-direct-photo {float: left; max-width: 250px; margin: 25px 25px 16px 0px; text-align: center; padding: 0;border-radius: 0px;}
.model-direct-photo img{border-radius: 10px;border: #bfc6d7 solid 1px;}
.model-direct-photo .director-data {margin: 0 0 0 0;background-color: #fff;padding: 15px 0;}

.modal-content {border-bottom: #052d54 solid 5px;border-top: #052d54 solid 5px;}
.about-model{max-width: 1400px; width: 100%;}
.about-over-model{padding: 15px 50px;}
.about-over-model .inner-right-details h2 {font-style: normal;font-weight: 600;font-size: 45px;line-height: 55px;color: #0885c2;font-family: 'Poppins', sans-serif;padding-bottom: 15px}
.about-over-model .inner-right-details p {font-style: normal;font-weight: normal;font-size: 18px;line-height: 25px;color: #474747}
.about-model-overvi{margin: 20px 0 0 0;}
.about-model-overvi p{font-size: 16px;line-height: 26px;color: #5c5c5c;text-align: justify;margin: 0 0 14px 0;}
.about-model-overvi h2{font-style: normal;font-weight: 500;font-size: 20px;line-height: 30px;	color: #474747;	font-family: 'Poppins', sans-serif;padding-bottom: 15px}
.about-mod-banner{float: right;max-width: 400px;margin: 15px 0 15px 20px; }
.about-mod-banner img {border: #ccc solid 0px;}

.director-model-overvi{margin: 20px 0 0 0;}
.director-model-overvi p{font-size: 16px;line-height: 26px;color: #5c5c5c;text-align: justify;margin: 0 0 14px 0;}
.director-model-overvi h2{font-style: normal;font-weight: 500;font-size: 20px;line-height: 30px;	color: #474747;	font-family: 'Poppins', sans-serif;padding-bottom: 15px}
/*.director-model-overvi h3, h4, h5{margin: 0 0 15px 0;}*/



.welcome-home .section-title p {color: #4b4b4b; text-align: justify;margin: 0 0 10px 0;line-height: 24px;}
.welcome-home .btn-default{padding: 14px 20px;font-size: 15px;}

.welcome-counter{margin: 20px 0;}
.welcome-counter .col-lg-12{padding-right: 0px; padding-left: 0px;}
.welcome-counter .care-counter-list {gap: 5px;}
.welcome-counter .care-counter-item {border-radius: 5px;width: calc(24.33% - 0px);padding: 10px 20px;}
.welcome-counter .care-counter-item .icon-box {width: 50px; height: 50px; margin: 0 auto 10px auto;}
.welcome-counter .care-counter-item .icon-box img {max-width: 35px;}
.welcome-counter .care-counter-item-content h2 {font-size: 20px;margin-bottom: 10px;}
.welcome-counter .care-counter-item-content p {margin-top: 10px;line-height: 22px;text-align: center;}

.home-industry-section{background-color: #f0f0f0; padding: 30px 0 60px 0;}
.home-industry-section .col-lg-3{padding-left: 9px; padding-right: 9px;}
.home-industry-section .case-study-image {border-radius: 10px 10px 0 0;margin: 0;border: #052d54 solid 8px;}
.home-industry-section .case-study-image img:hover{opacity:0.8; }
.home-industry-section .case-study-content {background-color: #052d54;border-radius: 0 0 10px 10px;}
.home-industry-section .case-study-content h2{margin: 0;text-align: center; padding: 16px 0; font-size: 18px;}
.home-industry-section .case-study-content a{color: #fff;display: block;}
.home-industry-section .case-study-content a:hover{color: #fbc100;}

 

.home-services-section{margin: 80px 0 50px 0; background-color: #fff; }
.services-box-title{background-color: #052d54;border-radius: 10px; height: 270px;color: #fff;}
.services-box-title h3{font-size: 35px; line-height: 45px; color: #fff; padding: 110px 0 15px 0px; text-align: center; font-weight: 400; border-bottom: 3px solid #2c5175; margin: 0 30px;}

.home-services-section .col-lg-3{padding-left: 9px; padding-right: 9px;}
.home-services-section .case-study-image {border-radius: 0px;margin: 0 0 30px 0;}
.home-services-section .case-study-image img{border-radius: 10px; height: 270px; width: 100%; }
.home-services-section .case-study-image img:hover{opacity:0.8; }
.home-services-section .case-study-content {position: relative;}
.home-services-section .case-study-content h2{text-align: center; padding: 16px 0; font-size: 18px;background-color: #052d54;border-radius: 10px;position: absolute;
  bottom: 60px; margin: 0 10%; width: 80%;}
.home-services-section .case-study-content a{color: #fff;display: block;}
.home-services-section .case-study-content a:hover{color: #fbc100;}



/*index2*/

.home-industry-section2{background-color: #f0f0f0; padding: 30px 0 60px 0;background-image: url("../images/map-shape-3.png");  background-repeat: repeat;  background-size: 400px;}
.home-industry-section2 .col-lg-3{padding-left: 9px; padding-right: 9px;}
.home-industry-section2 .case-study-image {border-radius: 10px 10px 0 0;margin: 0;border: #052d54 solid 2px;}
.home-industry-section2 .case-study-image img{transition: all 0.5s ease-in-out;}
.home-industry-section2 .case-study-image img:hover{opacity:0.8; }
.home-industry-section2 .case-study-content {background-color: #052d54;border-radius: 0 0 10px 10px;}
.home-industry-section2 .case-study-content h2{margin: 0;text-align: center; padding: 16px 0; font-size: 18px;}
.home-industry-section2 .case-study-content a{color: #fff;display: block;transition: all 0.5s ease-in-out;}
.home-industry-section2 .case-study-content a:hover{color: #fbc100;}

.home-services-section2{margin: 40px 0 30px 0; background-color: #fff; }
.home-services-section2 .col-lg-3{padding-left: 9px; padding-right: 9px;}
.home-services-section2 .case-study-image {border-radius: 0px;margin: 0 0 30px 0;}
.home-services-section2 .case-study-image img{border-radius: 10px; height: 270px; width: 100%;transition: all 0.5s ease-in-out;}
.home-services-section2 .case-study-image img:hover{opacity:0.8; }
.home-services-section2 .case-study-content {position: relative;}
.home-services-section2 .case-study-content h2{text-align: center; font-size: 25px; background-color: #fbc100; border-radius: 10px; position: absolute;
  bottom: 45px;right: 25px;}
.home-services-section2 .case-study-content h2 a{padding: 5px 15px; }
.home-services-section2 h3{font-size: 23px; color: #000; border-left: #fbc100 solid 4px; margin: 0 0px 10px 0; padding: 0 0 0 15px;}
.home-services-section2 h3 a{padding: 5px 0px; color: #052d54; display: block;transition: all 0.5s ease-in-out;}
.home-services-section2 h3 a:hover{color: #fbc100;}
.home-services-section2 .case-study-content a{color: #fff;display: block;transition: all 0.5s ease-in-out;}
.home-services-section2 .case-study-content a:hover{color: #fbc100;}


/*index3*/
.home-industry-section3{background-color: #f0f0f0; padding: 30px 0 60px 0;}
.home-industry-section3 .col-lg-3{padding-left: 9px; padding-right: 9px;}
.home-industry-section3 .case-study-image {border-radius: 10px 10px 0 0;margin: 0;border: #052d54 solid 0px;}
.home-industry-section3 .case-study-image img:hover{opacity:0.8; }
.home-industry-section3 .case-study-content {background-color: #fff;border-radius: 0 0 10px 10px;}
.home-industry-section3 .case-study-content h2{margin: 0;text-align: center; padding: 16px 0; font-size: 18px;}
.home-industry-section3 .case-study-content a{color: #052d54;display: block;}
.home-industry-section3 .case-study-content a:hover{color: #fbc100;}

.home-services-section3{margin: 40px 0 50px 0; background-color: #fff; }
.home-services-section3 .col-lg-3{padding-left: 9px; padding-right: 9px;}
.home-services-section3 .case-study-image {border-radius: 0px;margin: 0 0 30px 0;}
.home-services-section3 .case-study-image img{border-radius: 10px; height: 270px; width: 100%; }
.home-services-section3 .case-study-image img:hover{opacity:0.8; }
.home-services-section3 .case-study-content {position: relative;}
.home-services-section3 .case-study-content h2{text-align: center; padding: 1px 9px; font-size: 25px; background-color: #fbc100; border-radius: 50px; position: absolute;
  bottom: 45px; right: 25px; border: #fff solid 1px;}
.home-services-section3 h3{font-size: 22px; color: #fff; margin: 0; padding: 5px 15px; position: absolute; z-index: 9; background-color: rgba(0, 0, 0, 0.6); border-radius: 10px 0px 0px 0px; min-width: 300px;}
.home-services-section3 h3 a{padding: 5px 0px; color: #fff; display: block;}
.home-services-section3 h3 a:hover{color: #fbc100;}
.home-services-section3 .case-study-content a{color: #fff;display: block;}
.home-services-section3 .case-study-content a:hover{color: #fff;}

/*Industry 2*/

.industry-page-2{padding: 60px 0;}
.industry-option2 {margin: 0 0 30px 0;}
.industry-option2 .container{background-color: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 45px 76px 0 rgba(0,0,0,.07); border: #e8e8e8 solid 0px;}
.industry-option2 .why-choose-image-box img{ border-radius: 10px;}
.industry-lay-content2 h2{margin: 0 0 15px -25px; font-weight: 600; font-size: 34px; line-height: 44px;border-left: solid 4px; border-image: linear-gradient( to bottom, #e4981a, #052d54 ) 1 10%; padding: 0 0 0 20px;}
.industry-lay-content2 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}
.industry-lay-content22 h2{margin: 0 -25px 20px 0; font-weight: 600; font-size: 34px; line-height: 44px;border-right: solid 4px; border-image: linear-gradient( to bottom, #e4981a, #052d54 ) 1 10%; padding: 0 20px 0 0;}
.industry-lay-content22 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

.industry-page-25 img {
  --b: 1px;  /* the border thickness */
  --d: 20px; /* the distance from the edge */
  --o: 7px; /* the offset on hover */
  --s: 1;    /* the direction of the hover effect (+1 or -1)*/
  
  --_d: calc(var(--d) + var(--s)*1em);
   mask: 
    conic-gradient(from 90deg at var(--_d) var(--_d),#0000 25%,#000 0)
     0 0/calc(100% - var(--_d)) calc(100% - var(--_d)),
    conic-gradient(#000 0 0) no-repeat 50%/
     calc(100% - 2*(var(--_d) + var(--b))) 
     calc(100% - 2*(var(--_d) + var(--b)));
  font-size: 0;
  border-radius: 10px;
  transition: .35s;
}
.industry-page-2 img:hover {
  font-size: var(--o);
}

/*Industry 3*/

.industry-page-3{padding: 60px 0;}
.industry-option3 {margin: 0 0 30px 0;}
.industry-option3 .container{background-color: #fff; padding: 25px; border-radius: 15px; box-shadow: 0 45px 76px 0 rgba(0,0,0,.07); border: #eaeaea solid 1px; }
.industry-option3 .why-choose-image-box img{ border-radius: 10px;}
.industry-lay-content3 h2{margin: 0 0 15px -25px; font-weight: 600; font-size: 34px; line-height: 44px;border-left: solid 4px; border-image: linear-gradient( to bottom, #e4981a, #052d54 ) 1 10%; padding: 0 0 0 20px;}
.industry-lay-content33{position: relative;}
/*.industry-option3 .container::after {position: absolute; content: ""; right: -25px; top: 0; width: 5px; height: 100%; background-color: #052d54;}*/
.industry-lay-content33 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 32px; line-height: 40px;padding: 0 0 15px 0;border-bottom: #eaeaea solid 1px;position: relative;}
.industry-lay-content33 h2::after {position: absolute; content: ''; left: 0; bottom: -2px; width: 125px; height: 3px; background-color: #e8b610;}
.industry-lay-content33 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

.industry-page-sidebar{padding: 30px 0 50px 0;}
.my-section-title-with-line{}
.my-section-title-with-line h2{font-size: 40px;line-height: 46px; padding: 20px 0; font-weight: 600; border-bottom: #eee solid 1px; margin: 0 5px 25px 5px;position: relative;}
.my-section-title-with-line h2::after {position: absolute; content: ''; left: 0; bottom: -2px; width: 125px; height: 3px; background-color: #e8b610;}


.widget .widget-title {font-weight: 600;font-size: 24px;color: #052d54;margin: 0 0 20px 0;}
.single-service .widget {margin-bottom: 30px;}
.single-service .widget_categories ul {background-color: #fff;box-shadow: 0px 0px 30px 5px rgba(0,0,0,.08);border-radius: 7px;}
.single-service .widget_categories ul li {border: 0;padding: 0;border-bottom: 1px solid #e8e8e8;}
.single-service .widget_categories ul li:last-child {border-bottom: 0;}
.single-service .widget_categories ul li a {color: #3c3c3c;padding: 11px 20px 11px 35px;display: block;font-size: 16px;line-height: 22px;transition: all 0.3s ease-in-out;}
.single-service .widget_categories ul li a::before {content: '\f105';position: absolute;left: 15px;line-height: 22px;font-size: 15px;font-family: 'FontAwesome';color: #e4981a ;}
.single-service .widget_categories ul li a:hover {color: #fff;background-color: #052d54;}
.single-service .widget_categories .active-side-menu {color: #fff;background-color: #052d54;}



/*Industry 7*/
.industry-page-7{padding: 60px 0;}
.industry-option7 {margin: 0 0 0;box-shadow: 0 45px 76px 0 rgba(0,0,0,.07); background-color: #fff; padding: 45px 0; }

.industry-option7 .why-choose-image-box img{ border-radius: 10px; z-index: 1; position: relative;}
.industry-option7 .why-choose-image-box::after {position: absolute; content: ''; right: -20px; top: -5%; width: 40%; height: 110%; background-color: #e8b610; border-radius: 15px;  background-image: radial-gradient(circle at top, #e8b610, #172660);}

.industry-option7 .why-choose-image-box22{position: relative;}
.industry-option7 .why-choose-image-box22 img{ border-radius: 10px; z-index: 1; position: relative;}
.industry-option7 .why-choose-image-box22::after {position: absolute; content: ''; left: -20px; top: -5%; width: 40%; height: 110%; background-color: #e8b610; border-radius: 15px;  background-image: radial-gradient(circle at top, #172660, #e8b610);}

.industry-lay-content7 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.industry-lay-content7 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}


/*Industry 8*/
.industry-page-8{padding: 60px 0;}
.industry-option8 {margin: 0 0 0;box-shadow: 0 45px 76px 0 rgba(0,0,0,.07); background-color: #fff; padding: 45px 0; }

.industry-option8 .why-choose-image-box img{ border-radius: 10px; z-index: 1; position: relative;  border: #fff solid 1px;}
.industry-option8 .why-choose-image-box::after {position: absolute;  right: -20px; top: -5%; background-color: #e8b610; border-radius: 15px; 
	   background: -webkit-linear-gradient(-50deg, #172660, #e8b610); content: ''; width: 300px; height: 300px; display: block;}

.industry-option8 .why-choose-image-box22{position: relative;}
.industry-option8 .why-choose-image-box22 img{ border-radius: 10px; z-index: 1; position: relative;  border: #fff solid 1px;}
.industry-option8 .why-choose-image-box22::after {position: absolute;  left: -20px; top: -5%; background-color: #e8b610; border-radius: 15px; 
	   background: -webkit-linear-gradient(50deg, #172660, #e8b610); content: ''; width: 300px; height: 300px; display: block;}

.industry-lay-content8 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.industry-lay-content8 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}


/*Industry 9*/
.industry-page-9{padding: 30px 0;}
.industry-option9 {margin: 0 0 0;background-color: #fff; padding: 20px 0; }
.industry-option9 .container {background-image: url('../images/bg1.jpg'); padding-left: 0;  padding-right: 0;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: bottom; background-size: 450px;}
.industry-option9 .why-choose-image-box::after {position: absolute; right: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(-50deg, #e8b610, #172660);
  content: ''; width: 200px; height: 200px; display: block;}

.industry-lay-content9{padding: 0 0 0 30px;}
.industry-lay-content9 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.industry-lay-content9 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

.industry-option9 .why-choose-image-box{position: relative;padding: 20px 20px 20px 0px;}
.industry-option9 .why-choose-image-box img{ border-radius: 10px; z-index: 1; position: relative;}

.industry-option9 .why-choose-image-box22{position: relative;padding: 20px 0px 20px 20px;}
.industry-option9 .why-choose-image-box22::after {position: absolute; left: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(50deg, #172660, #e8b610);
  content: ''; width: 200px; height: 200px; display: block;}
.industry-option9 .why-choose-image-box22 img{ border-radius: 10px; z-index: 1; position: relative;}
.industry-lay-content99{padding: 0 30px 0 0;}
.industry-lay-content99 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;}
.industry-lay-content99 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

/*Services 1*/
.services-page-1{padding: 30px 0;}
.services-option1 {margin: 0 0 0;background-color: #fff; padding: 20px 0; }
.services-option1 .container {background-image: url('../images/bg1.jpg'); padding-left: 0;  padding-right: 0;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: bottom; background-size: 450px;}
.services-option1 .why-choose-image-box::after {position: absolute; right: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(-50deg, #e8b610, #172660);
  content: ''; width: 200px; height: 200px; display: block;}

.services-lay-content1{padding: 0 0 0 30px;}
.services-lay-content1 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;border-left: #fbc100 solid 5px; padding: 0 0 0 15px;}
.services-lay-content1 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

.services-option1 .why-choose-image-box{position: relative;padding: 20px 20px 20px 0px;}
.services-option1 .why-choose-image-box img{ border-radius: 10px; z-index: 1; position: relative;}

.services-option1 .why-choose-image-box22{position: relative;padding: 20px 0px 20px 20px;}
.services-option1 .why-choose-image-box22::after {position: absolute; left: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(50deg, #172660, #e8b610);
  content: ''; width: 200px; height: 200px; display: block;}
.services-option1 .why-choose-image-box22 img{ border-radius: 10px; z-index: 1; position: relative;}
.services-lay-content11{padding: 0 30px 0 0;}
.services-lay-content11 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;border-left: #fbc100 solid 5px; padding: 0 0 0 15px;}
.services-lay-content11 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

/*Services Multiple 1*/
.services-page-section1{}
.services-page-section1 h3{min-height: 68px; font-size: 23px; color: #052d54; border-left: #fbc100 solid 4px; margin: 0 0px 15px 0; padding: 5px 0 5px 15px;}
.services-page-section1 .case-study-image {margin-bottom: 0px; border-radius: 10px 10px 0 0;}
.services-page-section1 .case-study-content{min-height: 160px; margin: 0 0 40px 0;color: #5c5c5c;  background-image: url('../images/bg1.jpg');  border-radius: 0 0 10px 10px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;  background-position: bottom;  background-size: 250px;  padding: 20px 20px;}
.services-page-section1 .case-study-content ul {margin: 0 0 0 20px; padding: 0;  font-size: 15px;}
.services-page-section1 .case-study-content ul li {list-style: none;position: relative;line-height: 18px; margin: 0 0 5px 0;letter-spacing: 0px;text-align: left;}
.services-page-section1 .case-study-content ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900; position: absolute;left: -20px; top: 0px;}

/*Services 2*/
.services-page-2{padding: 30px 0;}
.upcoming-event{}
.upcoming-event .pr-cover{background-color:#fff; padding:15px 15px;position: relative; width: 100%; min-height: 165px;border: #f0f0f0 solid 1px; margin: 0 0 20px 0;border-radius: 10px;display: flex; background-image: url('../images/bg1.jpg');  background-position: bottom; background-size: 220px;box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);}
.upcoming-event .pr-cover img {border: #ddd solid 1px; max-height: 200px; min-height: 200px; width: 100%;border-radius: 5px;}
/*.upcoming-event .pr-cover img:hover {border: #288add solid 1px; opacity:0.5;}*/
.upcoming-event .pr-cover h3{font-size: 23px; color: #052d54; border-left: #fbc100 solid 4px; margin: 0 0px 15px 15px; padding: 5px 0 5px 15px;}
.upcoming-event .pr-cover h3 a{ display: block;margin: 0 0 10px 0;padding: 0;color: #000;font-size: 24px;font-weight: 600;line-height: 30px;letter-spacing: 0.1px;}
.upcoming-event .pr-cover h3 a:hover{color:#db3700;} 
.upcoming-event .pr-cover p{ font-size:16px;margin:0; line-height: 24px; }
.upcoming-event .pr-cover ul {margin: 0 0 0 35px; padding: 0;  font-size: 15px;}
.upcoming-event .pr-cover ul li {list-style: none;position: relative;line-height: 18px; margin: 0 0 5px 0;letter-spacing: 0px;text-align: left;color: #5c5c5c;}
.upcoming-event .pr-cover ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900; position: absolute;left: -20px; top: 0px;}

.upcoming-event .pr-cover11{background-color:#fff; padding:15px 15px;position: relative; width: 100%; min-height: 165px;border: #f0f0f0 solid 1px; margin: 0 0 20px 0;border-radius: 10px;display: flex; background-image: url('../images/bg1.jpg');  background-position: bottom; background-size: 220px;box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);}
.upcoming-event .pr-cover11::after {position: absolute; right: 5px; top: 5px; border-radius: 5px; background: -webkit-linear-gradient(50deg, #e8b610, #e8b610);
  content: ''; width: 80px; height: 80px; display: block; z-index: -1;}
.upcoming-event .pr-cover11 img {border: #ddd solid 0px; max-height: 200px; min-height: 200px; width: 100%;border-radius: 5px;}
.upcoming-event .pr-cover11 h3{font-size: 22px; color: #052d54; border-left: #fbc100 solid 4px; margin: 0 0px 10px 0; padding: 5px 0 5px 15px;}
.upcoming-event .pr-cover11 h3 a{ display: block;margin: 0 0 10px 0;padding: 0;color: #000;font-size: 24px;font-weight: 600;line-height: 30px;letter-spacing: 0.1px;}
.upcoming-event .pr-cover11 h3 a:hover{color:#db3700;} 
.upcoming-event .pr-cover11 p{ font-size:16px;margin:0; line-height: 24px; }
.upcoming-event .pr-cover11 ul {margin: 0 0 0 20px; padding: 0;  font-size: 15px;}
.upcoming-event .pr-cover11 ul li {list-style: none;position: relative;line-height: 18px; margin: 0 0 5px 0;letter-spacing: 0px;text-align: left;color: #5c5c5c;}
.upcoming-event .pr-cover11 ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900; position: absolute;left: -20px; top: 0px;}

.services-option2 {margin: 0 0 0;background-color: #fff; padding: 25px 0; }
.services-option2 .container {max-width: 1330px; background-image: url('../images/bg1.jpg'); padding-left: 0;  padding-right: 0;  border-radius: 10px;  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;background-position: bottom; background-size: 450px;}
/*.services-option2 .why-choose-image-box::after {position: absolute; right: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(-50deg, #e8b610, #172660);
  content: ''; width: 200px; height: 200px; display: block;}*/

.services-lay-content2{padding: 0 30px 0 0;}
.services-lay-content2 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;border-left: #fbc100 solid 5px; padding: 0 0 0 15px;}
.services-lay-content2 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}

.services-option2 .why-choose-image-box{position: relative;padding: 20px 0px 20px 20px;}
.services-option2 .why-choose-image-box img{ border-radius: 10px; z-index: 1; position: relative;}

.services-option2 .why-choose-image-box222{position: relative;padding: 20px 20px 20px 0px;}
/*.services-option2 .why-choose-image-box222::after {position: absolute; left: 0; top: 0;border-radius: 15px; background: -webkit-linear-gradient(50deg, #172660, #e8b610);
  content: ''; width: 200px; height: 200px; display: block;}*/
.services-option2 .why-choose-image-box222 img{ border-radius: 10px; z-index: 1; position: relative;}
.services-lay-content22{padding: 0 0 0 30px;}
.services-lay-content22 h2{margin: 0 0 15px 0; font-weight: 600; font-size: 34px; line-height: 44px;border-left: #fbc100 solid 5px; padding: 0 0 0 15px;}
.services-lay-content22 p{text-align: justify; line-height: 24px; margin-bottom: 25px; color: #5c5c5c; font-size: 16px;}


/*Services 3*/
.services-page-3{padding: 30px 0;}
.ser-grid-lay{background-color:#fff; padding:0 0 20px 0;position: relative; width: 100%; min-height: 165px;border: #f0f0f0 solid 1px; margin: 0 0 20px 0;border-radius: 10px; background-image: url('../images/bg1.jpg');  background-position: bottom; background-size: 220px;box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);}
.ser-grid-lay img{ border-radius: 10px 10px 0 0; z-index: 1; position: relative;}
.ser-grid-lay h3{font-size: 23px; color: #052d54; border-left: #fbc100 solid 4px; margin:15px 15px 15px 0px; padding:5px 15px;}
.ser-grid-lay p{ font-size:16px;margin:0; line-height: 24px; }
.ser-grid-lay ul {margin: 0 15px 0 35px; padding: 0;  font-size: 15px;}
.ser-grid-lay ul li {list-style: none;position: relative;line-height: 18px; margin: 0 0 5px 0;letter-spacing: 0px;text-align: left;color: #5c5c5c;}
.ser-grid-lay ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900; position: absolute;left: -20px; top: 0px;}
 



/*.jobopen-box{
  position: relative;
  background: var(--N100);
  border-radius: 20px;
  width: 100%;
  padding: 24px 24px 20px;
  box-shadow: 0 6px 12px rgba(30,10,58,.04);
  transition: box-shadow .2s linear;
  border: none;
}
.row2 {
  width: calc(100% - 80px);
  font-size: 14px;
  margin-right: 4px;
  margin-top: 4px;
}*/


/* recent jobs */

#jobs {background: #f8f8fa;padding: 50px 0;}
.company-details {background-image: url('../images/bg1.jpg');border-radius: 10px;box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);background-color: #fff;border: #f0f0f0 solid 1px;background-position: top;background-size: 350px;margin: 0 0 30px 0;}
.job-update {padding: 20px 20px;border-radius: 5px;}
.job-update h4 {font-size: 26px; margin: 0 0 10px 0;border-bottom: #eaeaea solid 1px;padding: 0 0 5px 0;}
.job-update h6 {font-size: 16px; margin: 0 0 10px 0;color: #3c488a;}
.job-update ul {margin: 0; padding: 0;width: 100%; display: inline-block;}
.job-update ul li{list-style: none; float: left; margin: 0 25px 10px 0; color: #444444;font-size: 15px;}
.job-update ul li i{margin-top: 5px;margin-right: 6px;color: #e8b053;}
.description {overflow: hidden;height: 0;opacity: 0;transition: height 0ms 400ms, opacity 400ms 0ms;}
.company-details :hover .description {height: auto;opacity: 1;transition: height 0ms 0ms, opacity 600ms 0ms;}
.job-update small {background: #e8e8e8;padding: 3px 10px;margin: 0 2px;border-radius: 5px;color: #686868;}
.job-update small:hover {cursor: default;background: #e8b053;z-index: 2;transition: all 200ms ease-in;transform: scale(1.1);color: white;}
.job-update p {margin-bottom: 0 !important;}
.job-update a {text-decoration: none !important;color: #b6bed2;float: right;}
.job-update a:hover {text-decoration: none !important;color: rgb(0, 95, 238);float: right;}
.apply-btn {height: 40px;background-image: linear-gradient(to right, #6db9ef, #111136);padding: 5px;border-bottom-left-radius: 5px;}
.apply-btn .btn-primary {padding: 0 30px;float: right;box-shadow: none !important;border: 1px solid #fff;width: 100px;height: 30px;line-height: 30px;background: #f36969;color: #ffffff;font-size: 16px;text-transform: uppercase;border-radius: 10px;}


.blogs-page-section1{margin: 50px 0 0 0;}
.blog-main-cover h3{font-size: 22px; color: #052d54; margin: 0 0px 0 0; padding: 0;}
.blog-main-cover h3 a{color: #052d54;}
.blog-main-cover h3 a:hover{color: #e8b053;}
.blog-main-cover .case-study-image {margin-bottom: 0px; border-radius: 10px 10px 0 0;}
.blog-main-cover .case-study-content{margin: 0 0 40px 0;color: #5c5c5c;  background-image: url('../images/bg1.jpg');  border-radius: 0 0 10px 10px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);  background-color: #fff;  border: #f0f0f0 solid 1px;  background-position: bottom;  background-size: 250px;  padding: 15px 20px;}
.blog-main-cover .case-study-content p{line-height: 22px; margin-bottom: 15px; color: #5c5c5c; font-size: 16px;}
.blog-main-cover .case-study-content ul {}
.blog-main-cover .case-study-content ul li {list-style: none;position: relative;line-height: 18px; margin: 0 15px 0px 0px;letter-spacing: 0px;text-align: left;}
.blog-main-cover .case-study-content ul li::before {display: none;}
.blog-main-cover .post-item-content {padding-bottom: 0px; margin-bottom: 5px;}


/************************************/
/*** 	 	05. About Us css	  ***/
/************************************/

.about-us{
	padding: 50px 0;
}

.about-us-images{
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
}

.about-img-1,
.about-img-2{
	border-radius: 20px;
	overflow: hidden;
}

.about-img-1{
	margin-left: 160px;
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

.about-img-1 figure img,
.about-img-2 figure img{
	width: 100%;
	object-fit: cover;
}

.about-img-1 figure img{
	aspect-ratio: 1 / 1.17;
}

.about-img-2{
	position: relative;
	width: 100%;
	max-width: 312px;
	border: 5px solid var(--white-color);
	box-shadow: 0px 4px 14px 0px #0000000D;
	margin-top: -300px;
	z-index: 1;
}

.about-img-2 figure img{
	aspect-ratio: 1 / 1.245;
}

.working-hours-box{
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: var(--dark-divider-color);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 15px;
	z-index: 1;
}

.working-hours-header{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.working-hours-header h3{
	font-size: 16px;
	color: var(--white-color);
}

.working-hours-header img{
	width: 100%;
	max-width: 16px;
}

.working-hours-body ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.working-hours-body ul li{
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 10px;
}

.working-hours-body ul li:last-child{
	margin-bottom: 0;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-experience-box{
	/*width: calc(65% - 15px);*/
}

.about-experience-item{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.about-experience-item:last-child{
	margin-bottom: 0;
}

.about-experience-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	overflow: hidden;
}

.about-experience-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.about-experience-item:hover .icon-box::before{
	transform: scale(1);
}

.about-experience-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.about-experience-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.about-experience-content{
	width: calc(100% - 80px);
}

.about-experience-content h3{
	font-size: 20px;
}

.trusted-profession-box{
	position: relative;
	width: calc(35% - 15px);
	background: var(--accent-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.trusted-profession-box::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 100px 100px 0 0;
	transition: all 0.4s ease-in-out;
}

.trusted-profession-box:hover::before{
	height: 100%;
	border-radius: 0;
}

.trusted-profession-box .icon-box,
.trusted-profession-content{
	position: relative;
	z-index: 1;
}

.trusted-profession-box .icon-box{
	margin-bottom: 40px;
}

.trusted-profession-box .icon-box img{
	width: 100%;
	max-width: 40px;
}

.trusted-profession-content h3{
	font-size: 16px;
	color: var(--white-color);
}

.about-us-btn{
	margin-top: 40px;
}

/************************************/
/*** 	 06. Our Services css	  ***/
/************************************/

.our-services{
	padding: 30px 0;
}

.service-item{
	position: relative;
	background-color: var(--bg-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 2.083vw;
	overflow: hidden;
}

.service-item::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active::before,
.service-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.service-item .service-title{margin-bottom: 20px;}

.service-title,
.service-item .icon-box,
.service-content,
.service-btn{
	position: relative;
	z-index: 1;
}

.service-title,
.service-item .icon-box,
.service-content{
	margin-bottom: 20px;
}

.service-title h3{
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-title h3 a{
	color: inherit;
}

.service-item .icon-box{
	display: inline-block;
	padding: 0 10px 10px 0;
}

.service-item .icon-box::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .icon-box::before,
.service-item:hover .icon-box::before{
	background: var(--dark-divider-color);
}

.service-item .icon-box img{
	width: 100%;
	max-width: 200px;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .icon-box img,
.service-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.service-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-title h3,
.service-item:hover .service-title h3,
.service-item.active .service-content p,
.service-item:hover .service-content p{
	color: var(--white-color);
}

.service-item.active .service-btn .readmore-btn,
.service-item:hover .service-btn .readmore-btn{
	color: var(--white-color);
}

.service-item.active .service-btn .readmore-btn::before,
.service-item:hover .service-btn .readmore-btn::before{
	filter: brightness(0) invert(1);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	margin: 0;
}

.dark-section .section-footer-text p{
	color: var(--white-color);
}

.section-footer-text p span{
	display: inline-block;
	line-height: 1.1em;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 30px;
	padding: 4px 12px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/*** 	 07. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 60px 0;
}

.why-choose-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.why-choose-item{
	width: calc(50% - 15px);
}

.why-choose-item h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.why-choose-item p{
	margin-bottom: 0;
}

.why-choose-image-box{
	position: relative;
}

.why-choose-image{
	padding: 0 ;
}

.why-choose-image figure{
	display: block;
}

.why-choose-image img{
	width: 100%;border-radius: 10px;
	
}
 
.why-choose-us .align-items-center {margin-bottom: 20px;
  border-bottom: #e6e6e6 solid 1px;
  padding-bottom: 20px;}

.why-choose-us .align-items-center:last-child {border-bottom: #e6e6e6 solid 0px;}

.why-choose-image-box .satisfy-client-box{
	position: absolute;
	left: 0;
	bottom: 18%;
	width: 100%;
	max-width: 260px;
	background: var(--bg-color);
	box-shadow: 0px 0px 10px 0px #201F241A;
	border-radius: 10px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.why-choose-image-box .satisfy-client-box::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 100px 100px 0 0;
	transition: all 0.4s ease-in-out;
}

.why-choose-image-box .satisfy-client-box:hover::before{
	height: 100%;
	border-radius: 0;
}

.why-choose-image-box .satisfy-client-box .satisfy-client-images,
.why-choose-image-box .satisfy-client-box .satisfy-client-content{
	position: relative;
	width: 100%;
	z-index: 1;
}

.why-choose-image-box .satisfy-client-box .satisfy-client-content p{
	font-weight: 600;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.why-choose-image-box .satisfy-client-box:hover .satisfy-client-content p{
	color: var(--white-color);
}

/************************************/
/*** 	 08. Our Feature css	  ***/
/************************************/

.our-feature{
	padding: 100px 0 70px;
}

.feature-item{
	position: relative;
	background-color: var(--bg-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.feature-item::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.feature-item.active::before,
.feature-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.feature-item .icon-box{
	position: absolute;
	top: -12px;
	right: -12px;
	z-index: 1;
}

.feature-item .icon-box img{
	width: 100%;
	max-width: 100px;
	transition: all 0.4s ease-in-out;
}

.feature-item.active .icon-box img,
.feature-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.feature-item-header,
.feature-item-content,
.feature-counter-item{
	position: relative;
	z-index: 1;
}

.feature-item-header{
	border-bottom: 1px solid var(--divider-color);
	padding: 0 70px 110px 0;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.feature-item.active .feature-item-header,
.feature-item:hover .feature-item-header{
	border-color: var(--dark-divider-color);
}

.feature-item-header h3{
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.feature-item-content{
	margin-bottom: 30px;
}

.feature-item-content p{
	transition: all 0.4s ease-in-out;
	margin-bottom: 0;
}

.feature-counter-item{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.feature-counter-content h2{
	font-size: 40px;
	line-height: normal;
	transition: all 0.4s ease-in-out;
	margin-bottom: 5px;
}

.feature-counter-content h2 sup{
	top: -8px;
}

.feature-counter-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.feature-item.active .feature-item-header h3,
.feature-item:hover .feature-item-header h3,
.feature-item.active .feature-item-content p,
.feature-item:hover .feature-item-content p,
.feature-item.active .feature-counter-content h2,
.feature-item:hover .feature-counter-content h2,
.feature-item.active .feature-counter-content p,
.feature-item:hover .feature-counter-content p{
	color: var(--white-color);
}

.feature-counter-icon{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.feature-counter-icon::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.feature-item.active .feature-counter-icon::before,
.feature-item:hover .feature-counter-icon::before{
	transform: scale(1);
}

.feature-counter-icon img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}
.why-org-us{margin: 0 0 30px 0;}
.why-org-us .section-title {margin-bottom: 25px;}
.why-org-us .section-title h2 {font-size: 28px;line-height: 40px;padding: 10px 20px 15px 20px; border-bottom: #eeb14c solid 3px;max-width: 700px;margin: 0 auto;}

.why-org-us .service-empower-item-list{padding: 0; margin: 0; border: 0;}
.why-org-us .what-we-item-content p{color: #474747;line-height: 20px;}
.why-org-us .what-we-item { padding: 15px 20px; min-height: 165px;}
.why-org-us .what-we-item-content h3 {font-size: 18px;}

/************************************/
/*** 	  09. What We Do css	  ***/
/************************************/

.what-we-do{
	padding: 100px 0;
}

.what-we-image-box{
	margin-right: 15px;
}

.what-we-image figure{
	display: block;
	border-radius: 20px;
}

.what-we-image img{
	width: 100%;
	aspect-ratio: 1 / 0.916;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-contact-box{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
}

.what-we-contact-item{
	display: flex;
	align-items: center;
}

.what-we-contact-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}

.what-we-contact-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
	
.what-we-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.what-we-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.what-we-contact-item-content{
	width: calc(100% - 65px);
}

.what-we-contact-item-content p{
	margin-bottom: 5px;
}

.what-we-contact-item-content h3{
	font-size: 20px;
}

.what-we-contact-item-content h3 a{
	color: initial;
	transition: all 0.3s ease-in-out;
}

.what-we-contact-item-content h3 a:hover{
	color: var(--accent-color);
}

.what-we-item{
	display: flex;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 20px;
}

.what-we-item:last-child{
	margin-bottom: 0;
}

.what-we-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	/*background: var(--accent-color);*/
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}

.what-we-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
	
.what-we-item:hover .icon-box::before{
	transform: scale(1);
}

.what-we-item .icon-box img{
	position: relative;
	width: 100%; 
	z-index: 1;
}

.what-we-item-content{
	width: calc(100% - 80px);
}

.what-we-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.what-we-item-content p{
	margin-bottom: 0;
}



.project-case-studie{}
.project-case-studie .case-study-content{color: #474747;}
.project-case-studie .case-study-content ul li strong { background-color: #eee; padding: 5px 15px; display: inline-block; border-radius: 5px; margin: 0 10px 0 0; width: 95px;}
.project-case-studie .case-study-image figure img {aspect-ratio: 0;}


/************************************/
/*** 	  10. How It Work css	  ***/
/************************************/

.how-it-work{
	padding: 100px 0;
}

.work-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.work-item{
	position: relative;
	width: calc(25% - 22.5px);
	text-align: center;
}

.work-item::before{
	content: '';
	position: absolute;
	top: 60px;
	right: -35px;
	background: url('../images/work-item-arrow.svg') no-repeat;
	background-position: center center;
	width: 36px;
	height: 40px;
}

.work-item:nth-child(4n + 4):before,
.work-item:last-child:before{
	display: none;
}

.work-item-image{
	width: 100%;
	max-width: 160px;
	margin: 0 auto 30px;
}

.work-item-image figure{
    display: block;
    mask-size: auto;
    mask-position: center center;
    mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.work-box-1 .work-item-image figure{
	mask-image: url('../images/work-item-bg-shape-1.svg');
    background-image: url('../images/work-item-bg-shape-1.svg');
}

.work-box-2 .work-item-image figure{
	mask-image: url('../images/work-item-bg-shape-2.svg');
    background-image: url('../images/work-item-bg-shape-2.svg');
}

.work-box-3 .work-item-image figure{
	mask-image: url('../images/work-item-bg-shape-3.svg');
    background-image: url('../images/work-item-bg-shape-3.svg');
}

.work-box-4 .work-item-image figure{
	mask-image: url('../images/work-item-bg-shape-4.svg');
    background-image: url('../images/work-item-bg-shape-4.svg');
}

.work-item-image figure img{
	width: 100%;
}

.work-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.work-item-content p{
	margin-bottom: 0;
}

/************************************/
/*** 	 11. Our Programs css	  ***/
/************************************/

.our-programs{
	padding: 100px 0;
}

.programs-image-box{
	background: var(--accent-secondary-color);
	border-radius: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
	overflow: hidden;
}

.programs-item-body{
	display: flex;
	align-items: end;
}

.programs-body-content{
	width: calc(100% - 210px);
}

.programs-body-content p{
	margin-bottom: 0;
}

.programs-body-image{
	margin-right: -40px;
}

.programs-body-image figure{
	display: block;
}

.programs-body-image img{
	width: 100%;
	max-width: 260px;
}

.programs-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.programs-item{
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.programs-item::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.programs-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.programs-item-header,
.programs-item-content{
	position: relative;
	z-index: 1;
}

.programs-item-header{
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 100px;
}

.programs-item-title h3{
	font-size: 26px;
	transition: all 0.5s ease-in-out;
}

.program-btn a{
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease-in-out;
}

.programs-item:hover .program-btn a{
	background: var(--primary-color);
}

.program-btn a img{
	width: 100%;
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.3s ease-in-out;
}

.program-btn a:hover img{
	transform: rotate(0);
}

.programs-item-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.programs-item:hover .programs-item-title h3,
.programs-item:hover .programs-item-content p{
	color: var(--white-color);
}

/************************************/
/*** 	 	12. CTA Box css 	  ***/
/************************************/

.cta-box{
	padding: 100px 0;
}

.cta-box-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cta-box-list ul li{
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
}

.cta-box-list ul li::before{
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.cta-box-btn{
	margin-top: 40px;
}

.cta-box-image figure{
	display: block;
}

.cta-box-image img{
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	margin-bottom: -100px;
}

/************************************/
/*** 	 	13. Our FAQs css	  ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.faq-accordion .accordion-item{
	background: var(--accent-secondary-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.333em;
	background: transparent;
	color: var(--primary-color);
	padding: 18px 45px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: transparent;
	border-top: 1px solid var(--divider-color);
	padding: 18px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
	margin: 0;
}

.faqs-image-box{
	position: relative;
	margin-left: 15px;
}

.faq-image{
	border-radius: 20px;
	overflow: hidden;
}

.faq-image figure{
	display: block;
}

.faq-image img{
	width: 100%;
	aspect-ratio: 1 / 1.125;
	object-fit: cover;
}

.faqs-contact-box{
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	display: flex;
	align-items: end;
	background: var(--primary-color);
	border-radius: 20px;
	gap: 20px;
	padding: 30px 0 30px 30px;
	overflow: hidden;
	z-index: 1;
}

.faqs-cta-box-content{
	width: calc(100% - 120px);
}

.faqs-cta-box-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.faqs-contact-box .icon-box{
	margin-bottom: -40px;
	transform: rotate(-10deg);
}

.faqs-contact-box .icon-box img{
	width: 100%;
	max-width: 100px;
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: var(--accent-color);
	padding: 100px 0;
}

.testimonials-content .section-title h3::before{
	background: var(--white-color);
}

.testimonial-slider-box{
	border-left: 1px solid var(--dark-divider-color);
	padding-left: 30px;
}

.testimonial-author-images{
	display: inline-flex;
	margin-bottom: 40px;
}

.testimonial-author-image{
	position: relative;
	margin-left: -10px;
	z-index: 1;
}

.testimonial-author-image:first-child{
	margin: 0;
}

.testimonial-author-image figure{
	display: block;
	border-radius: 50%;
}

.testimonial-author-image img{
	width: 100%;
	max-width: 60px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonials-rating{
	margin-bottom: 20px;
}

.testimonials-rating i{
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonials-rating i:last-child{
	margin: 0;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p,
.author-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.testimonial-slider-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--white-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.png") no-repeat center center;
    background-size: 22px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	filter: brightness(0) invert(0);
}

.company-supports-slider{
}

.company-supports-logo{
    text-align: center;
}

.company-supports-logo img{
	width: 100%;
    max-height: 41px;
	transition: all 0.4s ease-in-out;
}


.home-certification-section{padding: 40px 0 30px 0;background-color: #f0f0f0;background-image: url("../images/map-shape-3.png"); background-repeat: repeat; background-size: 400px;}
.home-certification-section .section-title {margin-bottom: 30px;}
.home-certification-section .section-title h2 {font-size: 40px;}
.home-certification-section .company-supports-slider{}
.home-certification-section .company-supports-slider .swiper-slide{text-align: center; padding: 15px; background-color: #fff;border: 1px solid var(--divider-color);border-radius: 15px; min-height: 140px;box-shadow: 0px 0 3px 0px #63636350;}
.home-certification-section .company-supports-slider .swiper-slide img{max-width: 100px;}
.home-certification-section .company-supports-slider .swiper-slide p{display: none;}


.home-compliance-section{padding: 40px 0 30px 0;background-color: #fff;background-image: url("../images/map-shape-3.png"); background-repeat: repeat; background-size: 400px;}
.home-compliance-section .section-title {margin-bottom: 30px;}
.home-compliance-section .section-title h2 {font-size: 40px;}
.home-compliance-section .company-supports-slider{}
.home-compliance-section .company-supports-slider .swiper-slide a{text-align: center; border-radius: 50%; padding: 15px; background-color: #fff;border: 1px solid var(--divider-color); min-height: 140px;box-shadow: 0px 0 3px 0px #63636350;}
.home-compliance-section .company-supports-slider .swiper-slide img{max-width: 100px;}
.home-compliance-section .company-supports-slider .swiper-slide p{ }

.inside-how{border-radius: 15px;box-shadow: 0 10px 30px 6px rgba(0, 0, 0, 0.07);background-color: #fff;}
.inside-how ul {margin: 0;padding: 0; border-top:#d9d299 solid 0px; border-right:#d9d299 solid 0px;display: inline-block;width: 100%;}
.inside-how ul li {list-style: none;text-align: center;padding: 15px 15px 15px 15px; float: left; width: 16.5%; font-size: 15px; border-bottom:#d9d299 solid 0px; border-left: #ccc solid 0px; line-height: 20px;color: #606262;}

.inside-how ul li span{font-size: 14px;color: #222;}
.inside-how ul li h3{font-size: 14px; min-height: 50px; margin: 5px 0 0 0;line-height: 20px;font-weight: 400;width: auto;}
.inside-how ul li img{width: 90px;margin: 0 auto 10px auto; display: block; background-color: #fff;border: #ccc solid 0px;}
.inside-how ul li img:hover { }

.client-page{}
.client-page ul {margin: 0;padding: 0; border-top:#d9d299 solid 0px; border-right:#d9d299 solid 0px;display: inline-block;width: 100%;}
.client-page ul li {list-style: none;text-align: center;padding: 15px 15px 15px 15px; float: left; width: 16%; font-size: 15px; border-bottom:#d9d299 solid 0px; border-left: #ccc solid 0px; line-height: 20px;}
.client-page ul li p{font-size: 13px; min-height: 60px; margin: 0;line-height: 20px;font-weight: 600;color: #444;}
.client-page ul li img{width: 120px; height: 120px;margin: 0 auto 10px auto; display: block; background-color: #fff;border-radius: 15px;padding: 10px;border: #ccc solid 1px;}
 
.home-cmmi-section{padding: 40px 0 30px 0;background-color: #fff;background-image: url("../images/map-shape-3.png"); background-repeat: repeat; background-size: 400px;}
.home-cmmi-section .section-title {margin-top: 30px;}
.home-cmmi-section .section-title img{width: 300px;}
.home-cmmi-section .section-title h2 {font-size: 27px; line-height: 36px;margin: 0 0 30px 0;}
.home-cmmi-section .boxe-cmmi{border-radius: 15px;box-shadow: 0 10px 30px 6px rgba(0, 0, 0, 0.07);background-color: #fff;max-width: 1330px;margin: 0 auto;display: flex;}
.home-cmmi-section .cmmi-level{width: 520px; margin: 20px 0 15px 0;}


/************************************/
/*** 	 	15. Our Blog css	  ***/
/************************************/

.our-blog{	padding: 40px 0px 10px 0px;}

.our-blog .section-title p {margin-top: 10px;}

.our-blog .section-title h2 {font-size: 40px;}

.post-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image{
	margin-bottom: 15px;
}

.post-featured-image a,
.post-featured-image figure{
	display: block;
	border-radius: 10px;
    cursor: none;
    overflow: hidden;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 0 / 0.87;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-content{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 5px;
    margin-bottom: 10px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

.post-item-content .show-post-date-user{margin: 15px 0 5px 0; padding: 0;display: inline-block;}
.post-item-content .show-post-date-user li{list-style: none; float: left; margin: 0 30px 0 0; font-size: 14px;}
.post-item-content .show-post-date-user li i{margin: 0 5px 0 0; font-size: 14px; color: var(--accent-color);}




/* blog-rightside */
.blog-rightside {
  max-width: 400px;
}

.blog-rightside .widget_search {
  position: relative;
}
.blog-rightside .widget_search .from-contol {
  background-color: #fff;
  width: 100%;
  height: 50px;
  border: 1px solid #d7d7d7;
  border-radius: 15px 15px 0px 15px;
  padding: 6px 20px;
  margin-bottom: 30px;
  outline: 0;
  box-shadow: none;
  transition: all 0.3s;
  position: relative;
}
.blog-rightside .widget_search button {
  border: 0;
  background-color: #e14a4a !important;
  width: 45px;
  height: 45px;
  border-radius: 15px 15px 0px 15px;
  color: #ffffff !important;
  position: absolute;
  right: 3px;
  top: 2px;
  font-size: 20px;
  padding: 5px 0 0 0;
}
.blog-rightside .widget_search button:hover {background-color: #1772cb !important;}
.blog-rightside .widget {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 5px;
  border: 0px solid #d7d7d7;
  background-color: #fff;
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,.08);
  background-image: url("../../images/header-bg.png");
}
.blog-rightside .widget .title h2 {
	position: relative;
	font-family: var(--thm-font);
	font-size: 24px;
	color: #424346;
	margin-bottom: 20px;
	padding-bottom: 20px;
	letter-spacing: -1px;
	font-weight: 700;
	border-bottom: #eaeaea solid 1px;
}
.blog-rightside .widget .title h2::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 80px;
  height: 3px;
  background: #e8b10f;
  content: "";
}
.blog-rightside .widget_catagory .current_page_item { 
  background-color: #fff7de;
}
.blog-rightside .widget_catagory ul {margin: 0; padding: 0;}
.blog-rightside .widget_catagory ul li {list-style: none;
  margin-bottom: 0; line-height: 26px;
}
.blog-rightside .widget_catagory ul li a {
  font-size: 18px;
  letter-spacing: -0.7px;
  color: rgb(99, 99, 99);
  transition: all 0.3s linear;
  padding: 5px 0;
  border-bottom: #eee solid 1px;
  display: block;
  /*display: flex;*/
  justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}
.blog-rightside .widget_catagory ul li a::before { color: #a57c00; content: "\f105";  font-family: "Font Awesome 5 Free"; font-size: 14px;  float: left; background-color: #f7f2e4;
border-radius: 50%;height: 20px;width: 20px;line-height: 20px;text-align: center;margin: 2px 10px 0px 0;font-weight: 600;}
.blog-rightside .widget_catagory ul li:last-child a {border-bottom: 0;}

.blog-rightside .widget_catagory ul li a i {
  padding-right: 5px;
}
.blog-rightside .widget_catagory ul li a span {
  text-align: right;
}
.blog-rightside .widget_catagory ul li a:hover {
  color: var(--thm-base);
}
.blog-rightside .widget_catagory ul li:last-child {
  margin-bottom: 0;
}
.blog-rightside .widget_tag {
  padding: 30px;
  border-radius: 20px 20px 0px 20px;
  border: 0px solid #d7d7d7;
}
.blog-rightside .widget_tag .title h2::before {
  
}
.blog-rightside .widget_tag ul li {
  display: inline-block;
  margin: 7px 0px; 
}
.blog-rightside .widget_tag ul li a {
  font-size: 16px;
  color: rgb(99, 99, 99);
  text-align: center;
  border: #eee solid 1px;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 15px 15px 0px 15px;
}
.blog-rightside .widget_tag ul li a:hover {
  background: #e14a4a;
  color: #ffffff;
  border: #e14a4a solid 1px;	
}

.blog-rightside .widget_gallery {
  padding: 30px;
  border-radius: 20px 20px 0px 20px;
  border: 0px solid #d7d7d7;
}
.blog-rightside .widget_gallery .title h2::before {
  
}
.blog-rightside .widget_gallery ul li {
  display: inline-block;
  margin: 7px 0px; line-height: 22px; 
}
.blog-rightside .widget_gallery ul li a i {
  color: #c39408;
  margin-right: 6px;
}
.blog-rightside .widget_gallery ul li a {
  font-size: 15px;
  color: rgb(99, 99, 99);
  text-align: center;
  border: #eee solid 1px;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 15px 15px 0px 15px;
}
.blog-rightside .widget_gallery ul li a:hover {
  background: #e14a4a;
  color: #ffffff;
  border: #e14a4a solid 1px;	
}

.blog-rightside .widget_post ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
	padding: 8px 0;
  border-bottom: #eee solid 1px;
}
.blog-rightside .widget_post ul li:last-child {
  margin-bottom: 0; border-bottom: #eee solid 0px;
}
.blog-rightside .widget_post ul li .image {
  width: 100px;
}
.blog-rightside .widget_post ul li .image img {
  width: 100%;
}
.blog-rightside .widget_post ul li .content {
  width: calc(100% - 120px);
  max-width: 200px;
  margin-left: 15px;
}

.blog-rightside .widget_post ul li .content span {
  font-size: 12px;
  color: rgb(99, 99, 99);
}
.blog-rightside .widget_post ul li .content span i {
 margin-right: 5px; font-size: 12px;
}
.blog-rightside .widget_post ul li .content h3 {
  margin-bottom: 0; line-height: 15px;
}
.blog-rightside .widget_post ul li .content h3 a {
  font-size: 14px;
  color: #144047;
  font-weight: 600;  
  transition: all 0.3s;
}
.blog-rightside .widget_post ul li .content h3 a:hover {
  color: #e14a4a;
}




/************************************/
/*** 	 	16. Footer css  	  ***/
/************************************/

.main-footer{
	padding: 100px 0 0;
	margin-bottom: 40px;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 115px;
}

.about-footer-content{
	width: 100%;
	max-width: 420px;
	margin-bottom: 30px
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-contact-details{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
}

.footer-contact-item{
	display: flex;
}

.footer-contact-item .icon-box{
	position: relative;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.footer-contact-item:hover .icon-box{
	border-color: transparent;
}

.footer-contact-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.footer-contact-item .icon-box img{
	position: relative;
	max-width: 20px;
	z-index: 1;
}

.footer-contact-item-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.footer-contact-item-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover{
	color: var(--accent-color);
}

.footer-newsletter-box{
	margin-left: 3.125vw;
}

.footer-newsletter-form .form-group{
	display: flex;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	padding: 6px;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 11px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	font-size: 14px;
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn i{
	font-size: 18px;
	color: var(--white-color);
	padding-right: 3px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover i{
	color: var(--primary-color);
}

.footer-copyright{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 40px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	text-align: right;
	margin: 0;
}

.footer-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li{
	display: inline-block;
	line-height: 1.5em;
	color: var(--white-color);
	text-transform: capitalize;
	margin-right: 30px;
}

.footer-links ul li:last-child{
	margin-right: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

/************************************/
/************************************/
/* ===============================================
    Footer
------------------------*/
.first-footer{ padding: 30px 0; }
.footer .widget{text-align: left;}
.footer .widget  ul:not(.menu-footer-services):not(.widget-text) li:not(:last-child){
  border-bottom: 0px solid rgba(255,255,255,.06);
  margin-bottom: 3px; color: #333;
}
.widget-contact-bg {background-color: transparent; padding: 0px 15px 15px 15px; background-image: url("../images/header-bg.png"); border-radius: 20px;}
.footer .widget .widget-title {
    position: relative;
    display: inline-block;
	border-bottom: #e1e1e1 solid 1px;
	color: #052d54;
	padding: 0 0 15px 0;
	margin: 0px 0 15px 0;
	width: 100%;
	font-size: 20px;
	font-weight: 600
}
.footer .widget .widget-title::after {
  position: absolute;
  content: '';
  left: 0;
  top: 38px;
  width: 75px;
  height: 3px;
  background-color: #e8b610;
}
.widget ul{ margin: 0; padding: 0; }
.widget ul>li {list-style: none;
    padding: 0 0 0 0;
    position: relative;
}
.widget a {
    display: inline-block;
    position: relative;
}
.footer .widget {
    margin: 16px 0 12px;
}
.footer .widget hr{
    border-bottom: #e1e1e1 solid 1px;
}
.follow-title {
    position: relative;
    display: inline-block;
	border-bottom: #e1e1e1 solid 1px;
	color: #052d54;
	padding: 0 0 15px 0;
	margin: 0 0 15px 0;
	width: 100%;
	max-width: 270px;
	font-size: 15px;
	display: none;
}
.follow-title::after {
  position: absolute;
  content: '';
  left: 0;
  top: 33px;
  width: 75px;
  height: 2px;
  background-color: #e8b610;
}
.myfooter{background-image: url('../images/footer-bg.jpg'); background-size: 350px;background-color: #f7f7f7;padding:0;box-shadow: 0px 5px 10px 15px rgba(0,0,0,.05);}
.myfooter .widget a{color: #606262;}
.myfooter .widget a:hover{color: #052d54;text-decoration: underline;}

.myfooter .widget .menu-footer-services li:before{
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 12px;
	color: #052d54;
	font-weight: 400;
    content: "\f105";
    font-family: "FontAwesome";
}
.myfooter .widget-text li{/*float: left; width: 50%;*/list-style: none;}
.myfooter .widget-text li:before{
	position: absolute;
	left: 0;
	top: 5px;
	font-size: 12px;
	color: #052d54;
	font-weight: 400;
    content: "\f105";
    font-family: "FontAwesome";
}
.myfooter .widget-text li a{padding: 5px 15px;font-size: 16px;}
.myfooter .widget-contact li:nth-child(3) a {font-size: 18px; color: #e4981a; font-weight: bold;}
.myfooter .widget-contact li:nth-child(3) a:hover {color: #052d54;}
.myfooter .widget-contact li:nth-child(4) a {font-size: 15px; color: #484848; font-weight: 500;}
.myfooter .widget-contact li:nth-child(4) a:hover {color: #052d54;}
.myfooter .widget-contact li:nth-child(5) a {font-size: 15px; color: #484848; font-weight: 500;}
.myfooter .widget-contact li:nth-child(5) a:hover {color: #052d54;}
.myfooter .widget-contact li:nth-child(6) a {font-size: 15px;margin: 0 0 5px 0;}
/* second-Footer
------------------------*/

.footer .second-footer .second-footer-inner{ padding: 15px 0; }

.widget-contact {
  background-color: #fff;
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,.08);
  padding: 15px !important;
  border-radius: 10px;
}

/* widget-contact*/
.widget ul.widget-contact li{
    padding-left: 35px;
    position: relative;
	color: #515151;
    padding-bottom: 5px;
    line-height: 24px;
	font-size: 15px;
	padding-top: 5px;
}
.widget-contact li i {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 16px;
	color: #052d54;
    margin: 0 4px;
}

/** widget_nav_menu **/
.widget.widget_nav_menu a {
    font-weight: 400;
    font-size: 16px;
	padding: 5px 15px;
}

/* widget-post*/
ul.ttm-recent-post-list>li>a {
    font-size: 15px;
    line-height: 21px;
    display: block;
}
ul.ttm-recent-post-list>li img {
    display: block;
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 18px;
}
ul.ttm-recent-post-list>li {
    padding: 0;
    text-align: left;
    padding-bottom: 15px;
}
ul.ttm-recent-post-list>li:not(:last-child) {
    padding-top: 5px;
}
ul.ttm-recent-post-list>li:last-child{padding-bottom: 0;}
ul.ttm-recent-post-list>li:not(:last-child),
.sidebar-right ul.widget-menu li:not(:last-child){
  border-bottom: 1px solid #e9e9e9;
}
ul.ttm-recent-post-list>li:not(:last-child){
  margin: 0 0 15px 0;
}
ul.ttm-recent-post-list>li .post-date {
    display: block;
    font-size: 12px;
}


/* menu-Footer-services
------------------------*/
.widget ul#menu-footer-services li a{
    padding-left: 19px;
}
.widget ul#menu-footer-services li a:before {
    content: "";
    background-color: #8c8c8c;
    width: 10px;
    height: 1px;
    position: absolute;
    left: 1px;
    top: 13px;
}
.widget ul#menu-footer-services li a:after {
    content: "";
    background-color: #8c8c8c;
    width: 1px;
    height: 57px;
    position: absolute;
    left: 1px;
    top: 4px;
}
.widget ul#menu-footer-services li:nth-last-child(2) a:after, .widget ul#menu-footer-services li:nth-last-child(1) a:after {
    height: 22px;
    top: 0;
}
.widget ul#menu-footer-services li:last-child a:after {
    height: 23px;
}
.widget ul#menu-footer-services li:nth-child(even) {
    width: 40%;
    margin-left: 5%;
}
.widget ul#menu-footer-services li {
    display: inline-block;
    width: calc(50% - 2px);
    float: none;
    padding: 0 0 8px 0;
    position: relative;
    text-align: left;
}

/* bottom-footer */
.ttm-footer2-left, .ttm-footer2-right {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
}
.ttm-footer2-right {
    text-align: right;
}
.footer .company-info{display: table;}
.footer .company-logo{
  display: table-cell;
  margin-right: 20px;
	padding: 0 20px 0 0;
	border-right: #445195 solid 1px;
  vertical-align: middle;
}
.footer .company-desc{display: table-cell;  font-size: 13px;  vertical-align: middle; color: #b3b3b3; line-height: 20px;}
.footer .company-logo img{max-height: 60px;} 

.footer-widget__about .footer-logo {margin: 20px 0;
  max-width: 280px;}
 
 .footer-logo img{
    height: 65px;
    width: auto;
}

.footer-widget__about {
	padding-right: 0px;
}
.footer-widget__about p {
  margin: 0 0 25px 0;
  font-size: 15px;
  line-height: 22px;
  color: #575757;
}

.site-footer__bottom {
	background-color: var(--thm-black); 
	background-image: url("../../images/header-bg.png");
}

.site-footer__bottom .inner-container {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	border-top: #d5d5d5 solid 1px;
	-webkit-box-pack: justify;
	justify-content: space-between;
	line-height: 20px;
    padding: 20px 15px;
}
.site-footer__bottom .inner-container .left-copy {margin: 0;font-size: 14px; line-height: 20px; color: #848484;}
.site-footer__bottom .inner-container .left-copy span { font-weight: 500; font-size: 14px; color: #052d54; text-transform: uppercase;padding: 0 3px;}
.site-footer__bottom .inner-container .right-devp {margin: 0;text-align: right;font-size: 14px; line-height: 20px; color: #848484;} 
.site-footer__bottom .inner-container .right-devp a { font-weight: 500; font-size: 14px; color: #052d54; text-decoration: underline;}
.site-footer__bottom .inner-container .right-devp a:hover {color: #bd9b16;}

ul.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    padding-top: 0;
    padding-bottom: 5px;
}
ul.social-icons li{display: inline-block;}
ul.social-icons li a{
    width: 36px;
    height: 36px;
    line-height: 36px;
   background-color: #fff;
	color: #052d54;
  font-size: 17px;
  display: block;
  text-align: center;
  border-radius: 20%;
  border: #d2d1d1 solid 1px;
}
/*ul.social-icons li:nth-child(1) a {background-color: #4b69b0; background: rgba(75, 105, 176, 0.5);}
ul.social-icons li:nth-child(2) a {background-color: #37b1e1; background: rgba(55, 177, 225, 0.5);}
ul.social-icons li:nth-child(3) a {background-color: #2ba63a; background: rgba(43, 166, 58, 0.5);}
ul.social-icons li:nth-child(4) a {background-color: #dd2a7b; background: rgba(221, 42, 123, 0.5);}
ul.social-icons li:nth-child(5) a {background-color: #0678b6; background: rgba(6, 120, 182, 0.5);}
ul.social-icons li:nth-child(6) a {background-color: #e83f3a; background: rgba(232, 63, 58, 0.5);}*/

.ttm-footer2-right p{margin-bottom: 4px;color: #b3b3b3;}
.ttm-footer2-right p span{color: #e1e1e1; font-weight: bold;text-transform: uppercase;}
.ttm-footer2-right p a{color: #e1e1e1; text-decoration: underline;}
.ttm-footer2-right p a:hover{color: #fff; text-decoration: overline;}

.whatsapp-inq{position:fixed;text-align:center; height:45px;width:160px; font-size:15px;font-family: 'Poppins', sans-serif; line-height:45px;background:linear-gradient(90deg,#13be62 0,#019346 100%); border-radius:30px;color:#fff;bottom:20px;z-index:999;left:20px;box-shadow:0 0 6px rgb(0 0 0 / 20%)}
.whatsapp-inq:hover{color:#fff; background:linear-gradient(90deg,#019346 0,#019346 100%);}
.whatsapp-inq i{font-size:19px;margin-right:5px}



/************************************/
/*** 	 17. About Us Page css	  ***/
/************************************/


.page-header2 {position: relative;background: url('../images/slide1.jpg') no-repeat;background-position: center center;background-size: cover;border-radius: 0px;padding: 80px 0;overflow: hidden;}
.page-header2::before {content: '';position: absolute;top: 0;bottom: 0;left: 0;right: 0;background: linear-gradient(180deg, rgba(38, 80, 94, 0) -24.69%, rgba(38, 80, 94, 0.9) 67.71%);width: 100%;height: 100%;z-index: 1;}
.page-header-box2 {position: relative;text-align: left;z-index: 1;}
.page-header-box2 h1 {display: inline-block;font-size: 50px;font-weight: 600;line-height: 1.1em;color: var(--white-color);margin-bottom: 20px;cursor: none;}
.page-header-box2 p{text-align: justify; line-height: 24px; margin: 20px 0 0 0; color: #cecece; font-size: 16px;}
.page-header-box2 ol {margin: 0;padding: 0;}
.page-header-box2 ol li.breadcrumb-item {font-size: 16px;text-transform: capitalize;line-height: normal;color:#BFBFBF;}
.page-header-box2 ol {margin: 0;padding: 0;}
.page-header-box2 ol li i{margin: 0 5px 0 0; font-size: 12px; color: #BFBFBF;}
.page-header-box2 ol li.breadcrumb-item.active {color:#BFBFBF;}
.page-header-box2 ol .breadcrumb-item+.breadcrumb-item::before {color: #A2A2A2;}
.page-header-box2 ol li.breadcrumb-item a {color: inherit;}

.sp-title {margin-bottom: 20px;text-align: center;}
.sp-title h2 {text-transform: uppercase;font-size: 22px;color: var(--primary-color);font-weight: 600;position: relative;display: inline-block;padding-left: 15px;}
.sp-title h2::before {position: absolute;left: 0px;top: 5px;width: 5px;height: 5px;content: "";background: #e14a4a;}
.sp-title h2::after {position: absolute;left: 0px;bottom: 8px;width: 5px;height: 5px;content: "";background: #c39408;}
.sp-title h3 {font-size: 40px;color: var(--primary-color);font-weight: 600;position: relative;margin-bottom: 30px; padding-bottom: 25px; border-bottom: #eaeaea solid 1px;}
.sp-title h3::after {position: absolute;content: "";left: 40%;top: 71px;width: 20%;height: 4px;background-color: rgb(221, 167, 7);}


.page-header{
	position: relative;
	background: url('../images/About-Page-Banner.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 0px;
	padding: 70px 0;
	overflow: hidden;
}

.page-header::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(38, 80, 94, 0) -24.69%, rgba(38, 80, 94, 0.9) 67.71%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
    font-size: 55px;
	font-weight: 600;
    line-height: 1.1em;
	color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box h3{
	display: inline-block;
    font-size: 20px;
	font-weight: 600;
    line-height: 1.1em;
	color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	line-height: normal;
	color: #D7D7D7;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: #e4981a;
	content: '\f105';
	font-family: 'FontAwesome';
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.our-approach{
    padding: 100px 0;
}

.approach-item-list{
    margin-right: 15px;
}

.approach-item{
    background: var(--accent-color);
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 40px;
}

.approach-item:last-child{
    margin-bottom: 0;
}

.approach-item:nth-child(even){
    background-color: var(--primary-color);
}

.approach-item .icon-box{
    position: relative;
	display: inline-block;
	padding: 0 10px 10px 0;
    margin-bottom: 30px;
}

.approach-item .icon-box::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	background: var(--dark-divider-color);
	border-radius: 50%;
	height: 40px;
	width: 40px;
}

.approach-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.approach-item-content h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.approach-item-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.approach-image-box{
    position: relative;
    height: 100%;
}

.approach-image-box figure{
    display: block;
    height: 100%;
    border-radius: 20px;
}

.approach-image-box img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    border-radius: 20px;
}

.approach-image-content{
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    z-index: 1;
}

.approach-image-content h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.approach-image-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.our-care{
    padding: 50px 0 20px 0;
}

.our-care-images{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: start;
}

.care-image-1{
    position: relative;
    width: calc(100% - 240px);
}

.care-image-1 figure,
.care-image-2 figure{
    display: block;
    border-radius: 20px;
}

.care-image-1 figure img,
.care-image-2 figure img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.care-image-1 figure img{
    aspect-ratio: 1 / 1.178;
}

.care-image-2 figure img{
    aspect-ratio: 1 / 1;
}

.care-image-1 .recovery-circle{
    position: absolute;
    bottom: -30px;
    transform: translateY(50%);
    left: 60px;
}

.care-image-1 .recovery-circle a img{
    max-width: 170px;
}

.our-care-images .trusted-profession-box{
    width: 200px;
    margin: 20px;
}

.care-image-2{
    position: relative;
    width: 100%;
    max-width: 305px;
    margin-top: -245px;
    z-index: 1;
}

.our-care-content{
    margin-left: 10px;
}

.care-counter-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0px;
}

.care-counter-item{
	width: calc(24.33% - 20px);
	background: var(--white-color);
    border: 1px solid var(--divider-color);
	padding: 15px 5px;
	border-radius: 25px;
	text-align: center;
}

.care-counter-item .icon-box{
    position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px auto;
	overflow: hidden;
}

.care-counter-item .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.care-counter-item:hover .icon-box::before{
	transform: scale(1);
}

.care-counter-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.care-counter-item-content h2{
    font-size: 35px;
	line-height: 1.1em;
    margin-bottom: 20px;
}

.care-counter-item-content p{
    margin-bottom: 0; color: #333;
}

.home-counter-section{ padding: 60px 0;background-image: url("../images/map-shape-3.png"); background-position: center center; background-size: 400px;}
.home-counter-section .section-title{}
.home-counter-section .section-title h2{font-size: 40px;}

.our-results{
    padding: 100px 0;
}

.result-item{
    position: relative;
	display: flex;
	margin-bottom: 40px;
    z-index: 1;
}

.result-item:after{
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    top: 60px;
    border-left: 1px solid var(--divider-color);
    width: 1px;
    height: 100%;
    z-index: 0;
}

.result-item:last-child:after{
    display: none;
}

.result-item:last-child{
	margin-bottom: 0;
}

.result-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	z-index: 1;
}

.result-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
	
.result-item:hover .icon-box::before{
	transform: scale(1);
}

.result-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.result-item-content{
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.result-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.result-item-content p{
	margin-bottom: 0;
}

.result-image-box{
    position: relative;
    margin-left: 15px;
    padding-left: 80px;
    overflow: hidden;
}

.result-image figure,
.result-list-image figure{
    display: block;
    border-radius: 20px;
}

.result-image-box img,
.result-list-image img{
    width: 100%;
    aspect-ratio: 1 / 1.135;
    object-fit: cover;
    border-radius: 20px;
}

.result-image-list-box{
    position: absolute;
    bottom: 50px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.result-list-image{
    width: calc(50% - 10px);
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
}

.team-image a,
.team-image figure{
	display: block;
	cursor: none;
	border-radius: 20px;
	overflow: hidden;
}

.team-image img{
    width: 100%;
	aspect-ratio: 1 / 1.32;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.07);
}

.team-social-icon{
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.team-social-icon ul li a{
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	font-size: 18px;
	color: inherit;
}

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 18. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.page-services .service-item{
	background: var(--secondary-color);
}

/************************************/
/*** 	 19. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 20px;
	margin-right: 20px;
}

.page-category-list{
	background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-category-list h3{
    font-size: 20px;
    text-transform: capitalize;
	margin-bottom: 30px;
}

.page-category-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.page-category-list ul li{
    margin-bottom: 5px;
}

.page-category-list ul li:last-child{
    margin: 0;
}

.page-category-list ul li a{
	position: relative;
    display: block;
    line-height: 22px;
    text-transform: capitalize;
    color: #3C3C3C;
	font-weight: 600;
    background: var(--white-color);
    border-radius: 10px;
    padding: 12px 45px 12px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.page-category-list ul li:hover a{
    color: var(--white-color);
}
.page-category-list .active-side-menu{
    color: var(--white-color);
 
    background: var(--accent-color);
 
	
}

.page-category-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-text.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover::before{
    filter: brightness(0) invert(1);
}

.page-category-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-category-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
    background: var(--primary-color);
    border-radius: 20px;
    padding: 40px;
}

.sidebar-cta-content{
    margin-bottom: 15px;
}

.sidebar-cta-content h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-cta-content p{
    color: var(--white-color);
    margin-bottom: 0;
}

.sidebar-contact-box{
    display: flex;
    align-items: center;
    background: var(--dark-divider-color);
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 30px;
}

.sidebar-contact-box .icon-box{
    width: 60px;
    height: 60px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-contact-box .icon-box{
    background: var(--accent-color);
}

.sidebar-contact-box .icon-box img{
    width: 100%;
    max-width: 35px;
}

.sidebar-contact-content p{
    color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-contact-content h3{
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
}

.sidebar-contact-content h3 a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.sidebar-contact-content h3 a:hover{
    color: var(--accent-color);
}

.sidebar-cta-image figure{
    display: block;
    border-radius: 10px;
}

.sidebar-cta-image img{
    width: 100%;
    aspect-ratio: 1 / 0.48;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img{
    transform: scale(1.1);
}

.page-single-image{
	margin-bottom: 40px;
}

.page-single-image figure{
	display: block;
	border-radius: 20px;
}

.page-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.581;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry h2{
    font-size: 46px;
    margin-bottom: 20px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.service-entry ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.service-support-step,
.service-priority-box,
.service-empower-box{
    margin-top: 60px;
}

.support-step-box{
    background: var(--secondary-color);
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
}

.support-step-image-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.support-step-image,
.support-step-content{
    width: calc(50% - 15px);
}

.support-step-image figure{
    display: block;
    border-radius: 20px;
}

.support-step-image img{
    width: 100%;
    aspect-ratio: 1 / 0.58;
    object-fit: cover;
    border-radius: 20px;
}

.support-step-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.support-step-item-list .care-counter-item{
    width: calc(25% - 22.5px);
}

.support-step-item-list .care-counter-item .care-counter-item-content h2{
    margin-bottom: 10px;
}

.service-priority-item-list{
    margin-top: 40px;
}

.service-priority-item-list .what-we-item .icon-box h3{
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    z-index: 1;
}

.service-empower-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-empower-content,
.service-empower-image{
    width: calc(50% - 15px);
}

.service-empower-item-list{
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.service-empower-image figure{
    display: block;
    border-radius: 20px;
    height: 100%;
}

.service-empower-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/*** 	 20. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-blog .post-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}
 
.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: var(--accent-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/*** 	 21. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta{
	margin-top: 5px;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 600;
	line-height: 1.1em;
	margin: 0 0 0.435em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--divider-color);
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
	font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	22. Case Study Page css	  ***/
/************************************/

.page-case-study{
	padding: 100px 0 60px;
}

.case-study-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.case-study-image{
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.case-study-image::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	transform: scale(0);
    background: var(--primary-color);
	border-radius: 20px;
	opacity: 60%;
    width: 100%;
    height: 100%;
	transition: all 0.4s ease-in-out;
    z-index: 1;
}

.case-study-item:hover .case-study-image::before{
	transform: scale(1);
}

.case-study-image figure{
	display: block;
}

.case-study-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image figure img{
	transform: scale(1.1);
}

.case-study-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.case-study-btn a{
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.case-study-btn a img{
	width: 100%;
	max-width: 30px;
	transform: rotate(0deg);
	transition: 0.4s ease-in-out;
}

.case-study-btn a:hover img{
	
	transform: rotate(-10deg);
}

.case-study-content h2{
	font-size: 20px; margin: 10px 0;
}

.case-study-content h2 a{
	color: inherit;
}


.case-study-content ul {margin: 0 0 0 20px; padding: 0;  font-size: 15px;}
.case-study-content ul li {list-style: none;position: relative;line-height: 18px; margin: 0 0 10px 0;letter-spacing: 0px;text-align: left;}
.case-study-content ul li::before {content: '\f105'; line-height: 20px; font-size: 16px; font-family: "Font Awesome 5 Free"; color: #cca00a; font-weight: 900; position: absolute;left: -20px; top: 0px;}

/************************************/
/***  23. Case Study Single css	  ***/
/************************************/

.page-case-study-single{
    padding: 100px 0;
}

.case-study-category-list{
	background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	padding: 30px;
}

.case-study-category-list h3{
    font-size: 20px;
    text-transform: capitalize;
	margin-bottom: 30px;
}

.case-study-category-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.case-study-category-list ul li{
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
    background: var(--white-color);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.case-study-category-list ul li:last-child{
    margin: 0;
}

.case-study-category-list ul li::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.case-study-category-list ul li:hover::after{
    top: 0;
	height: 100%;
}

.case-study-category-list ul li b{
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}
    
.case-study-category-list ul li:hover,
.case-study-category-list ul li:hover b{
    color: var(--white-color);
}

.case-study-category-list ul li span{
    display: inline-flex;
    gap: 10px;
}

.case-study-category-list ul li span a{
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.case-study-category-list ul li span a:hover{
    background: var(--white-color);
}

.case-study-category-list ul li span a i{
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.case-study-category-list ul li span a:hover i{
    color: var(--primary-color);
}

.case-study-entry{
	margin-bottom: 60px;
}

.case-study-entry h2{
    font-size: 46px;
    margin-bottom: 20px;
}

.case-study-entry p{
	margin-bottom: 20px;
}

.case-study-entry p:last-child{
	margin-bottom: 0;
}

.case-study-entry ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.case-study-entry ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.case-study-entry ul li:last-child{
	margin-bottom: 0;
}

.case-study-entry ul li::before{
	content: '\f058';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.whole-person-care-box,
.long-term-care-box,
.commitment-box{
    margin-top: 60px;
}

.our-solution-box{
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-top: 40px;
    overflow: hidden;
}

.our-solution-nav .nav-tabs{
	padding: 0;
	margin: 0;
	list-style: none;
	background: var(--secondary-color);
	display: flex;
	justify-content: center;
	border: none;
    border-bottom: 1px solid var(--divider-color);
	overflow: hidden;
}

.our-solution-nav ul li{
    width: 33.33%;
    border-right: 1px solid var(--divider-color);
    margin: 0;
    padding: 0;
}

.our-solution-nav ul li:last-child,
.our-solution-nav ul li:nth-child(3n + 3){
    border-right: none;
}

.our-solution-nav ul li::before{
    display: none;
}

.our-solution-nav ul li .nav-link{
	width: 100%;
	border: none;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
	padding: 18px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}

.our-solution-nav ul li .nav-link.active,
.our-solution-nav ul li .nav-link:hover{
    background: var(--white-color);
    color: var(--accent-color);
}

.solution-box-item{
    padding: 40px;
}

.solution-item-content{
    margin-bottom: 40px;
}

.long-term-care-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.long-term-care-content,
.long-term-care-info{
    width: calc(50% - 15px);
}

.long-term-care-content ul{
    margin-top: 40px;
}

.long-term-care-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

.long-term-care-info h3{
    font-size: 20px;
}

.long-term-care-info p span{
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}

.commitment-content-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.commitment-item{
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
}

.commitment-item-header{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.commitment-item-header .icon-box{
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.commitment-item-header .icon-box::before{
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.commitment-item:hover .commitment-item-header .icon-box::before{
    transform: scale(1);
}

.commitment-item-header .icon-box img{
	position: relative;
	width: 100%;
	max-width: 40px;
	z-index: 1;
}

.commitment-item-title{
    width: calc(100% - 95px);
}

.commitment-item-title h3{
    font-size: 20px;
}

/************************************/
/***  	 24. Team Page css	   	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/*** 	 25. Team Single css	  ***/
/************************************/

.page-team-single{
	padding: 40px 0;
}

.team-member-about-box,
.team-member-info{
	margin-bottom: 50px;
}

.team-member-about-box{
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
	padding: 50px;
}

.team-member-image,
.team-member-content{
	/*width: calc(50% - 30px);*/
}

.team-member-image figure{
	display: block;
	border-radius: 20px;
}

.team-member-image img{
    width: 100%;
    aspect-ratio: 1 / 0.99;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px;
}

.member-info-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-info-list ul li{
    font-size: 20px;
	line-height: 1.5em;
	font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.member-info-list ul li:last-child{
    margin-bottom: 0;
}

.member-info-list ul li span{
    /*width: 65%;*/
    font-size: 16px;
	font-weight: 400;
    color: var(--text-color);
}

.member-social-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.member-social-list h3{
	font-size: 20px;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
    margin-right: 0;
}

.member-social-list ul li a{
	background-color: var(--accent-color);
    color: var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover{
    background: var(--primary-color);
}

.member-social-list ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-member-info .section-title{
	margin-bottom: 0;
}

.team-member-experience-contact{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.team-member-experience-box,
.team-contact-form{
	width: calc(50% - 30px);
}

.team-member-experience-box{
	background: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px;
}

.skills-progress-bar{
	margin-bottom: 40px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
	text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

/************************************/
/***  26. Testimonials Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	background: var(--accent-secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 35px;
}

.page-testimonials .testimonial-item .author-image{
	margin-bottom: 40px;
}

.page-testimonials .testimonial-item .author-image figure{
	display: inline-block;
	border-radius: 50%;
}

.page-testimonials .testimonial-item .author-image figure img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item  .author-content p{
	color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3{
	color: var(--primary-color);
}

/************************************/
/*** 	 27. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	28. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  29. FAQs Page css	 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/***   30. Contact Us Page css    ***/
/************************************/

.page-contact-us{
	padding: 50px 0;
}

.contact-us-content{
	margin-right: 15px;
}

.contact-info-box{
	border-radius: 20px;
	overflow: hidden;
}

.contact-info-list{
    display: flex;
    flex-wrap: wrap;
	gap: 40px 30px;
}

.contact-info-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
}

.contact-info-item .icon-box{
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	
	background-color: var(--primary-color);
	border-radius: 50%;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-color: var(--accent-color);
}

.contact-info-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.contact-item-content{
	width: calc(100% - 80px);
}

.contact-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
	position: relative;
  display: inline-block;
  border-bottom: #e1e1e1 solid 1px;
  color: #052d54;
  padding: 0 0 12px 0;
  margin: 0px 0 10px 0;
  width: 100%;
  font-weight: 500;
}
.contact-item-content h3::after {
  position: absolute;
  content: '';
  left: 0;
  top: 36px;
  width: 75px;
  height: 2px;
  background-color: #e8b610;
}

.contact-item-content p{
	margin-bottom: 5px;
	color: #333;
}

.contact-item-content p a{
	color: #333;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover{
	color: var(--primary-color);
}

.callus{color: #373737;
  line-height: normal;
  display: block;
  font-size: 18px;
  font-weight: 500;}
.callus span {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: #e4981a;
}

.contact-social-links{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.contact-social-links h3{
	font-size: 20px;
	margin: 0;
}

.contact-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 0px;
}

.contact-social-links ul li:last-child{
	margin-right: 0;
}

.contact-social-links ul li a{
	background: var(--primary-color);
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.contact-social-links ul li:hover a{
	background: var(--accent-color);
}

.contact-social-links ul li a i{
	font-size: 17px;
	color: var(--white-color);
}

.contact-us-form{
	background-image: url('../images/bg1.jpg');
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.09);
  background-color: #fff;
  border: #f0f0f0 solid 1px;
  background-position: top;
  background-size: 350px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 5px;
	border: #ddd solid 1px;
	padding: 10px 20px;
 
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.contact-form .btn-default{
	border-radius: 5px;
	padding: 16px 20px;
}

.contact-form .btn-default::before{
	display: none;
}

.google-map{
	margin-top: 100px;
}

.google-map iframe{
	width: 100%;
	height: 550px;
	border-radius: 20px;
	filter: grayscale(1);
	transition: all 0.4s ease-in-out;
}

.google-map iframe:hover{
	filter: grayscale(0);
}

/************************************/
/***   31. Book Appointment css	  ***/
/************************************/

.page-book-appointment{
	padding: 100px 0;
}

.appointment-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--accent-secondary-color);
	border-radius: 10px;
	padding: 18px 20px;
	border: none;
	box-shadow: none;
	outline: none;
}

.appointment-form .form-control::placeholder{
	color: var(--text-color);
}

.appointment-form form .form-group select{
	padding: 18px 30px 18px 20px;
}

.appointment-form form .form-group select option{
	color: var(--primary-color);
	font-weight: 500;
}

.appointment-image-info{
	position: relative;
	margin-left: 15px;
}

.appointment-image{
	border-radius: 20px;
	overflow: hidden;
}

.appointment-image figure{
	display: block;
}

.appointment-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(38, 80, 94, 0) 0%, rgba(38, 80, 94, 0.8) 100%);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.appointment-image img{
	width: 100%;
	aspect-ratio: 1 / 1.012;
	object-fit: cover;
}

.appointment-image-info .working-hours-box{
	right: auto;
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1300px){

	header.main-header .header-sticky.active{
		max-width: 100%;
		border-radius: 0;
		border-left: none;
		border-right: none;
		margin: 0;
	}
}

@media only screen and (max-width: 1800px){
	
	.bg-section{
		max-width: calc(100% - 40px);
		margin: 0 20px;
	}
	
	.main-footer{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 1600px){

	.hero-section{
		max-width: 100%;
	}

	.hero .container-fluid{
		padding: 0 15px;
	}
	.video-slide {height: 430px; }
	#myVideo {width: 100%; max-width: 1600px;}
	
	.page-header{padding: 50px 0;}
	.page-header-box h1 {font-size: 50px;}
	
}

@media only screen and (max-width: 1024px){

	header.main-header{
		max-width: 100%;
		margin: 0;
	}

	.main-menu ul li a{
		padding: 15px 10px !important;
	}
}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 14px 44px 14px 15px;
	}

	.btn-default::before{
		width: 30px;
        height: 30px;
        background-size: 16px auto;
	}

	.navbar{
		padding: 5px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }
	.slicknav_nav li {border-bottom: #293c4f solid 1px;}
	/*.slicknav_nav li a{border-bottom: #293c4f solid 1px;}*/

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.bg-section{
		max-width: 100%;
		border-radius: 0;
		margin: 0;
	}
	
	.section-row{
		margin-bottom: 40px;
	}

	.section-title.section-title-center{
		max-width: 100%;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title{
		margin-bottom: 15px;
	}

	.section-title h3{
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
        margin-top: 10px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}

	.hero{
		min-height: auto;
		padding: 160px 0 60px;
	}

	.hero.hero-slider-layout .hero-slide::before,
	.hero::before{
		background: linear-gradient(180deg, rgba(38, 80, 94, 0) 8.1%, rgba(38, 80, 94, 0.9) 40.8%);
		border-radius: 0;
	}

	.hero.hero-slider-layout .hero-slide{
		min-height: auto;
		padding: 40px 0 20px;
	}

	.satisfy-client-box{
		width: 53%;
	}

	.hero-section .recovery-circle{
		display: none;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		width: 100%;
		max-width: 70%;
		margin: 0 auto 30px;
	}

	.about-img-2{
		margin-top: -230px;
	}

	.about-img-2 figure img{
		aspect-ratio: 1 / 1.01;
	}

	.working-hours-header{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.working-hours-body ul li{
		margin-bottom: 5px;
	}

	.about-experience-item{
		margin-bottom: 30px;
	}

	.trusted-profession-box .icon-box{
		margin-bottom: 30px;
	}

	.about-us-btn{
		margin-top: 30px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item{
		padding: 30px 20px;
	}

	.service-title,
	.service-item .icon-box,
	.service-content{
		margin-bottom: 30px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p span{
		font-size: 14px;
		margin-right: 5px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-us-content{
		margin-bottom: 30px;
	}

	.why-choose-item-box{
		margin-top: 30px;
	}

	.why-choose-item h3{
		margin-bottom: 10px;
	}

	.why-choose-image-box{
		margin: 0 80px;
	}

	.why-choose-image img{
		margin-bottom: -50px;
	}

	.why-choose-image-box .satisfy-client-box{
		padding: 15px;
		gap: 15px;
	}

	.our-feature{
		padding: 50px 0 20px;
	}

	.feature-item{
		padding: 30px 25px;
	}

	.feature-item .icon-box img{
		max-width: 80px;
	}

	.feature-item-header{
		padding: 0 50px 40px 0;
		margin-bottom: 20px;
	}

	.feature-item-content{
		margin-bottom: 20px;
	}

	.feature-counter-content h2{
		font-size: 32px;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-image-box{
		margin: 0 0 30px;
	}

	.what-we-image img{
		aspect-ratio: 1 / 0.6;
	}

	.what-we-contact-box{
		margin-top: 20px;
	}

	.what-we-item{
		margin-bottom: 30px;
	}

	.what-we-item-content h3{
		margin-bottom: 5px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.work-item{
		width: calc(50% - 15px);
	}

	.work-item:nth-child(2n + 2):before{
		display: none;
	}

	.work-item-image{
		margin-bottom: 20px;
	}

	.work-item-content h3{
		margin-bottom: 10px;
	}

	.our-programs{
		padding: 50px 0;
	}

	.programs-image-box{
		padding: 30px;
		height: auto;
		margin-bottom: 30px;
	}

	.programs-item{
		padding: 20px;
	}

	.programs-body-content{
		width: calc(100% - 140px);
	}

	.programs-body-image img{
		max-width: 180px;
	}

	.programs-item-header{
		margin-bottom: 50px;
	}

	.programs-item-title h3{
		font-size: 22px;
	}

	.cta-box{
		padding: 50px 0;
	}

	.cta-box-content{
		margin-bottom: 30px;
	}

	.cta-box-list ul{
		gap: 10px 30px;
	}

	.cta-box-list ul li{
		padding-left: 25px;
	}

	.cta-box-list ul li::before{
		font-size: 16px;
	}

	.cta-box-btn{
		margin-top: 30px;
	}

	.cta-box-image{
		margin: 0 90px;
	}

	.cta-box-image img{
		margin-bottom: -50px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-content{
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 14px 40px 14px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 15px;
	}
	
	.faqs-image-box{
		margin: 0;
	}

	.faq-image img{
		aspect-ratio: 1 / 0.6;
	}

	.faqs-contact-box{
		padding: 20px 0 20px 20px;
	}

	.faqs-cta-box-content{
		width: calc(100% - 100px);
	}

	.faqs-contact-box .icon-box{
    	margin-bottom: -30px;
	}

	.faqs-contact-box .icon-box img{
		max-width: 80px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.testimonials-content{
		margin-bottom: 30px;
	}

	.testimonial-slider-box{
		border-left: none;
		border-top: 1px solid var(--dark-divider-color);
		padding: 30px 0 0;
	}

	.testimonial-author-images{
		margin-bottom: 30px;
	}

	.testimonials-rating{
		margin-bottom: 15px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.company-supports-slider{
		padding: 30px 0 0;
		margin-top: 30px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-content{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.about-footer{
		margin-bottom: 40px;
	}

	.footer-logo{
		margin-bottom: 15px;
	}

	.about-footer-content{
		max-width: 100%;
		margin-bottom: 20px;
	}

	.footer-contact-item-content h3{
		margin-bottom: 5px;
	}

	.footer-newsletter-box{
		margin: 0;
	}

	.footer-copyright{
		padding: 20px 0;
		margin-top: 30px;
	}

	.footer-links ul li{
		margin-right: 15px;
	}

	.page-header{
		border-radius: 0;
		padding: 40px 0;
	}
	.page-header-box ol li.breadcrumb-item {
		font-size: 14px;}

	.page-header-box h1{
		font-size: 50px;
	}

	.our-approach{
        padding: 50px 0;
    }

    .approach-item-list{
        margin: 0 0 30px;
    }

    .approach-item{
        padding: 30px;
        margin-bottom: 20px;
    }

    .approach-item .icon-box{
        margin-bottom: 20px;
    }

    .approach-image-box,
    .approach-image-box figure,
    .approach-image-box img{
        height: auto;
    }

    .approach-image-box img{
        aspect-ratio: 1 / 0.55;
    }

    .approach-image-content{
        padding: 20px;
    }

    .our-care{
        padding: 50px 0;
    }

    .our-care-images{
        margin: 0 65px 30px;
    }

    .our-care-content,
    .care-counter-list{
        margin: 0;
    }

    .care-counter-item .icon-box{
        margin-bottom: 30px;
    }

    .care-counter-item-content h2{
        font-size: 36px;
        margin-bottom: 10px;
    }

    .our-results{
        padding: 50px 0;
    }

    .our-result-content{
        margin-bottom: 30px;
    }

    .result-item{
        margin-bottom: 30px;
    }

    .result-image-box{
        padding-left: 180px;
        margin: 0;
    }

    .result-image-list-box{
        right: 200px;
    }

    .result-list-image img{
        aspect-ratio: 1 / 1.01;
    }

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.25;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
        padding: 50px 0;
    }

    .page-single-sidebar{
		position: initial;
		margin: 0 0 30px;
	}

	.page-category-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.page-category-list h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.page-category-list ul li a{
		padding: 12px 40px 12px 15px;
	}

	.page-category-list ul li a::before{
		right: 15px;
	}

    .sidebar-cta-box{
        padding: 20px;
    }

    .sidebar-contact-box{
        margin-bottom: 20px;
    }

    .sidebar-contact-box .icon-box{
        width: 50px;
        height: 50px;
    }

    .sidebar-contact-box .icon-box img{
        max-width: 28px;
    }

    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.4;
    }

    .page-single-image{
        margin-bottom: 30px;
    }

    .service-entry{
        margin-bottom: 40px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-entry h2{
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry ul li{
        padding-left: 25px;
        margin-bottom: 15px;    
    }

    .service-entry ul li::before{
        font-size: 16px;
    }

    .service-support-step,
    .service-priority-box,
    .service-empower-box{
        margin-top: 40px;
    }

    .support-step-box{
        padding: 30px;
        margin-top: 30px;
    }

    .support-step-item-list{
        margin-top: 30px;
        padding-top: 30px;
    }

    .service-priority-item-list{
        margin-top: 30px;
    }
    
    .service-empower-item-list{
        margin-top: 30px;
        padding-top: 30px;
    }

	.page-blog{
		padding: 50px 0;
	}

	.page-blog .post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.442em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }

	.tag-links{
		font-size: 18px;
		gap: 10px;
	}
    
    .post-tags .tag-links a{
        padding: 10px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-case-study{
		padding: 50px 0 20px;
	}

	.case-study-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.case-study-image{
		margin-bottom: 15px;
	}

	.case-study-btn a{
		width: 60px;
		height: 60px;
	}

	.case-study-btn a img{
		max-width: 30px;
	}

	.page-case-study-single{
        padding: 50px 0;
    }

    .case-study-category-list{
        padding: 20px;
        margin-bottom: 30px;
    }

    .case-study-category-list h3{
        margin-bottom: 20px;
    }

    .case-study-category-list ul li{
        padding: 13px 15px;
    }

    .case-study-entry{
        margin-bottom: 40px;
    }

    .case-study-entry p{
        margin-bottom: 15px;
    }

    .case-study-entry h2{
        font-size: 36px;
        margin-bottom: 15px;
    }

    .case-study-entry ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .case-study-entry ul li::before{
        font-size: 16px;
    }

    .whole-person-care-box,
    .long-term-care-box,
    .commitment-box{
        margin-top: 40px;
    }

    .our-solution-box{
        margin-top: 30px;
    }

    .our-solution-nav ul li{
        padding: 0;
        margin: 0;
    }

    .our-solution-nav ul li .nav-link{
        padding: 13px;
    }

    .solution-box-item{
        padding: 30px;
    }

    .solution-item-content{
        margin-bottom: 30px;
    }

    .long-term-care-content ul{
        margin-top: 30px;
    }

    .long-term-care-content ul li{
        font-size: 14px;
    }
    
    .long-term-care-info{
        padding: 30px;
    }

    .long-term-care-info h3{
        font-size: 18px;
    }

    .commitment-content-list{
        gap: 20px;
        margin: 30px 0;
    }

    .commitment-item{
        width: calc(50% - 10px);
        padding: 20px;
    }

    .commitment-item-header{
        margin-bottom: 20px;
    }

    .commitment-item-header .icon-box{
        width: 60px;
        height: 60px;
    }

    .commitment-item-header .icon-box img{
        max-width: 30px;
    }

    .commitment-item-title{
        width: calc(100% - 75px);
    }

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-member-about-box,
	.team-member-info{
		margin-bottom: 50px;
	}

	.team-member-about-box{
		padding: 30px;
	}

	.team-member-image,
	.team-member-content{
		width: 100%;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.8;
	}

	.member-info-list ul li{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.member-social-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.member-social-list h3{
		font-size: 18px;
	}

	.team-member-experience-box,
	.team-contact-form{
		width: 100%;
	}

	.team-member-experience-box{
		padding: 30px;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item{
		padding: 20px;
	}

	.page-testimonials .testimonial-item .author-image{
		margin-bottom: 20px;
	}

	.page-testimonials .testimonial-item .author-image figure img{
		max-width: 50px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 20px 0;
	}
	.contact-item-content p {
	  font-size: 15px;
	}

	.contact-us-content{
		margin: 0 0 30px 0;
	}

	.contact-social-links{
		margin-top: 30px;
    	padding-top: 30px;
	}

	.contact-us-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 10px 15px;
	}

	.google-map{
		margin-top: 50px;
	}

	.google-map iframe{
		height: 450px;
	}

	.page-book-appointment{
		padding: 50px 0;
	}

	.book-appointment-content{
		margin-bottom: 30px;
	}

	.appointment-form .form-control{
		padding: 15px;
	}

	.appointment-form form .form-group select{
		padding: 15px 30px 15px 15px;
	}

	.appointment-image-info{
		margin-left: 0;
	}

	.appointment-image img{
		aspect-ratio: 1 / 0.8;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px; line-height: 40px;
	}

	.section-title h2{
		font-size: 22px; line-height: 28px;
	}

	.hero-body{
		gap: 15px;
	}

	.satisfy-client-box{
		width: 100%;
	}

	.about-us-images{
		max-width: 100%;
	}

	.about-img-1{
		margin-left: 110px;
	}

	.about-img-2{
		max-width: 240px;
        margin-top: -170px;
    }

	.working-hours-box{
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.working-hours-body ul li{
		font-size: 14px;
	}

	.about-experience-box,
	.trusted-profession-box{
		width: 100%;
	}

	.about-experience-item{
		margin-bottom: 20px;
	}

	.about-experience-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.about-experience-item .icon-box img{
		max-width: 26px;
	}

	.about-experience-content{
		width: calc(100% - 65px);
	}

	.about-experience-content h3{
		font-size: 18px;
	}

	.trusted-profession-box .icon-box{
        margin-bottom: 20px;
    }

	.service-item{
        padding: 20px;
    }

	.service-title,
	.service-item .icon-box,
	.service-content{
        margin-bottom: 20px;
    }

	.service-title h3{
		font-size: 18px;
	}

	.service-item .icon-box{
		padding: 0 8px 8px 0;
	}

	.service-item .icon-box img{
		max-width: 40px;
	}

	.service-item .icon-box::before{
		width: 35px;
		height: 35px;
	}

	.section-footer-text p{
		font-size: 14px;
	}

	.why-choose-item-box{
		gap: 20px;
	}

	.why-choose-item{
		width: 100%;
	}

	.why-choose-item h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-image-box{
		margin: 0;
	}

	.why-choose-image{
		padding: 0 0 0 20px;
	}

	.why-choose-image-box .satisfy-client-box{
		max-width: 215px;
		bottom: 10px;
		padding: 10px;
	}

	.why-choose-image-box .satisfy-client-box .satisfy-client-content p{
		font-size: 14px;
	}

	.feature-item{
        padding: 20px;
    }

	.feature-item .icon-box img{
        max-width: 60px;
    }

	.feature-item-header{
		padding-bottom: 20px;
	}

	.feature-item-header h3{
		font-size: 18px;
	}

	.feature-counter-content h2{
		font-size: 26px;
	}

	.feature-counter-icon{
		width: 50px;
		height: 50px;
	}

	.feature-counter-icon img{
		max-width: 26px;
	}

	.what-we-contact-item-content h3{
		font-size: 18px;
	}

	.what-we-item{
        margin-bottom: 20px; 
    }

	.what-we-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	/*.what-we-item .icon-box img{
		max-width: 26px;
	}*/

	.what-we-item-content{
		width: calc(100% - 65px);
	}

	.what-we-item-content h3{
		font-size: 18px;
	}

	.what-we-item-content p{
		font-size: 14px;
	}

	.work-item{
		width: 100%;
	}

	.work-item::before{
		display: none;
	}

	.work-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.programs-image-box{
		padding: 20px;
	}

	.programs-item-body{
        margin-right: -20px;
    }

	.programs-body-content{
		width: calc(100% - 120px);
    }
	
	.programs-body-content p{
		font-size: 14px;
	}

	.programs-body-image{
		margin-right: -20px;
	}

	.programs-body-image img{
        max-width: 120px;
    }

	.programs-item{
		width: 100%;
	}

	.programs-item-header{
        margin-bottom: 30px;
    }

	.programs-item-title h3{
		font-size: 18px;
	}

	.cta-box-image{
        margin: 0;
    }

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faqs-cta-box-content h3{
		font-size: 18px;
	}

	.faqs-contact-box{
		right: 15px;
        bottom: 15px;
		left: 15px;
    }

	.faq-image img{
        aspect-ratio: 1 / 0.9;
    }

	.faqs-cta-box-content{
        width: calc(100% - 80px);
    }

	.faqs-contact-box .icon-box{
        margin-bottom: -20px;
    }

	.faqs-contact-box .icon-box img{
        max-width: 60px;
    }

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-slider-btn{
		position: initial;
		justify-content: center;
		margin-top: 20px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.about-footer{
        margin-bottom: 30px;
    }

	.footer-contact-details{
		gap: 20px;
	}

	.footer-contact-item{
		width: 100%;
	}

	.footer-contact-item-content h3{
		font-size: 18px;
	}

	.footer-newsletter-box .section-title{
		margin-bottom: 20px;
	}

	.footer-copyright{
		justify-content: center;
		padding: 15px 0;
	}

	.footer-links ul li{
		font-size: 14px;
		margin-right: 10px;
	}

	.page-header-box h1{
		font-size: 30px;
	}
	.page-header-box h3{
		font-size: 17px;
	}

	.approach-item{
        padding: 20px;
    }

    .approach-item .icon-box{
        padding: 0 8px 8px 0;
    }
    
    .approach-item .icon-box::before{
        width: 35px;
        height: 35px;
    }

    .approach-item .icon-box img{
        max-width: 40px;
    }

    .approach-item-content h3,
    .approach-image-content h3{
        font-size: 18px;
    }

    .approach-image-box img{
        aspect-ratio: 1 / 0.88;
    }

    .approach-image-content{
        padding: 15px;
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .approach-image-content p{
        font-size: 14px;
    }

    .our-care-images{
        gap: 20px;
        margin: 0 0 30px;
    }

    .care-image-1{
        width: 100%;
    }
    
    .care-image-1 figure img,
    .care-image-2 figure img{
        aspect-ratio: 1 / 0.7;
    }

    .care-image-1 .recovery-circle{
        left: 0;
        bottom: -40px;
        transform: translateY(100%);
    }

    .care-image-1 .recovery-circle a img{
        max-width: 110px;
    }

    .our-care-images .trusted-profession-box{
        margin: 0;
    }

    .care-image-2{
        margin: 0;
        max-width: 100%;
    }

    .care-counter-list{
        gap: 30px 20px;
    }

    .care-counter-item{
        width: calc(50% - 10px);
    }

    .care-counter-item .icon-box{
		width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .care-counter-item .icon-box img{
        max-width: 26px;
    }

    .care-counter-item-content h2{
        font-size: 26px;
        margin-bottom: 5px;
    }

	.result-item{
        margin-bottom: 20px;
    }

	.result-item:after{
		left: 25px;
		top: 45px;
	}

	.result-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.result-item .icon-box img{
		max-width: 26px;
	}

	.result-item-content{
		width: calc(100% - 65px);
	}

	.result-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.result-item-content p{
		font-size: 14px;
	}

	.result-image-box{
		padding-left: 0;
	}

	.result-image-list-box{
		position: initial;
		margin-top: 20px;
	}

	.team-content h3{
    	font-size: 18px;
	}

	.page-category-list h3{
        font-size: 18px;
    }

    .page-category-list ul li{
        margin-bottom: 15px;
    }

    .sidebar-cta-content h3{
        font-size: 18px;
    }

	.sidebar-contact-content p{
		margin-bottom: 5px;
	}

    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.6;
    }

    .page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}

    .service-entry h2{
        font-size: 26px;
    }

	.service-entry ul li{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .support-step-box{
        padding: 20px;
    }

    .support-step-image-content{
        gap: 20px;
    }

    .support-step-image,
    .support-step-content{
        width: 100%;
    }

    .support-step-item-list{
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .support-step-item-list .care-counter-item{
        width: calc(50% - 15px);
    }

    .support-step-item-list .care-counter-item .care-counter-item-content h2{
        margin-bottom: 5px;
    }

    .service-priority-item-list .what-we-item .icon-box h3{
        font-size: 18px;
    }

	.service-empower-box{
        gap: 20px;
    }

    .service-empower-content,
    .service-empower-image{
        width: 100%;
    }

    .service-empower-item-list{
        margin-top: 20px;
        padding-top: 20px;
    }

    .service-empower-image figure,
    .service-empower-image img{
        height: auto;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.case-study-content h2{
		font-size: 18px;
	}

	.case-study-category-list h3{
        font-size: 18px;
    }

    .case-study-category-list ul li{
        margin-bottom: 15px;
    }
 
    .case-study-entry h2{
        font-size: 26px;
    }

    .our-solution-nav ul li .nav-link{
        font-size: 14px;
    }

    .solution-box-item{
        padding: 20px 15px;
    }
    
    .solution-item-content{
        margin-bottom: 20px;
    }

    .long-term-care-content,
    .long-term-care-info{
        width: 100%;
    }

	.long-term-care-content ul{
        margin-top: 20px;
    }
    
    .long-term-care-info{
        padding: 20px;
        gap: 20px;
    }

    .commitment-item{
        width: 100%;
        padding: 20px 15px;
    }

    .commitment-item-title h3{
        font-size: 18px;
    }

	.team-member-about-box{
        padding: 20px;
    }

	.team-member-image img{
        aspect-ratio: 1 / 1.1;
    }

	.member-info-list ul li{
		font-size: 16px;
	}

	.member-info-list ul li span{
		width: 55%;
		font-size: 14px;
	}

	.member-social-list{
        margin-top: 20px;
        padding-top: 20px;
    }

	.member-social-list{
		gap: 10px;
	}

	.member-social-list h3{
		font-size: 16px;
	}

	.member-social-list ul li{
		margin-right: 4px;
	}

	.team-member-experience-box{
        padding: 20px;
    }

	.skills-progress-bar .skill-data{
        margin-bottom: 10px;
    }

	.skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.contact-info-list{
		gap: 20px;
	}

	.contact-info-item{
		width: 100%;
	}

	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
		margin-right: 15px;
	}

	.contact-info-item .icon-box img{
		max-width: 24px;
	}

	.contact-item-content{
		width: calc(100% - 65px);
	}

	.contact-item-content h3{
		font-size: 16px;
	}
	.contact-item-content h3::after {top: 30px;}

	.contact-social-links{
        margin-top: 20px;
        padding-top: 20px;
    }

	.contact-us-form{
        padding: 30px 20px;
    }
	.contact-us-form .mb-4{
        margin-bottom: 10px !important;
    }

	.google-map iframe{
		height: 350px;
	}

	.appointment-image img{
        aspect-ratio: 1 / 1.012;
    }
	.widget ul.widget-contact li{padding-bottom: 5px;
  line-height: 20px;
  font-size: 15px;
  padding-top: 5px;}
	.widget-contact li i {top: 9px;}
	.site-footer__bottom .inner-container{padding: 10px 0px;display: inline-block; text-align: center;}
	.site-footer__bottom .inner-container .right-devp { text-align: center;}
	.footer-widget__about p {display: none;}
	.myfooter .widget-text li {float: left; }
	.myfooter .widget-text li a {font-size: 14px;padding: 3px 15px;}
	.widget.widget_nav_menu li {float: left; }
	.widget.widget_nav_menu a {font-size: 14px;padding: 3px 15px;}
	.footer .widget .widget-title {padding: 0 0 5px 0;  margin: 0px 0 5px 0;font-size: 18px;}
	.footer .widget .widget-title::after {top: 26px;}
	.footer-widget__about .footer-logo {margin: 10px 0;}
	.footer .second-footer .second-footer-inner {padding: 0;}
	.site-footer__bottom .inner-container .left-copy {font-size: 12px;}
	.site-footer__bottom .inner-container .left-copy span {font-size: 12px;}
	.site-footer__bottom .inner-container .right-devp {font-size: 12px;}
	.site-footer__bottom .inner-container .right-devp a{font-size: 12px;}
	
	header.main-header .header-sticky.active .navbar-brand img{height: 50px;}
	
	.industry-option9 {padding: 10px 0;}
	.industry-page-9 {padding: 10px 0;}
	.industry-lay-content9 {padding: 20px 15px 0 15px;}
	.industry-lay-content9 h2 {font-size: 24px; line-height: 30px;}
	.industry-lay-content9 p {margin-bottom: 10px;}
	.industry-option9 .why-choose-image-box {padding: 20px 20px 20px 20px;}
	
	.industry-option9 .why-choose-image-box22 {padding: 20px 20px 20px 20px;}
	.industry-lay-content99 {padding: 0px 15px 0 15px;}
	.industry-lay-content99 h2 {font-size: 24px; line-height: 30px;}
	.industry-lay-content99 p {margin-bottom: 10px;}
	
	.hero-content{min-height: 210px;}
	.hero-content .section-title h1 {font-size: 22px; line-height: 28px;}
	.hero-content .section-title p {font-size: 14px; line-height: 18px;}
	.hero-content .btn-default {padding: 10px 15px;font-size: 14px;}
	
	.our-care {padding: 20px 0;}
	.our-care-content{ margin: 25px 0 0 0; }
	.welcome-counter .care-counter-item {width: calc(50% - 3px); padding: 2px 10px;}
	.our-care-content p {font-size: 15px; line-height: 22px;}
	.our-care-content .btn-default {padding: 10px 20px; font-size: 14px;}
	.home-industry-section2 {padding: 10px 0 30px 0;}
	
	.home-industry-section2 .col-lg-3 {padding-left: 5px;padding-right: 5px;width: 50%;}
	.home-industry-section2 .case-study-content h2 {padding: 11px 0;font-size: 15px;}
	.home-industry-section2 .case-study-content { margin: 0 0 10px 0;}
	
	.home-services-section2 {margin: 10px 0 20px 0;}
	.home-services-section2 .col-lg-4 {padding-left: 5px;padding-right: 5px;width: 50%;}
	.home-services-section2 .col-lg-4:last-child {display: none;}
	.home-services-section2 h3 {font-size: 16px; border-left: #fbc100 solid 2px; margin: 0 0px 10px 0; padding: 0 0 0 6px;height: 50px;}
	.home-services-section2 .case-study-image img { height: auto;}
	
	.home-services-section2 .case-study-content h2 {padding: 0px 7px; font-size: 20px; bottom: 15px; right: 15px;}
	.home-services-section2 .case-study-image {margin: 0 0 15px 0;}
	
	.home-certification-section {padding: 20px 0;}
	.home-certification-section .section-title h2 {font-size: 22px; line-height: 34px;}
	.home-certification-section p {font-size: 14px; line-height: 18px}
	.company-supports-slider {padding: 0px 0 0; margin-top: 0px;  }
	
	.home-compliance-section {padding: 20px 0;}
	.home-compliance-section .section-title h2 {font-size: 22px; line-height: 34px;}
	.home-compliance-section p {font-size: 14px; line-height: 18px}
	.home-compliance-section .section-title { margin-bottom: 15px;}
	.inside-how ul li {width: 50%;padding: 5px;border: #f0f0f0 solid 1px;}
	.inside-how ul li img {width: 70px;}
	.inside-how ul li h3 {font-size: 12px; margin: 5px 0 0 0;line-height: 15px;}
	
	.home-cmmi-section .boxe-cmmi {display: block;}
	.home-cmmi-section .col-lg-6{width: 100%;}
	.home-cmmi-section .section-title h2 {font-size: 22px;line-height: 34px;}
	.home-cmmi-section .section-title img {width: 250px;}
	
	.our-blog {padding: 20px 0 20px;}
	.our-blog .section-title h2 {font-size: 22px; line-height: 34px;}
	.our-blog .btn-default {padding: 10px 15px;font-size: 14px;}
	
	.video-slide {height: auto;}
	#myBtn {display: none;}
	
	.services-page-1 {padding: 10px 0;}
	.services-option1 {padding: 10px 0;}
	.services-lay-content1 {padding: 20px 15px 0 15px;}
	.services-lay-content1 h2 {font-size: 24px; line-height: 30px;}
	.services-lay-content1 p {margin-bottom: 10px;}
	.services-option1 .why-choose-image-box {padding: 20px 20px 20px 20px;}
	
	.services-option1 .why-choose-image-box22 {padding: 20px 20px 20px 20px;}
	.services-lay-content11 {padding: 0px 15px 0 15px;}
	.services-lay-content11 h2 {font-size: 24px; line-height: 30px;}
	.services-lay-content11 p {margin-bottom: 10px;}
	
	.company-details {margin: 0 0 15px 0;}
	.careers-page-layout-1 {padding: 15px;margin: 0 0 15px 0;}
	.careers-page-layout-1 h2 {font-size: 22px; line-height: 28px;}
	.careers-page-layout-1 p {font-size: 14px; line-height: 22px;}
	.apply-now-email h3 { margin: 0 0 10px 0;font-size: 14px;}
	.apply-now-email {display: inline-block;margin: 0px 0 15px 0;width: 100%;}
	.apply-now-email a {font-size: 14px;padding: 5px 15px;}
	
	.job-update h4 {font-size: 18px;}
	.job-update h6 {font-size: 14px;}
	.job-update ul {margin: 5px 0 5px 0;}
	.job-update ul li {font-size: 14px;margin: 0 15px 5px 0;}
	.job-update small {padding: 1px 5px; margin: 0 2px;font-size: 13px;}
	.job-update p strong {font-size: 14px;}
	
	.about-option1 {margin: 0px 0 0 0; padding: 20px 0;}
	.about-lay-content1 {padding: 15px;}
	.about-lay-content1 p {line-height: 22px; margin-bottom: 10px; font-size: 14px;}
	.about-option1 .why-choose-image-box {padding: 15px;}
	
	.about-mv1 {padding: 0;}
	.about-mv-content1 {padding: 5px;}
	.about-mv-content1 .icon img {width: 50px;}
	.about-mv-content1 h2 {font-size: 20px; line-height: 30px;}
	.about-mv-content1 p {line-height: 22px; margin-bottom: 10px; font-size: 14px;}
	
	.about-timeline {margin: 20px 0 20px 0;}
	.leadership-team {margin: 5px 0 0 0;padding: 10px 0; background-repeat: no-repeat;}
	.leadership-team .about_director_boxed {padding: 20px 10px;margin: 0 0 15px 0;}
	.director-info {margin: 0 0 2px 0;}
	.director-info .director-photo {max-width: 120px;margin: 0 15px 0 0;}
	.director-data { margin: 0px 0 0 0; width: 190px;}
	.director-data .author-info .name {font-size: 18px; margin: 0 0 1px 0;line-height: 24px;}
	.director-data .designation {font-size: 12px; margin: 0 0 1px 0;}
	.director-data span {font-size: 12px;}
	.data-for-direct p {font-size: 13px;line-height: 20px;}
	
	.core-team-boxed .director-info .director-photo img {max-width: 110px;}
	.core-team-boxed .director-data {max-width: 180px;}
	.core-team-boxed .director-data .author-info .name {font-size: 16px;}
	
	.home-counter-section { padding: 20px 0; }
	
	.why-choose .section-title h4 {font-size: 17px; line-height: 26px;}
	.why-choose .section-title p {font-size: 14px; line-height: 22px;}
	.why-org-us .section-title h2 {font-size: 20px; line-height: 26px;}
	.why-org-us .what-we-item {min-height: auto;}
	.what-we-item:last-child {margin-bottom: 15px;}
	.why-org-us .what-we-item-content h3 {font-size: 15px;}
	
	.calling strong {display: none;}
	.header-top .top-right {display: none;}
	.top-register-btn {padding: 6px 10px;}
	
	
	
}