/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
	width:93%\9; margin:0 auto\9;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url() 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	width:16px;
	height:10px;
	font-size: 12px;	
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 1;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}
.owl-theme .owl-controls.clickable .owl-buttons div.disabled, .owl-theme .owl-controls.clickable .owl-buttons div.disabled:hover{
	/*filter: Alpha(Opacity=40);/*IE7 fix
	opacity: 0.4;*/
	cursor: default;
}

.owl-controls .owl-buttons .owl-prev {
   background: url(../images/partner-slider-arrow.png) no-repeat 0 0;
}
.owl-controls .owl-buttons .owl-next {
   background: url(../images/partner-slider-arrow.png) no-repeat -27px 0; margin-left: 10px;
}
/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	opacity: 1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	background-position:0px 0px;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: 26px;
	width: 26px;
	color: #FFF;	
	font-size: 14px;
	/*background:url("../images/review_slider_arrow.png") no-repeat;*/
	line-height:26px; 
	font-size:14px; 
	text-decoration:none;
	font-weight:bold;
}

.navbar-logo {
    height: 60px; /* Adjust the height as needed */
    margin-top: -20px; /* Adjust this value to move the logo up */
}

/* Media query for screens smaller than 768px (typical tablets and phones) */
@media (max-width: 767px) {
    .navbar-logo {
        height: 40px; /* Adjusted height for smaller screens */
        margin-top: -10px; /* Adjusted margin-top for smaller screens */
    }
}

/* Media query for screens 768px and larger (typical desktop screens) */
@media (min-width: 768px) {
    .navbar-logo {
        height: 60px; /* Reverting to original height for larger screens */
        margin-top: -20px; /* Reverting to original margin-top for larger screens */
    }
}


.slider-image {
    height: 2px; /* Adjust the height as needed */
    width: auto; /* Maintains the aspect ratio */
}

.custom-section {
	background: url('images/propert.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	color: rgb(255, 255, 255);
	padding: 50px 0;
}

.custom-section .overlay {
	background-color: rgba(45,49,145,255); /* #293182 with transparency */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.custom-section .content {
	position: relative;
	z-index: 1;
}

.custom-section .left,
.custom-section .right {
	padding: 20px;
}

.header-with-line {
    font-weight: bold; /* Makes the text bold */
    position: relative; /* Allows the line to be positioned relative to the header */
    display: inline-block; /* Ensures the width of the line matches the text */
}

.header-with-line::after {
    content: '';
    display: block;
    width: 50px; /* Adjust the width of the line */
    height: 2px; /* Adjust the height of the line */
    background-color: #000; /* Color of the line */
    margin: 5px auto 0; /* Spacing around the line */
    position: absolute; /* Positions the line relative to the header */
    left: 50%; /* Centers the line horizontally */
    transform: translateX(-50%); /* Ensures the line is perfectly centered */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 2s ease-in-out;
}

@keyframes swing {
	0% { transform: rotate(0deg); }
	50% { transform: rotate(10deg); }
	100% { transform: rotate(-10deg); }
}

.service-icon {
	display: inline-block;
	font-size: 36px; /* Adjust size as needed */
	animation: swing 1s ease-in-out infinite;
}

/* Additional styles for layout, adjust as needed */
.services {
	padding: 50px 0;
	background-color: #f0f0f0;
}

.services h2 {
	color: #0b225c;
}

.services .row {
	margin-top: 30px;
}

.services-dtl {
	text-align: center;
}
