*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3,h4,h5,h6, p, a, ul, li,span {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
a:hover{
    text-decoration: none;
    color: #fff;
}
body{
    font-family: 'overpass_regular';
}
.z-3{
    z-index: 3;
    position: relative;
}
.text-justify {
  text-align: justify;
}
.blue{color:#001e92 }

@font-face {
    font-family: 'overpass_regular';
    src: url(../fonts/Overpass_Regular.ttf) format("truetype");
}
@font-face {
    font-family: 'overpass_bold';
    src: url(../fonts/overpasssemibold.otf) format("opentype");
}
@font-face {
    font-family: 'overpass_semibold';
    src: url(../fonts/overpasssemibold.otf) format("opentype");
}
@font-face {
    font-family: 'roboto';
    src: url(../fonts/Roboto-VariableFont_wdth\,wght.ttf) format("truetype");
}

/* header css */

#preloader {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 50% 50%, #262b2f, #000);
}
.content {
	width: 50vmin;
	height: 50vmin;
	background: #fff0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pill {
	background: #fff0;
	width: 15vmin;
	height: 40vmin;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transform: rotate(180deg);
	animation: spin 4s linear 0s infinite;
}

@keyframes spin {
	100% { transform: rotate(-540deg);}
}

.pill .side {
	background: #001e92;
	position: relative;
	overflow: hidden;
	width: 8vmin;
	height: 11vmin;
	border-radius: 6vmin 6vmin 0 0;
}

.pill .side + .side {
	background: #0aa9dd;
	border-radius: 0 0 6vmin 6vmin;
	border-top: 1vmin solid #013b4e;
	animation: open 2s ease-in-out 0s infinite;
}

@keyframes open {
	0%, 20%, 80%, 100% { margin-top: 0;	}
	30%, 70% { margin-top: 10vmin; }
}

.pill .side:before {
	content: "";
	position: absolute;
	width: 2vmin;
	height: 10vmin;
	bottom: 0;
	right: 1.5vmin;
	background: #fff2;
	border-radius: 1vmin 1vmin 0 0;
	animation: shine 1s ease-out -1s infinite alternate-reverse;
}

.pill .side + .side:before {
	bottom: inherit;
	top: 0;
	border-radius: 0 0 1vmin 1vmin;
}

.pill .side:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	border-radius: 6vmin 6vmin 0 0;
	border: 1.75vmin solid #00000022;
	border-bottom-color: #fff0;
	border-bottom-width: 0vmin;
	border-top-width: 1vmin;
	animation: shadow 1s ease -1s infinite alternate-reverse;
}

.pill .side + .side:after {
	bottom: inherit;
	top: 0;
	border-radius: 0 0 6vmin 6vmin;
	border-top-color: #fff0;
	border-top-width: 0vmin;
	border-bottom-width: 1vmin;
}

@keyframes shine {
	0%, 46% {	right: 1.5vmin;	}
	54%, 100% {	right: 7.5vmin;	}
}

@keyframes shadow {
	0%, 49.999% {	transform: rotateY(0deg);	left: 0; }
	50%, 100% {	transform: rotateY(180deg);	left: -3vmin;	}
}

