*{
    margin: 0;
    padding: 0;
}
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

  html, body {
    /* height: 100%; */
    width: 100%;
    overflow-x: hidden !important;
}  

html {
    font-family: 'Yantramanav', sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    background: #fff;
    color: #252525;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}





/*header*/
.header{
	position: fixed;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	/* padding: 15px; */
    background: #050e27;
}
.header-main{
	/* background-color: #ffffff; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 0;
	border-radius: 4px;
}

.uk-navbar-right {
    margin-right: -12px;
}


.logo img{
    width:160px;
    /* height:82px; */
}

@media(max-width: 991px){
    .uk-logo img{
        width:260px;
        /* height:82px; */
    }
}

canvas, img, video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 24px;
	position: relative;
    margin-bottom: 0px;
    
}

.header .menu .menu-item a{
	display: block;
	/* padding: 12px 0; */
	font-size: 16px;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
    text-decoration: none;
    min-height: 40px;
}

.header .plus-cls{
    
    display: inline-block;
    position: relative;
  
    display: flex;

}
.header .plus-cls::after{
    content: "+";
    position: absolute;
    top: 35%;
    padding-left: 5px;
    right: 0px;
    font-weight: 600;
    left: 100%;
    font-size: 16px;
	color: #fff;
    transform: translate(-50%, 0%);
    
}
.btn-active .plus-cls::after{
    color: #153380 !important;
    
}
.header .menu-item:hover >  .plus-cls::after{
    content: "-";
    color: #153380;
    /* transform: translate(-50%,-50%) rotate(-90deg); */
}

.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}

.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	min-width: 220px;
	position: absolute;
	left:0;
	top:80px;
	background-color: #ffffff;
	padding: 10px 0;
    text-decoration: none;
	/* border-top: 3px solid #e91e63; */
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
    z-index: 5;
	visibility: hidden;
}

.header .logo-dark, .scrolling-active .logo-white{
    display: none;
}
.scrolling-active .logo-dark{
display: block;
}
.scrolling-active{
    background: #fff;
        position: fixed;
        transition: .3s;
        padding: 0px;
        background-repeat: no-repeat;
        color: #000 !important;
        box-shadow: 0 0px 1rem rgb(0 0 0 / 50%);
    }
.scrolling-active.header .menu .menu-item a{
    color: #000 ; 
}
    .header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #153380;
}

.scrolling-active .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.scrolling-active .menu > .menu-item:hover > a{
	color: #153380 !important;
}


