/********** Template CSS **********/

/*@import url(https://fonts.googleapis.com/css?family=Montserrat:400,500,800);*/

@import url('https://fonts.cdnfonts.com/css/afacad');



:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

body{
	/*font-family: 'Montserrat' !important;*/
	font-family: 'Afacad', sans-serif;
	background: #FFFFFF !important;
	font-size:17px !important;

}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    /*font-family: 'Montserrat' !important;*/
	font-family: 'Afacad', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #091E3E;
}
/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    /*background: var(--primary);
	background:#e8c422;*/
	background: linear-gradient(to top, #e8c422 50%, #255693 50%);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;

}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Montserrat';
    font-weight: 600;
    transition: .5s;
}
.btn {
    /*font-family: 'Nunito', sans-serif;
	font-family: 'Montserrat';*/
	font-family: 'Afacad', sans-serif;
    font-weight: 500 !important;
    transition: .5s;
	font-size: 17px !important;
    border-radius: 10px !important;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    /*font-family: 'Montserrat' !important;*/
	font-family: 'Afacad', sans-serif;
    position: relative;
    margin: 25px 8px;
    padding: 10px 20px;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 20px;
    /*color: var(--dark);*/
	color: #FFFFFF;
	margin:15px 8px;
}
.navbar-dark .navbar-nav .nav-link:hover {
	background-color:#06A3DA;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #FFFFFF;
	border-radius:10px;
	border-bottom:1px solid #fff;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    /*color: var(--primary) !important;
    border-color: var(--primary) !important;*/
	color:#FFFFFF;
	border-color:#FFFFFF;
}

.h-250{height:250px;}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        /*color: var(--dark);*/
		color:#FFFFFF;
		text-align:center;
    }
	.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
	color: #FFFFFF;
	border-radius:10px;
	border-bottom:1px solid #fff;
	text-align:center;
	margin: 0 auto;
	width: 200px;
	margin-bottom: 10px;
}
.mmenu{
	margin:0 auto;
	text-align:center;
}

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		background:#0D4B83;
		padding: 30px 0;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background:#0D4B83;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 0px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
		color:#fff;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 17px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    /*height: 5px;*/
	height: 0px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 0px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    /*height: 5px;*/
	height: 0px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 0px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*************************/

.banner_bigfont{
	font-size:48px; text-align:left;
}
.banner_p{
	max-width: 100%; 
	width: 68%; 
	text-align:justify; 
	font-size:17px;
}

.top_banner_h2{
	font-size:30px; 
	color:#fff; 
	text-align:left; 
	padding-left: 40px;
}
.top_banner_p{
	color:#fff; 
	padding-left: 40px;
}

/******************* About  ******************/

.aboutwidth{
	max-width:75% !important;
	margin: 0 auto;
	text-align:justify;
	padding-bottom: 2%;
}
.text-align-justify{text-align:justify;}

.btn-lg, .btn-group-lg>.btn {
    padding: 0.8rem 1rem !important;
    font-size: 1.25rem;
    border-radius: .3rem;
}
/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    /*background: #DDDDDD;*/
	background-image: linear-gradient(to right, #957bdc , #9cf4f5);
    border-radius: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background-image: linear-gradient(to right, #957bdc , #9cf4f5);
}

.owl-item  {
    opacity:.1;
	
	
	
	
}
.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
	opacity:1;
	/*width:800px !important;
	margin-left:-200px;*/
	
}
.textinner{
	width: 100%;
    height: 240px;
    overflow: auto;
    position: relative;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
	
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
	
}

.checked_star {
  color: #21b8ed;
  font-size:10px;
}
.test_name{
	color:#0D4B83 !important;
	font-size:17px !important;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: 50px;
        z-index: 1;
    }
	
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/homebg.png) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}




/************************************************************************************/

.search_icon_add{ border-radius:0px !important;}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background:#0D4B83 !important;
}
.carousel-control-next-icon {
	display:none;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
}
.carousel-control-prev-icon {
	display:none;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e);
}