.medicine {
	position: absolute;
	width: calc(100% - 6vmin);
	height: calc(100% - 12vmin);
	background: #fff0;
	border-radius: 5vmin;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.medicine i {
	width: 1vmin;
	height: 1vmin;
	background: #47c;
	border-radius: 100%;
	position: absolute;
	animation: medicine-dust 1.75s ease 0s infinite alternate;
}

.medicine i:nth-child(2n+2) {
	width: 1.5vmin;
	height: 1.5vmin;
	margin-top: -5vmin;
	margin-right: -5vmin;
	animation-delay: -0.2s;
}

.medicine i:nth-child(3n+3) {
	width: 2vmin;
	height: 2vmin;
	margin-top: 4vmin;
	margin-right: 3vmin;
	animation-delay: -0.33s;
}

.medicine i:nth-child(4) {
	margin-top: -5vmin;
	margin-right: 4vmin;
	animation-delay: -0.4s;
}

.medicine i:nth-child(5) {
	margin-top: 5vmin;
	margin-right: -4vmin;
	animation-delay: -0.5s;
}

.medicine i:nth-child(6) {
	margin-top: 0vmin;
	margin-right: -3.5vmin;
	animation-delay: -0.66s;
}

.medicine i:nth-child(7) {
	margin-top: -1vmin;
	margin-right: 7vmin;
	animation-delay: -0.7s;
}

.medicine i:nth-child(8) {
	margin-top: 6vmin;
	margin-right: -1vmin;
	animation-delay: -0.8s;
}

.medicine i:nth-child(9) {
	margin-top: 4vmin;
	margin-right: -2vmin;
	animation-delay: -0.99s;
}

.medicine i:nth-child(10) {
	margin-top: -6vmin;
	margin-right: 0vmin;
	animation-delay: -1.11s;
}

.medicine i:nth-child(1n+10) {
	width: 0.6vmin;
	height: 0.6vmin;
}

.medicine i:nth-child(11) {
	margin-top: 6vmin;
	margin-right: 6vmin;
	animation-delay: -1.125s;
}

.medicine i:nth-child(12) {
	margin-top: -7vmin;
	margin-right: -7vmin;
	animation-delay: -1.275s;
}

.medicine i:nth-child(13) {
	margin-top: -1vmin;
	margin-right: 3vmin;
	animation-delay: -1.33s;
}

.medicine i:nth-child(14) {
	margin-top: -3vmin;
	margin-right: -1vmin;
	animation-delay: -1.4s;
}

.medicine i:nth-child(15) {
	margin-top: -1vmin;
	margin-right: -7vmin;
	animation-delay: -1.55s;
}

@keyframes medicine-dust {
	0%, 100% { transform: translate3d(0vmin, 0vmin, -0.1vmin); }
	25% {	transform: translate3d(0.25vmin, 5vmin, 0vmin);	}
	75% {	transform: translate3d(-0.1vmin, -4vmin, 0.25vmin);	}
}
/* Fullscreen Preloader end */
/* top header css */
.top_header{
    padding: 15px 0px;
    background: #001e92;
    color: #fff;
    font-family: 'roboto', sans-serif;
    font-weight: normal;
}
.top_header_left ul{
    display: flex;
    align-items: center;
    gap: 40px;
}
.top_header_left ul li{
    position: relative;
}
.top_header_left ul li::after{
    content: '';
    width: 1px;
    height: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);

}
.top_header_left ul li:last-child::after{
    display: none;
}
.top_header_left ul li a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.top_header_right > ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top_header_right ul li a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px
}
.top_header_right ul li:first-child{
    position: relative;
}
.top_header_right > ul > li:first-child::after{
    content: '';
    width: 1px;
    height: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}
.top_header_right > ul > li >ul{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}
.top_header_right > ul > li >ul i{
    font-size: 20px;
}
/* top header css end */
.tp-header-main{
    background: rgba(255, 255, 255, 80%);
    padding: 15px 0;
}
.tp-header-logo .logo_img{
   width: 100%;
   max-width: 120px;
}
.navbar .nav-item {
    margin-right: 20px;
}
.navbar .nav-link {
    font-family: 'overpass_semibold', sans-serif;
    font-size: 18px;
    color: #616161;
    text-transform: capitalize;
    padding: 5px 5px !important;
    transition: all 0.3s ease;
}
.navbar .nav-link:hover {
    color: #001e92;
}
.navbar .nav-link.active{
    color: #001e92;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: transform 0.35s ease, background-color 0.35s ease;
    z-index: 999;
    background-color: transparent; /* initially transparent */
}

/* Hide header */
.nav-up {
    transform: translateY(-100%);
}

/* Show header */
.nav-down {
    transform: translateY(0);
}

/* Background color after scroll */
/* .header-bg {
    background-color: #fff; 
        border-bottom: 1px solid #f0e6f1;
} */
/* .header-bg.nav-down .tp-header-main{
    padding: 10px 0;
} */