.scrolling-active .menu-item .plus-cls::after{
    color: #000; 
}
.scrolling-active .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.scrolling-active .menu > .menu-item:hover > a{
	color: #153380 ;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
    text-decoration: none;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #fff;
    position: relative;
}
.scrolling-active .open-nav-menu span{
    background-color: #000;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-sizing: border-box;
}
.scrolling-active .open-nav-menu span:before,
.scrolling-active .open-nav-menu span:after{
    background-color: #000;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	/* background-color: #ffffff; */
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu .fa-times{
	/* width: 16px; */
    color: #999 !important;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/* responsive */

@media(max-width: 1199px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
    .header .plus-cls{
    
        display: inline-block;
        position: relative;
      
        display: flex;
    
    }
    .header .plus-cls::after{
        content: "+";
        position: relative;
        /* position: absolute; */
        top: 35%;
        padding-left: 5px;
       
        font-weight: 600;
        /* left: 100%; */
        left: 0px;
        font-size: 16px;
        color: #fff;
        transform: translate(-50%, 0%);
        
    }
    .btn-active .plus-cls::after{
        color: #153380 !important;
    }
    .header .menu-item:hover >  .plus-cls::after{
        content: "-";
        color: #153380;
        /* transform: translate(-50%,-50%) rotate(-90deg); */
    }
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top: 0px;
		max-height: 0;
		overflow: hidden;
	}
    .p-10-15{
        padding: 10px 15px;
    }
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}

.uk-button:not(:disabled) {
    cursor: pointer;
}
.uk-button-primary {
    background-color: #153380;
    color: #fff !important;
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    
    padding: 10px 20px !important;
    border-radius: 10px;
}
.header .btncls a:hover{
    color: #fff !important;
}
.btn-active > a{
    color: #153380  !important;
    /* font-weight: 700 !important; */
}
.scrolling-active .btn-active  > a{
    color:  #153380 !important;
    /* font-weight: 700 !important; */
}
.scrolling-active .uk-button-primary{
    color: #fff !important;
}

.btncls a{
    text-transform: uppercase !important;
    text-decoration: none;
}

.header .ul{
    margin-bottom: 0px !important;
}

/* Hero starts here */
.hero{
    padding-top: 80px !important;
    /* margin-bottom: 120px; */
    position: relative;
}
.hero-inner{
background-image: url(../Images/happy.jpg);
min-height: calc((100vh - 163.562px) - 20vh);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
align-items: center;
/* padding-top: 100px; */
padding-bottom: 10px;
margin-bottom: -120px;
z-index: 2;
position: relative;
}

.under-1{
    z-index: 1;
    position: relative;
    background: #fff;
}

.px-60{
    padding:0px 60px;
}
.py-180{
    padding: 180px 60px;
}

.h-80{
    height: 80px;
}
.pt-140{
    padding-top: 220px;
}
.mb-60{
    margin-bottom: 50px;
}
.bg-green{
    background-color: #050e27;
}


.hero-title h1{
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-desc p{
    color: #fff;
    margin-bottom: 20px;
}
.contact-btn{
    display: inline-block;
    /* padding: 12px 0; */
    font-size: 14px;
    color: #fff;
   
    font-weight: 600;
    transition: all 0.3s ease;


    background-color: #153380;
  
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px !important;
    border-radius: 10px;
}
.contact-btn:hover{
    color: #fff;
}
.me-40{
    margin-right: 40px;
}
.watch-here{
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1.3px;
    transition: all 0.3s ease-in-out;
}
.background-overlay{
    z-index: 1;
    background: rgb(0, 0, 0, .2);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.play-btn{
    padding: 0px 0px 0px 5px;
    height: 56px;
    width: 56px;
    line-height: 58px;
    background-color: #FFFFFF;
    display: inline-block;
    text-align: center;
border-radius: 50%;
color: #153380;
}
.play-btn i{
    font-size: 18px;
    
}
.z-3{
    z-index: 3;
    position: relative;
}
.watch-here:hover{
    color: #153380;
}
.watch-here:hover .play-btn{
    color: #fff;
    background: #153380;
}
@media(min-width: 1200px){
    .h-lg-100{
        height: 100%;
        }

    }

    @media(max-width: 767px){
    .bg-green .px-60 {
        padding: 0px 15px;
    }
    .py-180 {
        padding: 140px 20px;
    }
    .contact-btn {
        padding: 12px 24px !important;
    }
}

    /* services starts */
    /* .pt-220{
        padding-top: 10px;
    } */
.main-title h1, .main-title-2 h1{
    color: #153380;
    font-size: 42px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.3em;
    
}
.main-title-2 h1{
    font-size: 36px;
}

.main-title h6, .main-title-2 h6{
    color: #00bfb3;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.2px;
}





.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #153380!important;
}

.tab-area{
    border: 0.5px solid #153380 !important;
   
    border-radius: 50px;
}
.pb-80{
    padding-bottom: 80px;
}
.nav-pills .nav-link {
background: #ffffff !important;
font-size: 18px !important;
font-weight: 600;
color: #153380;
/* color: #191919; */
padding: 10px 50px !important;
border-radius: 50px !important;
/* /* width: 400px; */
}
.nav-pills .nav-link:hover{
    color: #153380;
}
.mb-40{
    margin-bottom: 30px;
}
.img-desc h5 a{
    font-size: 18px;
    font-weight: 600;
    color: #153380;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.img-card{
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}
.img-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


    /* services ends */




    /* Footer starts */

footer{
    background-color: #050e27;
    padding-bottom: 20px;
    position: relative;
    margin-top: 50px;
}

.footer-sec-1{
    background-color: rgb(11, 48, 110);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: -50px 0px 0px 0px;
    padding: 50px 40px 50px 40px;
    position: relative;
}
.footer-logo img{
width: 180px;
}

.footer-desc p, .about-desc p, .blog-title p{
    color: #7a7a7a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.footer-address ul{
    padding-left: 25px;
    list-style: none;
    color: #fff;
}

.footer-address ul li{
    padding-bottom: calc(20px/2);
    position: relative;
}

.footer-address ul li a{
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5em;
    display: inline-block;
}
.footer-address ul li a:hover{
    text-decoration: underline;
    color: #00bfb3;
}
.footer-address ul li::before{
    
    left: -25px;
    position: absolute;
    /* top: 5px; */
    font-size: 20px;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    padding-top: 7px;
    /* margin-left: -20px; */
    /* content: ""; */
    transition: transform 0.2s ease-in-out 0s;
    color: #00bfb3;
    /* font-weight: 400; */
}


.footer-address ul li.address-1::before{
    content: '\f3c5';
  
    font: var(--fa-font-solid);
}
.footer-address ul li.mail::before{
    content: '\f0e0';
    font: var(--fa-font-solid);
}
.footer-address ul li.phone::before{
    content: '\f095';
    top: 7px;
    font: var(--fa-font-solid);
    transform: rotate(90deg);
}

.footer-title h5{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
line-height: 1.5em;
margin-bottom: 15px;
}

.pt-50{
    padding-top: 70px;
}

.footer-links ul{
    padding-left: 25px;
    list-style: none;
    color: #fff;
}

.footer-links ul li{
    padding-bottom: calc(30px/2);
    position: relative;
 
}

.footer-links ul li a{
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5em;
    display: inline-block;
}
.footer-links ul li a:hover{
  
    color: #7a7a7a;
}
.footer-links ul li::before{
    
    content: '\f105';
  
    font: var(--fa-font-solid);
    left: -25px;
    position: absolute;
    /* top: 5px; */
    font-size: 20px;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    padding-top: 5px;
    /* margin-left: -20px; */
    /* content: ""; */
    transition: transform 0.2s ease-in-out 0s;
    color: #153380;
    /* font-weight: 400; */
}

.footer-social a{
    text-decoration: none;
}
.footer-social a span{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: rgb(11, 48, 110);
    border-radius: 50%;
    margin-right: 10px;
    transition: all .3s ease;
}
.footer-social a:hover span{
    
    color: rgb(11, 48, 110);
    background: #fff;
}
.footer-bottom{
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #A0AABA2B ;
}
.copyright p{
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
}
    /* Footer ends */



    /* about section starts */
.about-img-1{
    width: 100%;
    height: 377px;
    overflow: hidden;
    position: relative;
}
.about-img-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-2{
    width: 60%;
    height: 377px;
    overflow: hidden;
    position: relative;
    margin: -25% 0% 0% 0%;

}
.about-img-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-style: solid;
    border-width: 20px 20px 0px 0px;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;

}
.about-img-desc{
    width: 50%;
    background: #153380;
    border-style: solid;
    color: #fff;
    border-width: 20px 0px 0px 20px;
    border-color: #FFFFFF;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 40px 40px 40px 40px;
}

.about-img-desc .about-desc-heading h2{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
line-height: 1.2em;
margin-bottom: 0px;

}
.about-desc-icon{
    margin-bottom: 19px;
    z-index: 2;
}
.about-desc-icon img{
width: 50px;
text-align: center;
}
.mt-55-per{
    margin-top: -255px;
    
    position: relative;

}

.about-list ul{
    padding-left: 30px;
    list-style: none;
    color: #7a7a7a;
}
.about-list ul li{
    padding-bottom: calc(30px/2);
    position: relative;
 
}
.about-list ul li::before{
    
    content: '\f00c';
  
    font: var(--fa-font-solid);
    left: -30px;
    position: absolute;
    /* top: 5px; */
    font-size: 18px;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    padding-top: 5px;
    /* margin-left: -20px; */
    /* content: ""; */
    transition: transform 0.2s ease-in-out 0s;
    color: #153380;
    /* font-weight: 400; */
}

.py-40{
    padding: 80px 0px;
}
@media(max-width: 1199px){
    .mt-55-per {
        margin-top: -312px;
        
        position: relative;
    }
}
@media(max-width: 991px){
    .mt-55-per {
        margin-top: -227px;
        
        position: relative;
    }
}
@media(max-width: 767px){
.about-img-2{
    width: 100%;
    height: 377px;
    overflow: hidden;
    position: relative;
    margin: 0;

}
.about-img-desc{
    width: 100%;
}
.me-40{
    margin-right: 20px;
}
.play-btn {
    height: 46px;
    width: 46px;
    line-height: 48px;
}
.mt-55-per {
    margin-top: 0px;
 
   
}

.about-sec .py-40{
    padding: 80px 0px 0px 0px;
}

.nav-pills .nav-link{
    padding: 10px 20px !important;
}
.about-img-2 img{
   
    border-width: 20px 0px 0px 0px;
}
.about-img-desc{

    border-width: 20px 0px 0px 0px;

}
}
    /* about section ends */


    /* Testimonials starts */
.testimonial-sec{
    background-image: url(../Images/counsal.jpg);

    min-height: calc((100vh - 163.562px) - 20vh);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;  
    z-index: 1;
    position: relative;
}
.overlay1{
    z-index: 1;
    background:rgb(0, 0, 0, .85);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.mb-80{
    margin-bottom: 120px;
}
.mb-100{
    margin-bottom: 100px;
}
.py-80{
padding: 80px 0px;
}

.outer-frame{
    border:1px solid #153380;
    position: relative;
}
/* .frame-icon{

} */

.test-box .tt-icon {
    width: 80px;
    height: 80px;
    top: -47px;
    z-index: 7;
    left: 50%;
    margin-left: -46px;
    position: absolute;
    text-align: center;
}

.test-box .tt-icon:before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f118";
    display: block;
    position: absolute;
    top: 0;
    left: 25%;
    color: #153380;
    z-index:2 ;
    font-size: 48px;
    line-height: 92px;
}
.test-box .tt-icon .tt-bg {
    background: #f7f6f4;
    width: 91px;
    height: 91px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 5px;
    transform: rotate(45deg);
}
.test-box .tt-icon .tt-bg:before {
    content: '';
    position: relative;
    top: 4px;
    left: 4px;
    display: block;
    width: 83px;
    height: 83px;
    border: 3px solid #153380;
    font-size: 22px;
    line-height: 84px;
    /* -webkit-border-radius: 5px; */
    /* -moz-border-radius: 5px; */
    border-radius: 5px;
}


.testimonial-desc p{
    color: #fff;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}


.py-test{
    padding: 100px 60px 60px 60px;
}
.testimonial-img img{
width: 80px !important;
}
.testimonial-profile-name h3{
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
line-height: 1.2em;
margin-bottom: 10px;

}
.testimonial-profile-name p{
    color: #153380;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.2px;
}
.owl-dots {
    text-align: center;
    padding-top: 0px;
}


.owl-dots .owl-dot {
    display: inline-block !important;
  
}
.owl-dots .owl-dot span {
    width: 20px !important;
    height: 20px !important;

    border: 5px solid #153380 !important;
  color: red !important;
    background: #FFF !important;
    display: inline-block !important;
    /* -webkit-backface-visibility: visible; */
    transition: opacity .2s ease;
    margin: 5px 7px !important;
    border-radius: 50%;

}
.owl-dots .owl-dot.active span {
    background: #153380 !important;
    border: 5px solid #FFF !important;
}

    /* testimonial ends */


    /* faq starts */
    .accordion-button:not(.collapsed){
        background:#153380 !important;
        color: #fff !important;
    }
    .accordion-button:not(.collapsed)::after {
        background-image: url(../Images/download.svg) !important;
    }
    
    .accordion-item{
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }
    .accordion-button{
      
        background: #fff !important;
        outline: 0!important;
        font-weight: 600;
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 600;
        color: #153380 !important;
        font-weight: 600;
        font-family: 'Playfair Display', serif;
        text-decoration: none;
        border: none !important;
    }
    .accordion-button:focus {
        
        box-shadow: none !important;
    }
    .card-body{
        border-top: 1px solid #e9e9e9;
        font-size: 16px;
        padding: 30px 40px 30px 20px;
        font-family: 'Inter', sans-serif;
        color: #7a7a7a;
 
    }
    .accordion-button::after {
        flex-shrink: 0;
        width: 1.2rem !important;
        height: 1.2rem !important;
        margin-left: auto;
        content: "";
        background-image: url(../Images/download2.png) !important;
    }



    @media(max-width: 767px){
        .py-test{
            padding: 100px 20px 60px 20px;
        }
        .pt-sm-80{
padding-top: 80px;
        }
    }
    /* faq ends */


    /* about us page starts */



    /* banner area starts */

.py-140{
    padding: 160px 0px;
}
.pt-80{
    padding-top: 80px;
}



.banner{
    background-image: url(../Images/hero-pre-bg.jpg);
min-height: calc((100vh - 163.562px) - 20vh);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
align-items: center;
z-index: 2;
position: relative;
}
.banner-overlay{
    z-index: 1;
    background: rgb(0, 0, 0, .5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.banner-heading h1{
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.3em;
    
}

.banner-links span{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.2px;   
}

.banner-links span i{
    color: #153380;
}



    /* banner area ends */



    /* team starts */
    .team-img{
        width: 100%;
        height: 420px;
        overflow: hidden;
        position: relative;
    }
    
    .team-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
.p-team{
    padding: 0px 20px;
}
.team-inner{
    width: 100%;
    background: #f7f6f4;
    padding: 30px 0px;
    position: relative;
    margin-top: -60px;
}

.service-image{
    width: 100%;
    height: 530px;
    overflow: hidden;
    position: relative;
}
.large-pic .service-image {
    width: 100%;
    height: 580px;
    overflow: hidden;
    position: relative;
}
.service-image img{
width: 100%;
height: 100%;
object-fit: cover;
}
.mb-70{
    margin-bottom: 70px;
}

    /* team  ends */


    /* contact us starts */
    
.mail-box{
    width: 100%;
    background: #153380;
    padding: 30px 0px;
    position: relative;
    height: 100%;
}


.mail-box span{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;   
display: block;
}
.mail-box span a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;   
display: block;
text-decoration: none;
}
    .fa-phone{
        transform: rotate(90deg);
    }
  .map-box{
width: 100%;
height: 100%;
  } 
  .map{
    width: 100%;
    height: 100%; 
  } 
.contact-form label{
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #153380 !important;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    border: none !important; 
}
.required{
    color: #153380 !important;   
}
.submit-btn{
    display: inline-block;
   
    font-size: 14px;
    color: #fff;
   
    font-weight: 600;
    transition: all 0.3s ease;


    background-color: #153380;
  
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 30px !important;
    border-radius: 10px;
    
}
    /* contact us ends */















      /* appointment 2 */

      
.appoint-form{
    background: #ffffff;
    margin: 0px auto 20px;
    padding: 15px 40px 40px 40px;
    /* width: 70%; */
  }
  
  .tab p{
    font-size: 20px;
    margin: 0 0 10px 0;
  }
  
  input, textarea, select{
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
  }
  
  .index-btn-wrapper{
    display: flex;
  }
  
  .index-btn{
    margin: 20px 15px 0 0;
    background: #153380;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .index-btn:hover{
    opacity: 0.8;
  }
  
  .step{
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 0 2px;
    color: white;
    background: #f7f6f4;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.25;
  }


  .border-bot-1{
    border-bottom: 1px solid rgb(225, 113, 65, .5);
    padding-bottom: 20px;
  }
  
  /* appointment close */




  /* payment */



.box-2 {
    max-width: 100%;
    padding: 10px 40px;
}


.box-2 .box-inner-2 input.form-control {
    font-size: 12px;
    font-weight: 600;
}

.box-2 .box-inner-2 .inputWithIcon {
    position: relative;
}

.box-2 .box-inner-2 .inputWithIcon span {
    position: absolute;
    left: 15px;
    top: 8px;
}

.box-2 .box-inner-2 .inputWithcheck {
    position: relative;
}

.box-2 .box-inner-2 .inputWithcheck span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: green;
    font-size: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    top: 6px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #7700ff;
}

.border:focus-within {
    border: 1px solid #7700ff !important;
}

.box-2 .card-atm .form-control {
    border: none;
    box-shadow: none;
}

.form-select {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.address .form-control.zip {
    border-radius: 0;
    border-bottom-left-radius: 10px;

}

.address .form-control.state {
    border-radius: 0;
    border-bottom-right-radius: 10px;

}

.box-2 .box-inner-2 .btn.btn-outline-primary {
    width: 120px;
    padding: 10px;
    font-size: 11px;
    padding: 0% !important;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    background-color: whitesmoke;
    color: black;
    font-weight: 600;
}

.box-2 .box-inner-2 .btn.btn-primary {
    background-color: #7700ff;
    color: whitesmoke;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    border: none;
    padding: 10px;
}

.box-2 .box-inner-2 .btn.btn-primary:hover {
    background-color: #7a34ca;
}

.box-2 .box-inner-2 .btn.btn-primary .fas {
    font-size: 13px !important;
    color: whitesmoke;
}

.icon {
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform-origin: center;
    opacity: 1;
}

.fas,
.fab {
    color: #6d6c6d;
}

.tab-pay::placeholder {
    font-size: 12px;
}



@media (max-width:426px) {

    .box-1,
    .box-2 {
        max-width: 400px;
        padding: 20px 10px;
    }

    .tab-pay::placeholder {
        font-size: 9px;
    }
}


.form-check-input:checked {
    background-color: #153380 !important;
    border-color: #153380 !important;
    box-shadow: none !important;
}
.form-check-input:focus {
    border-color: #153380 !important;
    box-shadow: none !important;
}

.slot-radio{
    width: 100px !important;
    background: green !important;
    border: 1px solid red !important;
    cursor: pointer;
}

/* .slot-box input[type="radio"]{
    -webkit-appearance: none !important;
} */
.slot-box{
    position: relative;
    display: inline-block;
}
.slot-box input{
    position: absolute;
    width: 160px;
    border-radius: 10px;
    height: 40px;
    opacity: 0;
}
.slot-box label>span {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 50%;
    /* background: red; */
    transform: translate(-50%, -50%);
}
.slot-box label{
    height: 40px;
    width: 160px;
    border:none;
    margin: auto;
    border-radius: 10px;
    position: relative;
    color: #fff;
    transition: 0.5s;
    background: rgb(6, 104, 95);
 }

 .slot-box input[type="radio"]:checked + label {
	background-color: #153380 !important;
	color: #ffffff;
	box-shadow: 0 15px 45px rgb(24,249,141,0.2);
}

.contact-form .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: none !important;
border-color: #f7f6f4 !important;
    outline: 0;
    box-shadow: none !important;
}



/* blogs starts */
.blog-title h3 a{
    color: #153380;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1em;
    text-decoration: none;
}
.admin-date span{
    color: #153380;
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}
.blogs-bx{
    border-radius: 10px;
    height:100%;
}

.blogs-img{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 260px;
}
.blogs-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-blog-img{
    
    overflow: hidden;
    width: 100%;
    height: 460px;
    position: relative;
}
.single-blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tags-area span{
    color: #001312;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
    /* letter-spacing: 1px; */
}
.tags-area .tag-tag{
    color: #153380;
}

.comment-title h2{
   
    font-size: 32px;
    font-weight: 600;
    color: #153380 !important;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
  
    text-align: center;
    border: none !important;
}

.post-img{
    overflow: hidden;
    width: 100%;
    height: 85px;
    position: relative;
}
.post-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent-post-title h5 a{
    font-size: 16px;
    font-weight: 600;
    color: #153380 !important;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
   
}
.recent-post-title h5{
    margin-bottom: 0px !important;
}
.post-date{
    color: #153380;
  
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
    /* letter-spacing: 1px; */
}

/* blogs ends */


/* sign in starts */
.sign-in-buttons .sign-in{
    width: 50px;
    height: 50px;
    line-height: 50px;
    /* padding: 0px 20px; */
    display: inline-block;
    background: red;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 22px;
    border-radius: 50%;
}
.sign-in-buttons .sign-in.facebook{
    background:  #3b5998;
    color: #fff;
}

.sign-in-buttons .sign-in.google{
    background: #4285F4;
    color: #fff;
}
.eye-area{
    position: relative;
}
.eye-input{
    position: relative;
}
.password-eye{
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translate(-50%, -50%);
    opacity: .6;
}
.password-eye:hover{
    opacity: 1;
    cursor: pointer;
}

/* sign in ends */

/* appointment list starts */
.text-white i{
    color: #fff;
}

/* add these lines in style.css file */
select{
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
  }

/* appointment list ends */


.package-bx{
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    overflow: hidden;
    position: relative;
    background: #fff;
    
}

.package-heading h3{
font-size: 28px;
color: #153380;;
padding: 10px 0px;
/* border-bottom: 1px solid #7a7a7a; */
}

.package-buttons a{
    background: #153380;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.package-buttons a:hover{
    background: #153380;
    color: #fff;
}

.package-price h4{
    font-size: 52px;
    padding-top: 20px;
    /* line-height: 70px; */
    color: #fff;
}

.package-img{
    background: url("../Images/price-shape.png");
    width: 100%;
    height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
}
.fa-check{
    color: #153380;
}
.fa-times{
    color: #153380;
}
.package-text ul{
list-style: none;
padding-left:0px ;
}





/* modal starts*/
.modal-header .close{
    font-size: 36px;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.01) !important;
    background-clip: padding-box;
    border: transparent !important;
    border-radius: 0.3rem;
    outline: 0;
  }
  .modal1 {
  background-image: url(../Images/bg-2.jpg) !important;
  }
  .modal2 {
    background-image: url(../Images/bg-1.jpg) !important;
  }
  .modal3 {
    background-image: url(../Images/bg-3.jpg) !important;
    background-position: center !important;
    background-size: cover;
  }
  
  
  .btn-close {
    box-sizing: content-box;
    width: 1em !important;
    height: 1em !important;
    padding: 0.1em 0.1em !important;
    color: #fff !important;
    font-size: 60px!important;
    background: rgba(0, 0, 0, 0.01) !important;
    box-shadow: 0 0 0 0 !important; 
    
    
  }
  
  .modal-header {
    
    border-bottom: 0px solid rgba(0, 0, 0, 0.01) !important;
    
  }
  .img-centered {
    margin: 0 auto;
  }
  
  /* .fltt{
    color: #fff;
    
  } */
  .modal-body{
    padding: 30px 0px !important;
  }
  
  .list-inline {
    padding-left: 0;
    /* margin-left: -5px; */
    list-style: none;
  }
  .list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    color: #fff;
  }
  
  .list-inline li a {
    
    color: #fcda16;
    text-decoration: none;
  }
  .modal-body .item-details {
    margin: 30px 0;
  }
  .btn-default {
    color: #333 !important;
    background-color: #fff !important;
    border-color: #ccc !important;
  }
  .btn-default:hover {
    color: #333 !important;
    /* background-color: #fff !important; */
    /* border-color: #ccc !important; */
  }
  
  
  
  .fltt{
    overflow: hidden;
    /* height: 400px; */
    padding: 10px;
    width: 100%;
    background: #FFF;
    border-radius: 5px;
  }
  .fltt img{
    object-fit: cover;
    height: 400px;
  }
  .modal1{
    background: rgb(0, 0, 0, .7) !important;
  }

  .modal-body .modal-input {
    width: 100%;
    height: 50px;
    padding: 10px 30px;
    border-radius: 10px;
    border: .5px solid rgb(25, 25, 25, .3);
}