/*********  Service  ******************/
.bg-primary_new {
    background-color: #fff !important;
}
.bg-primary_new:hover {
    background-color: #ccc !important;
}
.service-page1 {
	width: 100%;
	height: 100px;
	margin: 10px 0;
	background-image: url("../img/PropertyA.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
        }
 
.service-page1:hover {
	 background-image: url("../img/PropertyA2.png");
}
.service-page2 {
	width: 100%;
	height: 100px;
	margin: 10px 0;
	background-image: url("../img/PropertyB.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
        }
 
.service-page2:hover {
	 background-image: url("../img/PropertyB2.png");
}
.service-page3 {
	width: 100%;
	height: 100px;
	margin: 10px 0;
	background-image: url("../img/PropertyC.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
        }
 
.service-page3:hover {
	 background-image: url("../img/PropertyC2.png");
}
.service-page4 {
	width: 65%;
	height: 100px;
	margin: 10px 0;
	background-image: url("../img/PropertyD.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
	float:right;
        }
 
.service-page4:hover {
	 background-image: url("../img/PropertyD2.png");
}
.service-page5 {
	width: 65%;
	height: 100px;
	margin: 10px 0;
	background-image: url("../img/PropertyE.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
	float:left;
        }
 
.service-page5:hover {
	 background-image: url("../img/PropertyE2.png");
}
.service-page6 {
	width: 65%;
	height: 100px;
	margin: 10px 0;
	background-image: url("../img/PropertyF.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
        }
 
.service-page6:hover {
	 background-image: url("../img/PropertyF2.png");
}
		
.service-font {
    font-size: 17px !important;
    font-weight: 500 !important;
	color:#0D4B83;
}

.bluebg {
	width: 100%;
	margin: 5px 0;
	background-image: url("../img/bluebg.png");
	background-size: 100% 100% !important;
	transition: background-image 0.3s ease-in-out;
        }
.bluebg_h1{
	font-size:30px;
	font-weight:500 !important;
	text-align:center;
	color:#FFFFFF;
	margin-bottom:40px;
}
.centerimg{
	padding-top:10%;
}

.text-primary {
    color: #13AFF0 !important;
}

.checked_star {
  color: #21b8ed;
  font-size:12px;
}
.test_name{
	color:#0D4B83 !important;
	font-size:17px !important;
	font-weight:500 !important;
}
.font16{
	font-size:17px !important;
}


.social_box {
    /* background: #FFF; */
    margin: 2em;
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    transform: rotate(45deg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin: 0 auto;
}
.social_boxicon {
    width: 100%;
    height: 100%;
    transition: 0.3s linear;
    transform: rotate(-45deg) scale(1.4);
}

.social_boxrow{
	width: 85%; text-align: center; margin: 0 auto;
}
.social_boxmain {
    width:350px;
}
.social_boxicontop1 {
    margin-left: 0px;
}
.social_boxicontop2 {
    margin-top: 190px;
    margin-left: 15px;
}
.social_boxicontop3 {
    margin-left: 15px;
}
.social_boxicontop4 {
    margin-top: 190px;
    margin-left: 15px;
}
		
		
		
.col-20{
	width: calc(100% / 5);
    margin: 0 auto;
    text-align: center;
}

.case_main{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius:10px; 
	padding:15px;
}
.case_bighead{
	font-size:26px; 
	font-weight:500; 
	color:#0D4B83;
	text-align:left;
	}
.case_lightcolor{color:#13aff0;}
}
.service_mainbox{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
	border-radius:10px; 
	z-index: 10 !important;
    margin-top: -8px;
    position: relative;
    background: #FFF;
	text-align:center;
	color:#0D4B83;
	font-weight:500;
	
}
.img100{width:100%;}
.img80{width:80%;}
.img60{width:60%;}
.service_mainbox_padd10{
	padding:15px;
}

.myboxline {
  position: relative;
  padding: 10px 20px;
}

.myboxline:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 25%;
  width: 50%;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(0.25turn, transparent, black, transparent);
  border-image-slice: 1;
}

.myboxspace1{
		margin-top:170%;
}
.myboxspace2{
		margin-top:39%;
}

/*
.service_mainbox_padd10 h2:before{
	content: ""; 
	position: absolute; 
	left: 50%; bottom: 0; 
	width: 100px; height: 2px; 
	background-color: #2079df; 
	margin-left: -50px;
	}
*/
.service_price{
	padding:8px 10px;
	background:#0d4c82;
	color:#FFF;
}
.service_price1{
	padding:8px 10px;
	background:#14aff1;
	color:#FFF;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.indexlink a{color:rgba(0, 0, 0, 1);}
.indexlink a:hover{color:#13aff0;}

.WSO2{width: 200px;
    vertical-align: middle;
	margin:0 auto;
	text-align:center;
	    margin-top: 35%;
}

/*************** contact  ************************/
.contact-inputbg {
    background-color: #f9fdff !important;
}

.contactfont{
	font-size:17px !important;
	color:#0D4B83 !important;
}


/**************  footer   *********************************/
.footerbg {
	width: 100%;
	margin: 0px 0;
	background-image: url("../img/bluebg.png");
	background-size: 100% 100% !important;
	transition: background-image 0.3s ease-in-out;
        }
.text-light-size{
	font-size:17px !important;
	font-weight:600 !important;
}
.footerfont{
	font-size:15px !important;
}

/****************************************************/

/*Vertical Tabs*/
.vertical-mdl-tabs {
    margin-top: 30px;
}
.vertical-mdl-tabs .mdl-tabs__tab-bar {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 35px;
    height: inherit;
    border-bottom: none;
    border-right: 1px solid #13aff0;
	
}

.vertical-mdl-tabs .mdl-tabs__tab {
    width: 100%;
    height: 35px;
    line-height: 35px;
    box-sizing: border-box;
    letter-spacing: 2px;
}

.vertical-mdl-tabs.mdl-tabs.is-upgraded a.mdl-tabs__tab.is-active {
    border-right: 0px solid #13aff0;
	background: url("../img/line1.png") center right no-repeat;
}
.vertical-mdl-tabs.mdl-tabs.is-upgraded .mdl-tabs__tab.is-active:after {
    content: inherit;
    height: 0;
}

.vertical-mdl-tabs.mdl-tabs.is-upgraded .mdl-tabs__panel.is-active, .mdl-tabs__panel {
    padding: 0 30px;
}

.vertical-mdl-tabs.mdl-tabs .mdl-tabs__tab {
    text-align: left;
}


.mobile_min{display:block;}
.mobileimg_max{display:none;}

.smallbox{
	width:90%; 
	margin-left:10%; 
	border-radius:10px; 
	border:1px solid #B9B9B9;
	margin-bottom: 30px;
	font-size:16px;
}	
.smallboximg{
	margin-top: -20px; 
	margin-left: -15px; 
	width: 120px;
}
.smallbox_head{
	color:#13AFF0; 
	padding-left: 30px;
    margin-top: -5px;
}
.smallbox_content{
	color:#6C6C6C; 
	padding-left: 30px;
    margin-top: -5px;
}


/****************************   form validation ****************************************/

/*

.form{
    padding: 30px 40px;
}

.form-control{
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
}

.form-control label{
    color:#777;
    display: block;
    margin-bottom: 5px; 
}
 
.form-control input
{
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;   
}

.form-control input:focus{
    outline: 0;
    border-color: #777;

}

.form-control.success input {
    border-color: var(--succes-color);
}

.form-control.error input {
    border-color: var(--error-color);    
}

.form-control small{
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.form-control.error small{
    visibility: visible;
}
.form button {
    cursor: pointer;
    background-color: #3498db;
    border: 2px solid #3498db;
    border-radius: 4px;
    color: #fff;
    display: block;
    padding: 10px;
    font-size: 16px;
    margin-top:20px;
    width:100%;
}
*/

.margin0{margin:0px;}
.social_boxrow{
	position: relative; z-index: 990;
	}
/********************************************************************/

@media (max-width: 1200px) {
.aboutwidth {
    max-width: 90% !important;
}
}


@media (max-width:1199.98px) {
	.col-20{
  width: 100%;
  margin:0 auto;
  text-align: center;
  margin-top:10px;
}
	.social_boxrow{
	width: 90%; text-align: center; margin: 0 auto; position: relative; z-index: 990;
	}
	.social_boxmain {
		width:300px;
	}
	.social_boxicontop1 {
		margin-left: 0px;
	}
	.social_boxicontop2 {
		margin-top: 190px;
		margin-left: 25px;
	}
	.social_boxicontop3 {
		margin-left: 35px;
	}
	.social_boxicontop4 {
		margin-top: 190px;
		margin-left: 15px;
	}
	
	



}
@media (max-width: 991.98px) {
	.col-20{
  width: 100%;
  margin:0 auto;
  text-align: center;
  margin-top:10px;
}
	.service-page1 {
	width: 100%;
	height: 175px;
	margin: 10px 0;
	background-image: url("../img/PropertyA.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page2 {
	width: 100%;
	height: 175px;
	margin: 10px 0;
	background-image: url("../img/PropertyB.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page3 {
	width: 100%;
	height: 175px;
	margin: 10px 0;
	background-image: url("../img/PropertyC.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page4 {
	width: 100%;
	height: 175px;
	margin: 10px 0;
	background-image: url("../img/PropertyD.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page5 {
	width: 100% !important;
	height: 175px;
	margin: 10px 0;
	background-image: url("../img/PropertyE.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page6 {
	width: 100% !important;
	height: 175px;
	margin: 10px 0;
	background-image: url("../img/PropertyF.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
	.aboutwidth{
	max-width:100% !important;
	margin: 0 auto;
	text-align:justify;
}

	.case_mobile {
    position: relative !important;
    width: 100%;
    height: auto;
    display: inline-block;
    max-height: 500px;
    height: 450px !important;
}
.about_mam {
        padding-bottom: 90%;
        width: 80%;
        margin: 0 auto;
    }
	
.social_boxrow{
	width: 90%; text-align: center; margin: 0 auto;
	}
.social_boxmain {
    width:100%;
}
	.social_boxicontop1 {
		margin-left: 0px;
		margin-top: 10px;
	}
	.social_boxicontop2 {
		margin-top: 10px;
		margin-left: 0px;
	}
	.social_boxicontop3 {
		margin-top: 10px;
		margin-left: 0px;
	}
	.social_boxicontop4 {
		margin-top: 10px;
		margin-left: 0px;
	}
	
	.myboxspace1, .myboxspace2, .myboxspace3 {
		margin-top: 5%;
	}
	.WSO2 {
		margin-top: 5%;
	}
	
}


@media (min-width: 850px) and (max-width: 999px)  {
	.bluebg {
	width: 100%;
	margin: 5px 0;
	background-image: url("../img/bluebg.png") !important;
	background-size:100% 100% !important;
	transition: background-image 0.3s ease-in-out;
        }
}

@media (max-width: 767.98px) {
	.col-20{
  width: 100%;
  margin:0 auto;
  text-align: center;
  margin-top:10px;
}
.mobilevh{
	height:72vh !important;
}
.banner_bigfont{
	font-size:20px !important; 
	text-align:left;
}
.banner_p{
	max-width: 100%; 
	width: 100%; 
	text-align:justify; 
	font-size:17px;
}

.top_banner_h2{
	font-size:30px; 
	color:#fff; 
	text-align:left; 
	padding-left: 5px;
}
.top_banner_p{
	color:#fff; 
	padding-left: 5px;
}
.service-page1 {
	width: 100%;
	height: 120px;
	margin: 10px 0;
	background-image: url("../img/PropertyA.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page2 {
	width: 100%;
	height: 120px;
	margin: 10px 0;
	background-image: url("../img/PropertyB.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page3 {
	width: 100%;
	height: 120px;
	margin: 10px 0;
	background-image: url("../img/PropertyC.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page4 {
	width: 100%;
	height: 120px;
	margin: 10px 0;
	background-image: url("../img/PropertyD.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page5 {
	width: 100%;
	height: 120px;
	margin: 10px 0;
	background-image: url("../img/PropertyE.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page6 {
	width: 100%;
	height: 120px;
	margin: 10px 0;
	background-image: url("../img/PropertyF.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
	.aboutwidth{
	max-width:100% !important;
	margin: 0 auto;
	text-align:justify;
}
	.case_mobile {
    position: relative !important;
    width: 100%;
    height: auto;
    display: inline-block;
    max-height: 400px;
    height: 360px !important;
}
 .about_mam {
        padding-bottom: 90%;
        width: 80%;
        margin: 0 auto;
    }
	.aboutwidth {
        max-width: 100% !important;
    }
	.myboxspace1, .myboxspace2, .myboxspace3 {
		margin-top: 5%;
	}
	.left-tabs .nav-link.active {
        background: transparent !important;
    }
	.left-tabs.nav-tabs {
		background: transparent !important;
	}
	.mobile_min{display:none;}
	.mobileimg_max{display:block;}
	.h-250{height:450px;}
}

@media (min-width: 768px) {
    .containerbox {
        max-width: 100%;
    }
}


@media (min-width: 992px) {
    .containerbox {
        max-width: 100%;
    }
}


@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1250px !important;
    }
}

/***************************************  Service Tab ***************************************************************/
.tab-content-padd {
    padding: 10px 3px !important;
}
.accordion-item-add {
    border: 0px !important;
	font-size:17px;
}



.left-tabs.sideways-tabs,
.right-tabs.sideways-tabs {
	margin-top: 5rem;
	border: none;
	position: relative;
	margin-bottom: 0;
	color:#6C6C6C;
	/*border-right:1px solid #13AFF0;*/
}

.left-tabs.nav-tabs,
.left-tabs.sideways-tabs,
.right-tabs.nav-tabs,
.right-tabs.sideways-tabs {
	height: 100%;
	flex-direction: column;
	/*border-right:1px solid #13AFF0;*/
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: .5rem
}

.vtabs .tab-clickable {
	cursor: pointer
}

.left-tabs.nav-tabs {
	/*border-right:1px solid #13AFF0;*/
	border-bottom: none;
	margin-bottom:10px;
	font-size: 17px;
	background: url("../img/line_03.png") top right no-repeat;
}

.left-tabs .nav-link {
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	margin-right: -1px;
	text-align: left;
	color:#6C6C6C;
}

.left-tabs .nav-link:hover {
	color:#13AFF0;
	border: 1px solid #FFF;
	outline: none;
	cursor:pointer;
}

.left-tabs .nav-link.active {
	background: url("../img/line1.png") center right no-repeat;  border: 1px solid #FFF; color:#13AFF0;
}

.right-tabs.nav-tabs {
	border-left: 1px solid #dee2e6;
	border-bottom: none
}

.right-tabs .nav-link {
	border-top-right-radius: .25rem;
	border-bottom-right-radius: .25rem;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	margin-left: -1px;
	text-align: right
}

.right-tabs .nav-link:hover {
	color:#13AFF0;
	border: 0px;
	outline: none;
}

.right-tabs .nav-link.active {
	background: url("../img/line1.png") center right no-repeat;  border:0px; color:#13AFF0;
}

.left-tabs.sideways-tabs {
	border-right: none;
	left: -3.2rem
}

.sideways-tabs.left-tabs .nav-item {
	transform: rotate(-90deg);
	height: 1rem;
	margin-bottom: calc(8rem - 1rem)
}

.sideways-tabs.left-tabs .nav-link {
	width: 8rem;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-top-right-radius: .25rem;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: .25rem;
}

.sideways-tabs.left-tabs .nav-link:hover {
	color:#13AFF0;
	border: 0px;
	outline: none;
}

.sideways-tabs.left-tabs .nav-link.active {
	background: url("../img/line1.png") center right no-repeat;  border:0px; color:#13AFF0;
}

.right-tabs.sideways-tabs {
	border-left: none;
	right: 3.2rem
}

.sideways-tabs.right-tabs .nav-item {
	transform: rotate(90deg);
	height: 1rem;
	margin-bottom: calc(8rem - 1rem)
}

.sideways-tabs.right-tabs .nav-link {
	width: 8rem;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-top-right-radius: .25rem;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: .25rem;
}

.sideways-tabs.right-tabs .nav-link:hover {
	color:#13AFF0; border: 0px;
	outline: none;
}

.sideways-tabs.right-tabs .nav-link.active {
	background: url("../img/line1.png") center right no-repeat;  border:0px; color:#13AFF0;
}

.vtabs .accordion-header {
	display: none
}

@media (max-width:767px) {
	.left-tabs.nav-tabs {
		flex-direction: row;
		border-right: none;
		border-left: none;
		min-width: 100%;
		border-bottom: 1px solid #dee2e6;
		left: auto;
		margin-top: auto
	}

	.left-tabs .nav-link {
		width: 100%;
		text-align: left;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		border-top-right-radius: .25rem;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
		border-top-left-radius: .25rem;
		margin-right: 0;
		margin-bottom: -1px
	}

	.left-tabs .nav-link.nav-link:hover {
		color:#13AFF0; border: none;
	}

	.left-tabs .nav-link.active {

		background: url("../img/line1.png") center right no-repeat;  border:0px; color:#13AFF0;
	}

	.sideways-tabs.left-tabs .nav-item,
	.sideways-tabs.right-tabs .nav-item {
		transform: none;
		height: auto;
		width: auto;
		margin-bottom: 0
	}

	.right-tabs.nav-tabs {
		flex-direction: row;
		border-right: none;
		border-left: none;
		min-width: 100%;
		border-top: 1px solid #dee2e6;
		right: auto;
		margin-top: auto
	}

	.right-tabs .nav-link,
	.sideways-tabs.right-tabs .nav-link {
		width: 8rem;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		border-top-right-radius: 0;
		border-bottom-right-radius: .25rem;
		border-bottom-left-radius: .25rem;
		border-top-left-radius: 0;
		margin-left: 0;
		margin-top: -1px;
		border-bottom-color: transparent
	}

	.right-tabs .nav-link:hover {
		color:#13AFF0; border: none;
	}

	.right-tabs .nav-link.active,
	.sideways-tabs.right-tabs .nav-link.active {
		
		background: url("../img/line1.png") center right no-repeat;  border:0px; color:#13AFF0;
	}
	
	.mobilepadding{
		padding:0px;
	}
}



@media (max-width:480px) {
.service-page1 {
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background-image: url("../img/PropertyA.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page2 {
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background-image: url("../img/PropertyB.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page3 {
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background-image: url("../img/PropertyC.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page4 {
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background-image: url("../img/PropertyD.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page5 {
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background-image: url("../img/PropertyE.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page6 {
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background-image: url("../img/PropertyF.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
}




@media (max-width:428px) {
	.left-tabs.nav-tabs {
		display: block;
	}

	.right-tabs.nav-tabs {
		display: block;
	}

	.vtabs .tab-content>.tab-pane {
		display: block !important;
		opacity: 1
	}

	.vtabs .accordion-header {
		display: block;
	}

	.vtabs button.accordion-button:focus {
		border: none;
		outline: 0;
		box-shadow: none
	}
}

@media (min-width:429px) {
	.vtabs .accordion-item {
		border: none
	}

	.vtabs .accordion-body.collapse {
		display: block
	}
}

.tab-content {
	padding: 1rem
}

/*# sourceMappingURL=b5vtabs.min.css.map */




/***************slider*************/

.mainbody {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*min-height: 100vh;*/
  width: 100%;
  /*background-image: radial-gradient(
      at 40% 20%,
      rgb(255, 184, 122) 0px,
      transparent 50%
    ),
    radial-gradient(at 80% 0%, rgb(31, 221, 255) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgb(255, 219, 222) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgb(255, 133, 173) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgb(255, 181, 138) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgb(107, 102, 255) 0px, transparent 50%),
    radial-gradient(at 0% 0%, rgb(255, 133, 167) 0px, transparent 50%);
  background-repeat: no-repeat;*/
}
.mainb {
  width: 1000px;
}

.mainb h1 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 70px;
}

.slide-row {
  display: flex;
  width: 4000px;
  transition: 0.5s;
}

.slide-col {
  position: relative;
  width: 1000px;
  height: 300px;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.hero img {
  height: 100%;
  border-radius: 0px;
  width: 500px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.contentc {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 300px;
  color: #4d4352;
  background: rgb(240 240 240 / 70%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 0px;
  padding: 45px;
  z-index: 2;
  user-select: none;
}

.contentc p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color:#6C6C6C;
}

.contentc h2 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 35px;
  color: #0D4B83;
}

.indicatorc {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.indicatorc .btnc {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 4px;
  border-radius: 15px;
  background-image: linear-gradient(to right, #957bdc, #9cf4f5);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.btnc.activec {
  width: 30px;
}

.sliderc {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.logo {
  position: fixed;
  right: -20px;
  bottom: -30px;
  z-index: 10;
}

.logo img {
  width: 120px;
}

@media (max-width: 890px) {
  .logo {
  right: -10px;
  bottom: -20px;
}
  
 .logo img {
  width: 80px;
  }
}

@media (max-width: 850px) {
  .mainb {
    width: 500px;
  }

  .slide-row {
    width: 2000px;
  }

  .slide-col {
    width: 500px;
    height: 250px;
  }

  .hero img {
    width: 200px;
  }

  .contentc {
    width: 300px;
    height: 250px;
    padding: 20px;
  }

  .contentc p {
    font-size: 0.9rem;
  }

  .contentc h2 {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}

@media (max-width: 550px) {
  .mainb {
    width: 300px;
  }

  .slide-row {
    width: 1200px;
  }

  .slide-col {
    width: 500px;
    height: 300px;
  }

 /* .hero {
    top: 70%;
    height: 100px;
    z-index: 5;
  }*/
  .hero {
		position: absolute;
        top: 70%;
        right: 0px;
        height: 100px;
        left: 67%;
		z-index: 5;
}

  .hero img {
    width: 100px;
  }

  .contentc {
    width: 300px;
  }

}


@media (max-width:360px) {
.service-page1 {
	width: 100%;
	height: 80px;
	margin: 8px 0;
	background-image: url("../img/PropertyA.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page2 {
	width: 100%;
	height: 80px;
	margin: 8px 0;
	background-image: url("../img/PropertyB.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page3 {
	width: 100%;
	height: 80px;
	margin: 8px 0;
	background-image: url("../img/PropertyC.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page4 {
	width: 100%;
	height: 80px;
	margin: 8px 0;
	background-image: url("../img/PropertyD.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page5 {
	width: 100%;
	height: 80px;
	margin: 8px 0;
	background-image: url("../img/PropertyE.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
.service-page6 {
	width: 100%;
	height: 80px;
	margin: 8px 0;
	background-image: url("../img/PropertyF.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s ease-in-out;
        }
}