/* home banner slider css start */
.slider_content_box{
    position: relative;
    /* background: url(../images/slider1.webp) no-repeat center center/cover; */
    height: 100vh;
}
.slider_content_box video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider_content{
    position: absolute;
    top: 58%;   
    transform: translateY(-50%);
    color: #fff;    
    padding: 30px 80px 30px 30px;
    backdrop-filter: blur(0px) saturate(0%);
    -webkit-backdrop-filter: blur(0px) saturate(0%);
    background-color: rgba(0, 30, 146, 0.8);
    border-radius: 12px;
    border-bottom-right-radius: 100px;
}
.slider_content h4{
    font-size: 30px;
    font-family: 'overpass_regular', sans-serif;
}
.slider_content h1{
    font-size: 52px;
    font-family: 'overpass_bold', sans-serif;
    line-height: 1;
    margin: 20px 0;
}
.slider_content p{
    font-size: 24px;
    font-family: 'overpass_bold', sans-serif;
}
.slider_content p span{
    font-size: 20px;
    font-family: 'overpass_regular', sans-serif;
    display: block;
}
.global_btn{
    font-size: 20px;
    font-family: 'overpass_bold', sans-serif;
    border-radius: 50px;
    padding: 15px 40px;
    text-transform: uppercase;
    background: #fff;
    color: #001e92;
    display: inline-block;
    margin-top: 30px;
    outline: none;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
}
.global_btn:hover{
    background: #001e92;
    color: #fff;
    border: 2px solid #fff
}
.global_btn.bg-blue:hover{
    background: #fff;
    color: #001e92;
    border-color: #001e92
}
.home_banner_slider .owl-prev,
.home_banner_slider .owl-next {
    width: 70px;
    height: 70px;
    border-radius: 50% !important;
    border: 2px solid #a2a9a9 !important;
    color: #a2a9a9 !important;
}
.home_banner_slider .owl-prev i,
.home_banner_slider .owl-next i{
    font-size: 24px;
}
.home_banner_slider.owl-theme .owl-nav {
    margin-top: 10px;
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.home_banner_slider .owl-prev:hover,
.home_banner_slider .owl-next:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* about us css */

.about_us_section {
    padding: 100px 0 0px;
    overflow: hidden;
}
.heading_box .section_subtitle{
    color: #001e92;
    font-size: 20px;
    font-family: 'overpass_semibold', sans-serif;
    margin-bottom: 10px;
}

.heading_box .section_title {
    font-size: 40px;
    color: #222;
    font-family: 'overpass_bold', sans-serif;
    letter-spacing: -1px;
}

.about_us_section p {
    color: #777777;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
    font-family: 'overpass_regular', sans-serif;
    font-weight: 300;
    text-align: justify;
}

.global_btn.bg-blue {
    background: #001e92;
    color: #fff;
}
.usp_section{
    padding: 100px 0;
}
/* Stat Cards */
.stat-card {
    color: #fff;
    padding: 50px 40px 30px 30px;
    border-radius: 5px;
    min-height: 300px;
}

.stat-card h3 {
    font-size: 30px;
    font-family: 'overpass_bold', sans-serif;
    margin-bottom: 10px;
}

.stat-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

/* Card Colors */
.stat-card.green {
    background: #48ac8a;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.stat-card.blue {
    background: #1496d9;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.stat-card.purple {
    background: #b55ac9;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.stat-card.navy {
    background: #001e92;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    position: relative;
    min-height: 270px;
}
.stat-card.navy::before{
    content: '';
    width: 1600px;
    height: 100%;
    background: #001e92;
    position: absolute;
    bottom: 0;
    left: 100%;
}
.ups_slider_box{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.usp_content{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5));
    padding: 30px 30px 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
} 
.usp_content h2{
    font-size: 25px;
    margin-bottom: 10px;
    /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    min-height: 20px; */
}
.usp_content a{
    display: flex;
    align-items: center;
    gap: 10px
}
.usp_content a i{
    font-size: 30px;
    color: #49b9de
}
.ups_slider.owl-carousel .owl-nav {
    display: block;
    position: absolute;
    top: -100px;
    right: 165px;
}
.ups_slider .owl-prev i,
.ups_slider .owl-next i{
    font-size: 30px;
    color: #c2c2c4;
    margin: 0 20px !important;

}
.ups_slider .owl-prev:hover ,
.ups_slider .owl-next:hover{
    background: transparent !important;
    transform: scale(1.5);
}
.ups_slider .owl-prev:hover i,
.ups_slider .owl-next:hover i{
    color: #001e92 !important;
}