.option-bx-img{
    width: 100%;
    height: 200px;
}
.option-bx-img img{
height: 100%;
height: 100%;
object-fit: contain;
}

.modal-head h5{
    font-size: 18px;
    font-weight: 600;
    color: #153380;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}
.text-dec-none{
    text-decoration: none;
}

.hov:hover{
cursor: pointer;
}



/* 17th oct code starts here */


/* date slider starts */

.tab-slider .tab-btn{
background: rgb(245, 245, 245) !important;
width: 100%;
border-radius: 0px !important;
height: 60px;
}
.tab-btn h6{
    margin-bottom: 0px;
}

.top-tab .owl-carousel .owl-nav button.owl-prev,
.top-tab .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  background: #fff !important;

  border-radius: 50%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  width: 40px !important;
  height: 40px !important;
}

.top-tab .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(-50%, -50%);
}

.top-tab .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(50%, -50%);
}

.top-tab .owl-carousel {
  position: relative;
}
.tab-slider .tab-btn.active{
    background: rgb(230, 230, 230) !important;
    color: #000 !important;
    position: relative;

}
.tab-slider .tab-btn.active::after{
    content: " ";
    width: 100%;
    height: 3px;
    background: #153380;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.tab-content-app .form-check{
    display: inline-block;
    margin-bottom: 20px;
    /* padding: 10px; */
    height: 50px;
    line-height: 48px;
    border: .2px solid rgb(235, 235, 235);
}


.tab-content-app .form-check input[type="radio"]{
    margin-left: 0px !important;
    position: relative;
    left: -15px;
    top: 10px;
}


.tab-content-app label, .tab-content-app input[type="radio"] {
    position: relative;
    display:inline-block;
    }
    
    .tab-content-app input[type="radio"] {
    z-index: 12;
    }
    
    .tab-content-app label {
    z-index: 6;
    padding:0px 10px;
    padding-left: 40px;
    margin-left: -50px;
    /* border-radius: 5px; */
    }
    
    .tab-content-app input[type="radio"]:checked + label {
    background-color: #153380;
    color: #fff;

    }
    .tab-content-app input[type="radio"]:hover, .tab-content-app label:hover {
        cursor: pointer;
    }

    .uk-button-primary{
        color: #fff !important;
    }
    .scrolling-active.header .btncls a:hover{
        color: #fff !important;
    }
    
    .pt-200{
        padding-top:80px;
    }
    .team-inner h3{
        color:#153380;
/* date slider ends */