/* service section css */
.services-section{
    padding: 0 0 100px;
    overflow: hidden;
}
.services-container {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  /* gap: 30px; */
  margin: auto;
  align-items: stretch;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.service-item {
  text-align: left;
  position: relative;
  padding: 10px 20px;
  min-height: 200px;
}

.left .service-item {
  text-align: right;
}

.service-item h3 {
  font-size: 30px;
  color: #4e4e4e;
  font-family: 'overpass_bold', sans-serif;
}

.service-item p {
  font-size: 20px;
  color: #7a7a7a;
  line-height: 1.5;
  font-family: 'overpass_regular', sans-serif;
  font-weight: 400;
}
.services-column.left .service-item img,
.services-column.right .service-item img{
    width: 100%;
    max-width: 60px;
    position: relative;
    z-index: 2;
    background: #fff;
}
.service_icon_box{
    position: relative;
}
.services-column.left .service-item .service_icon_box::before{
    content: '';
    width: 85%;
    height: 1px;
    background: #6eb8e8;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}
.services-column.left .service-item:nth-child(odd) .service_icon_box:before{
    content: '';
    width: 85%;
    height: 1px;
    background: #be9ecd;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}
.services-column.right .service-item .service_icon_box::before{
    content: '';
    width: 85%;
    height: 1px;
    background: #be9ecd;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -1;
}
.services-column.right .service-item:nth-child(odd) .service_icon_box:before{
    content: '';
    width: 85%;
    height: 1px;
    background: #6eb8e8;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -1;
}
.services-column.left .service-item p{
    max-width: 310px;
    margin-left: auto;
}
.services-column.right .service-item p{
    max-width: 310px;
    margin-right: auto;
}
.dna-line{
    background: url(../images/dna_elements_rotating.gif);
    background-size: contain;
}
/* contact_section css */
.contact_section{
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: url(../images/contact-bg.webp) #fff;
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.contact_section::after{
    content: '';
    width: 60%;
    height: 100%;
    background: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.contact_address_box ul li{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #b3b3b3;
} 
.contact_address_box ul li:last-child{
    border-bottom: 0;
}
.contact_address_box .footer_contact_icon_box i{
    color: #001e92;
    font-size: 20px;
}
.contact_address_box .footer_contact_info p{
    color: #777777;
    font-size: 20px;
}
.contact_address_box .footer_contact_info a{
    color: #001e92;
    font-size: 20px;
}
.contact_social_box{
    padding: 35px;
    border-radius: 10px;
    box-shadow: 2px 0 43px rgba(0, 0, 0, 13%);
}
.contact_social_box i{
    font-size: 25px;
    color: #1a5ec3
}
.contact_right_box{
    padding: 60px 50px;
    border-radius: 10px;
    background: #001e92;
}
.contact_right_box h4{
    color: #fff;
    margin-bottom: 15px;
    font-size: 40px;
    font-family: 'overpass_bold', sans-serif;
}
.contact_right_box .form-control{
    background: transparent;
    border: none;
    border-bottom: 1px solid #99a5d3;
    border-radius: 0;
    padding: 15px 0;
    color: #fff
}
.contact_right_box .form-control:focus{
    box-shadow: none;
}
.contact_right_box .form-control::placeholder{
    color: #dcdcdc;
    font-family: 'roboto', sans-serif;
    font-weight: 400px;
}
.contact_right_box button{
    outline: none;
    border: 2px solid transparent;
}
.testimonial_section{
    padding: 100px 0;
    background: #dddfdf;
    display: none;
}
.testimonial_card{
    border-radius: 30px;
    background: #024c7d;
    color: #fff;
    padding: 50px 30px;
    position: relative;
    margin: 80px 0 60px;
}
.testimonial_card .quate_img{
    position: absolute;
    top: -30px;
    left: 40px;
}
.quate_img{
    width: 100%;
    max-width: 50px;
}
.testimonial_card .testi_des{
    color: #fff;
    font-size: 16px;
    font-family: 'overpass_regular', sans-serif;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
            line-clamp: 4;
    -webkit-box-orient: vertical;
}
.testimonial_card .testi_name{
    font-size: 14px;
    font-family: 'overpass_regular', sans-serif;
    margin-top: 40px;
}
.home_testimonial_slider .owl-item{
    opacity: 0.5;
}
.home_testimonial_slider .owl-item.active.center{
    transform: scale(1.3);
    z-index: 99999999;
    opacity: 1;
    /* box-shadow: 5px 0 62px rgba(0, 0, 0, 35%); */
}
.home_testimonial_slider.owl-theme .owl-dots .owl-dot span{
    transition: all .3s ease-in-out;
}
.home_testimonial_slider.owl-theme .owl-dots .owl-dot.active span{
    width: 60px;
    height: 15px;
    border-radius: 50px;
    background: #001e92;
}
.home_testimonial_slider.owl-theme .owl-dots .owl-dot:hover span{
    background: #001e92;
}
/* blog_section css */
.blog_section{
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.blog_section .heading_box p{
    font-size: 24px;
    color: #777777;
}
.blog_img{
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.blog_img img{
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.blog_img:hover img{
    transform: scale(1.2);
}
.blog_content h3{
    font-size: 24px;
    color: #222222;
    font-family: 'overpass_bold', sans-serif;
    margin: 30px 0 10px
}
.blog_content h3 a:hover{
    color: #001e92;
}
.blog_content p{
    font-size: 18px;
    color: #777777
}
/* client_section css */
.client_section{
    background: #ececec;
    padding: 50px 0 150px;
}
.home_partners_box{
    margin: 0 10px;
    height: 100%;
}
.partners_card{
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px 0px rgba(127, 127, 127, 20%);
        margin: 5px;
}
.partners_card img{
    width: 150px !important;
    object-fit: contain;
    height: 100px;
    margin: 0 auto;
}
.home_partners_slider.owl-carousel .owl-nav button.owl-next, .home_partners_slider.owl-carousel .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: transparent;
    color: #989898;
    border: 1px solid #989898;
    border-radius: 50%;
    font-size: 25px;
    margin: 0 12px;
}
.home_partners_slider.owl-carousel .owl-nav{
    margin-top: 40px;
}
.home_partners_slider.owl-carousel .owl-nav button.owl-next:hover, .home_partners_slider.owl-carousel .owl-nav button.owl-prev:hover {
    color: #001e92;
    border-color: #001e92;
    box-shadow: 0 0 15px rgba(183, 183, 183, 27%);
}
/* ===== Newsletter ===== */
.footer{
    background:#001e92;
    padding: 180px 0 20px;
}
.newsletter{
  background: linear-gradient( -108deg, #1c5fc3, #0aa9dd 100%);
  border-radius: 15px;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 60px 50px;
  color:#fff;
  margin-top: -285px;
  box-shadow: 0px 20px 90px rgba(0, 0, 0, 36%);
}
.newsletter h5{
    font-size: 41px;
    color: #fff;
}
.newsletter input{
  border-radius: 0px;
  padding: 15px 10px;
}
.newsletter .arrow{
  background:#fff;
  color:#ff1744;
  border:none;
  padding:0 20px;
  font-size:22px;
    position: relative;
    left: -1px
}
.newsletter .form-control{
    border-right: 0;
}

/* ===== Footer ===== */
.footer_heading{
  color:#fff;
  font-size: 24px;
  margin-bottom: 35px;
}
.footer_box2 h5{
    color: #fff;
    font-family: 'roboto', sans-serif;

}
.footer_box2 ul li{
    border-bottom: 1px solid #808fc9;
    margin-bottom: 16px;
}
.footer_box2 ul li a{
  color:#fff;
  text-decoration:none;
  font-size: 20px;
  font-family: 'roboto', sans-serif;
  line-height: 1.6;
}
.footer_box2 p{
    font-size: 15px;
    font-family: 'roboto', sans-serif;
    color:#fff;
}

.footer_contact_icon_box i{
    color: #fff;
    font-size: 16px;
}
.address_box .footer_contact_icon_box i{
    position: relative;
    top: 7px;
}
.footer_box3 ul li{
    margin-bottom: 10px;
}
.footer_box3 ul li:last-child{
    margin-bottom: 0;
}
.footer_box3 ul li a{
    color: #c4c4c4;
    font-size: 18px;
    display: inline-block;
    font-family: 'overpass_semibold', sans-serif;
}
.footer_newsletter h5{
    color: #fff;
    font-family: 'roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
}
.footer_social_box i{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_newsletter input{
    padding: 15px 15px;
    background: rgba(255, 255, 255, 50%);
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.footer_newsletter input::placeholder{
    color: #f3f3f3;
    font-size: 18px;
    font-family: 'roboto', sans-serif;
    font-weight: 400;
}
.envelope{
    color: #f3f3f3;
    background: rgba(255, 255, 255, 50%);
    font-size: 18px;
    padding: 15px 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.footer-bottom{
  border-top:1px solid #808fc9;
  margin-top:30px;
  padding-top:15px;
  font-size:18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'roboto', sans-serif;
}
.footer-bottom a{
    color: #8d9aaf;
}
.footer-bottom p:last-child a{
    color: #fff;
}
 

 /*=============== About start =======================*/
 .about-banner {
    background-image: url(../images/inner_banner.jpeg);
    background-color: inherit;
    padding-top: 300px;
    padding-bottom: 200px;
    position: relative;
}
.inner-circle{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    /*bottom: 70px;*/
}
.about-arc {
  position: relative;
  color: #fff;
  font-size: 48px;
  font-family: overpass_regular;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
  letter-spacing: -2px;
}

/* top arc */
.about-arc::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/inner_heading-bg.webp);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    /* animation: animName 2s linear infinite; */
}
/* @keyframes animName {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
} */

/* bottom arc */
/* .about-arc::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 50px;
  border: 2px solid #fff;
  border-top: none;
  border-radius: 0 0 120px 120px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
} */

.welcomeabout{
    position: relative;
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}
.welcomeabout:before {
    position: absolute;
    width: 100%;
    content: "";
    background: url(../images/dnabg_left.png);
    background-repeat: no-repeat;
    height: 100%;
    right: 0;
    top: 0;
    background-position: 122% -32%;
    background-size: 700px;
    z-index: 0;
}
.welcomeabout:after {
    position: absolute;
    width: 100%;
    content: "";
    background: url(../images/dnabg_right.png);
    background-repeat: no-repeat;
    height: 100%;
    left: 0;
    bottom: 0;
    background-position: -21% bottom;
    background-size: 700px;
    z-index: 0;
}

.ourvision_box{
    color: #fff;
    padding: 50px 40px 30px 30px;
    border-radius: 5px;
    min-height: 100%;
    background: #001e92;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.ourmission_box{
    color: #fff;
    padding: 50px 40px 30px 30px;
    border-radius: 5px;
    min-height: 100%;
    background: #62489d;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.welcomeabout {
    line-height: 30px;
    font-size: 18px;
    font-family: 'overpass_regular';
        color: #777777;
        font-family: 300;
}
.about_mentiobox h4{
    font-family: 'overpass_semibold';
    margin-bottom: 10px;
    font-size: 30px;
}
.about_mentiobox p {
    font-family: 'roboto';
    font-size: 16px;
    line-height: 1.5;
}


.director-section {
  background: #eaf1f4;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.linebg_dirc:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/drictor_leftimg.png);
    background-repeat: repeat-y;
    width: 21.5%;
    height: 100%;
    z-index: 0;
}
.directore_info {
    color: #4e4e4e;
    font-family: 'overpass_regular';
    font-size: 16px;
}
/* vertical stripes */
.director-left {
  padding: 60px 0;
}
.director-img-wrapper { 
  position: relative;
}
.director-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}



.ourcore_expert_section{
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}
.ourcore_expert_titlesub{
    font-size: 18px;
    color: #777;
}
.card-expert {
    border: 1px solid #999;
    background: #fff;
}
.experties_row h5{
    font-size: 25px;
}
.blue-box{
    border-color: #001e92;
    background: #eaf1f4;
}
.blue-box h5{color: #1c66c3;}
.green-box{
    border-color: #347f52;
    background: #eaf4ee;
}
.green-box h5{color: #347f52;}
.purpel-box{
    border-color: #81439b;
    background: #f1eaf4;
}
.purpel-box h5{color: #81439b;}
.red-box{
    border-color: #a14341;
    background: #f4ecea;
}
.red-box h5{color: #a14341;}


.listcore_listing li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    color: #777777;
    font-size: 16px;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
}
.listcore_listing li:last-child{
    border-bottom: 0;
}
.listcore_listing li:after{
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #ddd;
    left: 0;
    top: 7px;
    border-radius: 100%;
}
.listcore_listing.listcore1 li:after{
    background: #1c66c3;
}
.listcore_listing.listcore2 li:after{
    background: #347f52;
}
.listcore_listing.listcore3 li:after{
    background: #81439b;
}
.listcore_listing.listcore4 li:after{
    background: #a14341;
}


.therapeutic_section{
    background: url(../images/therapetic_backgb.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 50px 0;
    background-attachment: fixed;
}
.therapeutic_section .row.mt-4 .col-lg-4.col-md-6.col-sm-6{
    margin-bottom: 20px;

}
.therapeutic_block {
    background: #f4dcff;
    margin-bottom: 20px;
    padding: 12px 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.therapeutic_section .heading_box p{
    font-size: 20px;
}
.therapeutic_block h3{
    font-size: 18px;
    font-family: overpass_regular;
}
.box2{background: #dce1ff;}
.box3{background: #dcf1ff;}
.box4{background: #eeffdc;}
.box5{background: #dcffe4;}
.box6{background: #dcfff6;}
.box7{background: #ffdcf9;}
.box8{background: #ffcfbc;}
.box9{background: #ffbcce;}
.box10{background: #bcecff;}
.box11{background: #bcffda;}
.box12{background: #bcffbe;}



.ourstrengths_section{
    position: relative;
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}
.ourstrengths_section:after {
    position: absolute;
    width: 100%;
    content: "";
    background: url(../images/dnabg_left.png);
    background-repeat: no-repeat;
    height: 100%;
    right: 0;
    bottom: 0;
    background-position: 100% top;
    background-size: 700px;
    z-index: 0;
    transform: rotateX(182deg);
}
.ourstrengths_section:before {
    position: absolute;
    width: 100%;
    content: "";
    background: url(../images/dnabg_right.png);
    background-repeat: no-repeat;
    height: 100%;
    right: 0;
    top: 0;
    background-position: -9% -32%;
    background-size: 500px;
    z-index: 0;
}
.quote-card {
  background: linear-gradient(180deg, #13a6db, #1f5fbf);
  color: #fff;
  border-radius: 50px 0 50px 0;
  min-height: 420px;
  box-shadow: 10px 0 90px rgba(0,0,0,25%);
  padding: 60px;
}
/* quotation mark */
.quote-icon {
  font-size: 120px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.quote-icon i{
    text-shadow: 5px 7px 0px rgba(0, 0, 0, 40%)
}
.quote-card p {
  font-size: 18px;
  line-height: 1.5;
}
.urstrengths_list li {
    border-bottom: 1px solid #001e92;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.urstrengths_list li:last-child{
    border-bottom: 0;
}
.urstrengths_list li .urstrengths_icon {
    width: 70px;
}
.urstrengths_list li .urstrengths_icon img {
    max-width: 50px;
    margin-right: 10px;
}
.ourste_listinfo {
    font-size: 18px;
}

.partner_section{
    position: relative;
    padding: 70px 0;
    background-color: #f4f4f4;
    overflow: hidden;
}
.partner_section .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.partner_section .icon-circle img{
    max-width: 80px;
}
.partner_section  .feature-item p {
  font-size: 16px;
  color: #7e7e7e;
  max-width: 180px;
  margin: 0 auto;
}
.partner_section .divider {
  width: 1px;
  background: #ddd;
  margin: 0 10px;
}

.commitment-section{
    position: relative;
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}
.commitment-section .center-divider {
  position: relative;
  width: 2px;
  height: 100%;
}
.commitment-section .center-divider::after {
  content: "";
  position: absolute;
  top: calc(50% + 17px); /* starts just below circle */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 240px; /* adjust as needed */
  background: #001e92;
}
.commitment-section .divider-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 2px solid #001e92;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.client_section.about_client {
    background: #fff;
}
.about_page_contact{
    background: unset;
}
.about_page_contact .contact_right_box{
    box-shadow: 0 0 54px rgba(0, 0, 0, 40%);
}
/*=============== About End =======================*/

/* service page css */
.section-space{
    padding: 50px 0;
}
.service_mainpart{
    overflow: hidden;
    padding-bottom: 150px;
}
.service_mainpart .row > .col-md-6{
    margin-bottom: 30px;
}
.serv_items{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 8px solid #001e92;
    box-shadow: 0px 2px 5px #999;
    height: 100%;
}
.serv_items p{
    text-align: justify;
}
.serv_items .servi_ite_img {
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 10px;
}
.serv_items .servi_ite_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.serv_items h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #001e92;
    font-weight: 400;
    text-transform: uppercase;
    min-height: 45px;
}
.serv_items p {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 24px;
}
.serv_items ul{
    margin-top: 15px;
}

.serv_items ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    color: #777777;
    font-size: 16px;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 10px;
}
.serv_items ul li:last-child{
    border-bottom: 0;
}
.serv_items ul li::after{
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #1c66c3;
    left: 0;
    top: 7px;
    border-radius: 100%;
}

/* contact page css */
.section-space {
    padding: 80px 0;
    overflow: hidden;
}

.contact-icon i{
    width: 50px;
    height: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 0px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    color: #001e92;
    border: 1px solid #001e92;
    font-size: 20px;
}

.contact-section {
    padding: 100px 0px;
    /* background: #ececec; */
    overflow: hidden;
}

.custom-input {
    background: #c2cdf73d;
    border: none;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #4e70fa3b;
}
textarea.custom-input {
    height: 85px;
}
.send-btn {
    background: #001e92;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    padding: 12px 30px;
    outline: none;
    border: 1px solid transparent;
}
.send-btn:hover {
    color: #001e92;
    border: 1px solid #001e92;
}
.map-area {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
}
.map-area iframe, .map-area #map {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    overflow: hidden;
}


.info-stack{display:grid;}
.info-card{
    /* background:#e0e9fa; */
    padding:15px 0px;
    /* border-radius:20px; */
    /* box-shadow:0 10px 30px rgba(0,0,0,.06); */
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    border-bottom: 1px solid #e0e9fa;
}
.info-card:hover a{
    color:#001e92;
}

.info-card p{
    font-size: 15px;
}
.glass-form{
    height:100%;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
    padding: 35px 25px;
    border-radius:20px;
    box-shadow:0 30px 60px rgba(0,0,0,.1);
}
.glass-form h3{font-size:36px;color:#001e92}
.glass-form .sub{margin-bottom:30px;color:#666}


.map-wrap iframe{
    width:100%;
    height:394px;
    border:0;
}


.counter_box{
    padding: 50px;
    border-radius: 20px;
    background: #e0e9fa;
}

.form_section{
    padding: 100px 0;
    background: #ececec;
}

.blog_details .entry-main-content h2, 
.blog_details .entry-main-content h3, 
.blog_details .entry-main-content h4, 
.blog_details .entry-main-content h5,
.blog_details .entry-main-content h6,
.blog_details .entry-main-content p{
    margin: 15px 0;
}
.blog_details .entry-main-content p{
    text-align: justify;
}
.blogdetails_featureimg img{
    max-width: 600px !important;
}

.cloud-cap {
    padding-top: 13px;
}