/**
* Template Name: Nova - v1.0.0
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
/*
:root {
  --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --font-primary: Montserrat, sans-serif;
  --font-secondary: Raleway, sans-serif;
}
*/


/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200&display=swap');


@font-face {
  font-family: GoogleSans-Bold;
  src: url(../fonts/GoogleSans-Bold.ttf);
}
@font-face {
  font-family: GoogleSans-Medium;
  src: url(../fonts/GoogleSans-Medium.ttf);
}
@font-face {
  font-family: GoogleSans-Regular;
  src: url(../fonts/GoogleSans-Regular.ttf);
}


:root {
  --font-default: Roboto;
  --font-primary: GoogleSans-Regular;
  --font-secondary: Roboto;
}



/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #56b8e6;
  
  /* hero sec background color change  --- vishnu*/
  /*--color-secondary: #1b2f45; */
  --color-secondary: #001353;
 /* hero sec background color change  --- vishnu*/
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  font-size: 14px;
}

a {
  color: #032083;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #82cbed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}
section.section-career {
  overflow: hidden;
  padding: 30px 0;
}
.section-header {
  text-align: center;
  padding-bottom: 30px;
}
.section-header-career {
  text-align: center;
  padding-bottom: 5px;
}
.section-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
.section-header-career h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}
.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-50{
  margin-bottom: 50px;
}

/* header top menu */
.header-top {
  /*vishn bg */
  /*background-color: #312f31; */
 border-bottom: 1px solid #111;
  font-family: 'ubuntu', sans-serif;
  height: 32px;
}
.header-top-menu ul li {
  display: inline-block;
  margin-left: 20px; }
  .header-top-menu ul li:first-child {
    margin-left: 0; }
  .header-top-menu ul li a {
    display: block;
    color: #001353;
    font-size: 17px; }
    .header-top-menu ul li
    {
      font-size: 17px;
      color: #001353;
    }
    .header-top-menu ul li a .fa
    {
      font-size: 16px;
      margin-right: 2px;
    }
    .header-top-menu ul li a:hover {
      color: #ef9804; }
      .lang-currency-dropdown ul{
        list-style: none;
        margin-bottom: 0;
        display: flex;
      }
      .header-top-menu{
        text-align: right;
      }
      .lang-currency-dropdown ul li{
        padding: 0 12px 0 0;
      }
      .header.sticked .header-top{
        display: none;
      }
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 60vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(86, 184, 230, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0 0;    
  background-color: #f9faff;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
	/*header-logo bg  ---- vishnu*/
	
  /*background: rgba(27, 47, 69, 0.9);*/
  background-color: #fff;
  
  /* header logo bg ---- vishnu*/
  padding: 6px 0;
}
.header.sticked .navbar a::before{
      background-color: #ffffff;
}
.header.sticked .navbar a, .navbar a:focus{
  color: #001453;
}
.header.sticked .navbar .btn-get-started a{
  color: #001453;
}
.header.sticked .navbar .btn-get-started a:hover{
  color: #fff;
}
.header.sticked  .navbar a:hover, .header.sticked .navbar .active, .header.sticked  .navbar .active:focus, .header.sticked  .navbar li:hover>a {
    color: #f29c00;
}
.header .logo img {
	/*header-logo resize ---- vishnu*/
  max-height: 100px;
  /*header-logo resize ---- vishnu*/
  margin-right: 30px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
	  /* menu ryt to lft --- vishnu */
    padding: 0;  
	/*padding: 0 705px 0 0;*/
	/*menu ryt to lft --- vishnu */
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
	/* margin  --- vishnu */
	/*margin: 0 20px;*/
    margin: 0 13px;
  }
  .navbar li:last-child{
	  /* margin  --- vishnu */
	/* margin: 0 0 0 20px;*/
    margin: 0 0 0 13px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 0px;
    font-family: var(--font-default);
	  font-size: 15px;
    /* FONT SIZE  --- vishnu */
	  font-weight: 500;
    color: #001453;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a::before{
   content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    top: 37px;
    left: 0;
    background-color: #001453;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}
.navbar a:hover:before, .navbar .active::before  {
    visibility: visible;
    transform: scaleX(1);
}
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #f29c00;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 12px;
    margin: 0;
    background: #001353;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgb(241 157 4);
    font-size: 30px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }
  
  /* need to add */
 .mobile-nav-active .navbar .btn-get-started a{
	/*color: #001353;*/
	color: rgba(255, 255, 255, 0.7);
	padding:11px;
  
}

.mobile-nav-active .header.sticked .navbar a{
	 color: rgba(255, 255, 255, 0.7);padding:0px 11px
}
.mobile-nav-active .navbar .btn-get-started {
padding:0px 11px;
}
/* need to add */

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.bg1{
  background: url("../img/hero-bg.jpg") top right;
  background-size: contain;
}
.bg2{
  background: url("../img/hero-bg2.jpg") top right;
  background-size: contain;
}
.bg3{
  background: url("../img/hero-bg3.jpg") top right;
  background-size: contain;
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0;
  z-index: 3;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
	/* hero sec width resize --  vishnu */
    /*  width: 40%;  */
	width: 50%;
	/* hero sec width resize --  vishnu */
    background: url(../img/img2.jpg) #001453;
    background-position: bottom;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgb(12 40 70 / 10%);
  inset: 0;
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgb(13 51 93 / 70%);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-primary);
}
/*hero h3 style added --- vishnu */

.hero h3 {
  
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  padding: 24px 0;
  color: #00bafd;
  font-family: var(--font-secondary);
}
.welcome_left h2{
    font-weight: 700;
    font-size: 37px;
    margin-bottom: 0;
}
.welcome p.subhead{
    font-weight: 500;
    font-size: 30px;
    color: #001353;
}
.welcome-section {
    background-image: url(../img/img1_new.jpg);
    background-position: top;
    /*background-size: contain;*/
    background-repeat: no-repeat;
}
/*hero h3 style added --- vishnu*/

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
}
.navbar .btn-get-started a::before{
	visibility: hidden;
}
.navbar .btn-get-started:hover{
	/*background: transparent;*/
	background: var(--color-primary);
	border:2px solid #56b8e6;
}
.navbar .btn-get-started a{
	/*color: #001353;*/
	color: #001353;
  padding: 11px 0;
}
.navbar .btn-get-started a:hover{
  color: #fff;
}
.navbar .btn-get-started{
  border:2px solid #56b8e6;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0px 30px;
  border-radius: 50px;
  transition: 0.5s;
  /*background: var(--color-primary);*/
  background: transparent;
	border:2px solid #56b8e6;
	color: #001353;
}
.hero .btn-get-started{
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 28px;
    line-height: 1.28;
  }
  .hero h3{
    font-size: 18px;
    line-height: 20px;
    padding: 17px 0;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Sponcers Section --- vishnu
--------------------------------------------------------------*/


.sponcers{
		width: 100%;
  
  
  }

  .sponcers_left{
		width: 50%; height: 150px; float: left; background: #f7f7f7;
  
  }
  .sponcers_right{
  
		margin-left: 50%; height: 150px;     background: #f7f7f7;
    border-left: 1px solid #086cb730;
  }
  .sponcers_box {
    
    width: 30%;
    display:inline-block;
    margin:10px 0;
    
}
.sponcers_text {
    padding: 20px 0;
    color:#001353;
    font-weight:bold;
    text-align:center;
	font-size:43px;
	font-family: var(--font-secondary);
	
}
.sponcers_text1 {
    
    color:#e69000;
     margin-top: -25px;
	 margin-left:-20px;
    text-align:center;
	font-size:14px;
	font-family: var(--font-secondary);
	
}
#sponcers_container {
    white-space:nowrap;
    text-align:center;
}

.sponcers_img-icon {
	max-width:120px;
	max-height:140px;
}

/*--------------------------------------------------------------
# Welocme Section -- vishnu
--------------------------------------------------------------*/



.welcome{
		width: 100%;
  
  
  }
  
  .welcome_left{
		width: 50%; height: 120px; float: left; 
		
		padding: 7% 0 0 15%;
  
  }
  .welcome_right{  
		margin-left: 50%;
		margin-bottom: 40px;
		padding-top: 55px; /*65*/
		text-align:justify;
		padding-right: 125px; /*170*/
		line-height:1.8;
		font-size:14px;
		font-family: var(--font-secondary);
  }
   
.welcome p{	
	font-weight:normal;
  font-size: 15px;
  text-align: justify;
  color: #111;
}



/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
    background-image: url(../img/ti-bg2.png);
    padding-bottom: 50px;
    background-size: contain;
    background-position: top;
}

.why-us .img-bg {
  min-height: 390px;
  background-size: cover;
  box-shadow: 2px 3px 5px #11111117;
}

.why-us .slides {
  
  /* featured service height --- vishnu */
  /*background-color: #f7f9fc;*/
  height:390px;
  /*featured service height --- vish.why-us .slidesnu*/
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  /*font -color:*/
  /* color: var(--color-secondary);  */
  
  color :#2592fe;
  /*font  -color: */
}

.why-us h4 {
  font-size: 14px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}
.why-us p{
  text-align: justify;
  font-size: 15px;
}
.why-us .swiper {
  margin: 25px 50px 20px 60px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff !important;
}
.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
      font-size: 12px;
      vertical-align: middle;
    font-weight: bold;
    /* padding: 8px; */
    margin-left: -1px;
}
.swiper-button-next, .swiper-button-prev{
     color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    padding:14px;
    top: 65%;
}
.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 20px 60px 20px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 10px 10px 10px 10px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 10px 0;
  color: #29486a;
  text-align: justify;
  line-height: 1.6em;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
	/*call-to-action --- vishnu*/
		background: linear-gradient(rgb(13 110 253), rgb(46 145 255 / 85%)), url(../img/about-header.jpg) center center;
  
 
  /*call-to-action --- vishnu*/
  background-size: cover;
  padding: 50px 0 30px;
  
}
.btn-div {

}
.value-sec{
    padding: 10px; 
    border-top: 2px solid transparent;
}
.value-sec:hover{
    border-top: 2px solid #fff;      
    background: #1e7af5;
    box-shadow: 0px 0px 20px #1111112b;    
    transition: 0.2s all;
}
.btn-right{
    bottom: 0px !important;
    right: unset !important;
}
.btn-div .btn-primary{
    bottom: 0px;
    position: fixed;
    right: 0%;
    border-radius: 0;
    padding: 10px 15px;
}
@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 13px;
    font-family: 'GoogleSans-bold';
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
  font-size:14px;
  
}
#mva_action{
	
	text-align:justify;
}
.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #2aa5df;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .mb-50{
    margin-bottom: 20px;
  }
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts{
  padding: 80px 0 0;
}
.recent-posts .post-box {
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 10px;
  box-shadow: 0px 1px 6px #1113;
}
.recent-posts .post-box:hover
{
  box-shadow: 4px 4px 8px #1113;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
  font-size: 20px;
  color: #084298;
  /*post title vishnu*/
  font-weight: 600;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
  padding: 0px 20px 0;
}

.recent-posts .post-box p {
  padding: 0px 20px 20px;
  margin: 15px 0 0 0;
  height: 90px;
 /* color: rgba(27, 47, 69, 0.7); */
  /*post title vishnu*/
  color: #212121;
  font-size:14px;
  /*post title vishnu*/
}

.recent-posts .post-box .readmore {
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  padding: 0px 12px 12px;
  text-align: right;  
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

.recent-posts-overlap-main{
	height: 800px;
	width:100%;overflow:fixed;
  background: url(../img/bg-img2.jpg) #001453;
  background-position: bottom;
  background-repeat: no-repeat;
}
.overlap-sec{
	margin-top: -17%;
	padding-bottom: 40px !important;
}
/*recent-posts_overlay-sec ---- vishnu*/

.recent-posts_overlay-sec{
    margin-left: -132px;
    margin-top: -112px;
    overflow: hidden;
    height: 600px;
    position: absolute;
}
.recent-posts_overlay-sec img{  
    box-shadow: 1px 9px 8px #1111115e;
}
.recent-posts-h2{
	font-weight: 600;
	margin-left:-4px;
	color:#fff;
  padding-bottom: 20px;
}

/*recent-posts_overlay-sec --- vishnu */

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--color-primary);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: #f7f9fc;
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8eff6;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  width: 16%;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px 16px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 7px;
  font-size: 29px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}
.contactcareer {
  background: none;
  background-size: contain;
  position: relative;
}
@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1c88ba;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #1f98d1;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-primary);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}
.sec-scroll-id{
    scroll-margin-top: 12em;
}
.sec-scroll-id2{
  scroll-margin-top: 50em;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-content {
  background-color: #f7f9fc;
  background-size: contain;
  padding: 60px 0 0px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 10px;
}

.footer .footer-content .footer-info .logo img {
	/*resized logo image ---  vishnu*/
  /*max-height: 40px;*/
  max-height:160px;
  
  /*resized logo image ---  vishnu*/
  margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.footer .footer-content .footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-secondary);
}

.footer .footer-content .social-links a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: rgba(27, 47, 69, 0.5);
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
  background-color: #38618e;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  /* footer font color change --- vishnu */
  /*color: #29486a;*/
  color :#086cb7;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: #000000;
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: #383838;
    transition: 0.3s;
    font-weight: 500;
  display: inline-block;
  line-height: 1.4;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-content .footer-contact p {
  line-height: 21px;
  color: #2b180d;
}
.footer .footer-content .footer-contact ul{
  padding-left: 20px;
}
.footer .footer-content .footer-contact ul li{
  list-style: none;
  padding-bottom: 8px;
}
.footer .footer-content .footer-contact ul li i{
    margin-left: -21px;
    padding-right: 4px;
}
.footer .footer-legal {
	 /*copyright background
	 --- vishnu*/
  /*background: #fff;*/
  
  background:#001353;
   /*copyright div height reduced --- vishnu*/
  /*padding: 30px 0;*/
  padding: 15px 0;
  /*copyright div height reduced --- vishnu*/
}
.footer .social-icons{
  display: inline-block;
}
.footer .social-icons li{
    list-style: none;
    display: inline-block;
    font-size: 20px;
    padding: 15px 25px 0 0;
}
.footer .social-icons li a{
      color: #084298;
}
.footer .social-icons li a:hover{
      color: #e69000;
}
.footer .footer-legal .copyright {
  text-align: center;
   /*copyright color
	 --- vishnu*/
  /*color: var(--color-secondary);*/
  color:#fff;
  
}
.g-recaptcha {
  width: fit-content;
    padding: 0;
    margin-left: 0px;}
 #sub-form
    {
      margin-left: 20px;   
      display: flex;
    justify-content: space-between;
    width: 60%;   
        flex-wrap: wrap;
    }
#sub-form button
{
  display: inline-block;
  height: 40px;
}
#sub-form input
{
  display: inline-block;
  height: 40px;width: 180px;
  background-color: #f9fafb !important;
    min-width: 40px;
    margin-left: -20px;
    color: #2f2f2f;
    line-height: 33px;
    border-radius: 4px;
    padding: 12px;
    border: 1px solid #0662a7;
}
#sub-form .contact-form-btn
{
    background-color: #105e98 !important;
    min-width: 40px;
    margin-left: -20px;
    color: #ffffff;
    line-height: 19px;
    font-size: 20px;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid #0662a7;
}
#sub-form .contact-form-btn:hover
{
  border: 1px solid #105e98; 
}
#sub-form button
{
  background-color: #1e2452 !important;
  border-color: #1e2452;
  text-shadow: 2px 2px 3px rgb(0, 0, 0, 0.2);
}
.footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-secondary);
}
#subscription-hp
{
  padding: 40px 30px;
  margin-right: 78px;
  background-color: #fff;  
  border-radius: 7px;
  box-shadow: 1px 2px 3px 2px rgb(0, 0, 0,0.2);
}
#subscription-hp h3
{
  color: #1e2452;
  font-weight: 800;
  font-size: 22px;
}
 #subscription-hp
    {
      padding: 50px 30px;
      margin-right: 0px;
      text-align: center;
    }

.hero .hero-c{
  padding-top: 110px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px){
.welcome_right{
    padding-right: 43px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-content{
    padding-bottom: 40px;
  }
  .btn-div .btn-primary, .btn-right{
    bottom: unset !important;
    right: unset !important;
  }
  .why-us .slides{
    height: auto;
  }
   .welcome_right{
    padding-right: 43px;
  }
}
@media only screen and (max-width: 767px){
  .portfolio .portfolio-item .portfolio-info{
    width: 8%;
  }
  .header-top{
    height: auto !important;
  }
  .header-top-menu {
    text-align: center;
  } 
  .lang-currency-dropdown ul{
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
  }
  .navbar .btn-get-started a{
    color: #fff;
  }
  .footer .footer-content .footer-contact ul{
    margin-bottom: 0;
  }
  .footer .footer-content h4{
    padding-bottom: 0;
  }
  .footer .footer-content{
    padding:30px 0 30px 0;
  }
  .hero{
    background-size: cover;
  }
  .recent-posts_overlay-sec{
    margin-top: 0px;
  }
  .recent-posts_overlay-sec img{
    width: 100%;
  }

  .recent-posts-overlap-main{
    height: 720px;
  }
  .section-header h2 {  
    font-size: 34px;}
  .call-to-action h3{
    font-size: 24px;
  }
  .sponcers_text{
      font-size: 35px;
  }
  .welcome p.subhead{
    font-size: 24px;
  }
  .welcome_left h2 {    
    font-size: 34px;
}
  .welcome_left{
    padding: 7% 1% 0 5%;
  }
  .hero .hero-c{
    padding: 200px 50px 0;
  }
  .sponcers_left, .welcome_left{
    width: 100%;
    float: none;
  }
  .sponcers_right{
    margin-left: 0;

  }
  .welcome_left p{
    margin-bottom: 0;
  }
  .welcome_right{
    margin-left: 0;
    height: auto;
    margin-bottom: 0px;
    padding: 0 20px 20px;
  }
  .overlap-sec{
    margin-top: -43%;
    padding-bottom: 0px !important;
  }
  .recent-posts{ 
    padding: 0 0px 80px !important;
  }
  .recent-posts-h2{
    margin-left: 0;
    padding-left: 20px;
  }
  .btn-div .btn-primary, .btn-right{
    bottom: unset !important;
    right: unset !important;
  }
  .why-us .slides{
    height: auto;
  }
  .footer .footer-content .footer-info .logo img{
    height: 137px;
  }
  .footer .footer-content .footer-info{
    margin-bottom: 10px !important;
    margin-top: 10px !important;
  }
  .footer .footer-content .footer-links, .footer .footer-content .footer-contact{
    margin-bottom: 0px;
    padding-left: 30px;
    margin-top: 15px;
  } 
  .hero:before {
  position: absolute;
  content: "";
  background: rgb(12 40 70 / 70%);
  inset: 0;
}
}
 @media only screen and (min-width: 992px) and (max-width: 1199px){
  .hero:before {
  position: absolute;
  content: "";
  background: rgb(12 40 70 / 70%);
  inset: 0;
}
  .hero .hero-c{
    padding: 220px 40px 0;
  }
  .footer .footer-content .footer-info .logo img{
    max-height: 160px;
  }
  .btn-div .btn-primary, .btn-right{
    bottom: unset !important;
    right: unset !important;
  }
  .why-us .slides{
    height: auto;
  }
  .header .logo img{
    margin-left: 60px;
  }
  .portfolio .portfolio-item .portfolio-info {
      width: 19%;
  }
 }
@media only screen and (min-width: 768px) and (max-width: 991px){
  .portfolio .portfolio-item .portfolio-info {
      width: 14%;
  }
  .header-top{
    height: auto !important;
  }
  .header-top ul{
    padding-left: 0px !important;
  }
  .navbar a, .navbar a:focus{
    padding: 10px 35px;
  }
  .navbar .btn-get-started{
    margin-left: 20px;
    padding: 0;
    margin-top: 10px;
  }
  .hero:before {
  position: absolute;
  content: "";
  background: rgb(12 40 70 / 70%);
  inset: 0;
}
  .hero .hero-c{
    padding: 170px 40px 0;
  }
  .hero{
    background-size: cover;
  }
  .footer .footer-content .footer-info .logo img{
    max-height: 160px;
  }
  .header .logo img{
    margin-left: 60px;
  }
  .overlap-sec {
    margin-top: -28%;   
    padding-bottom: 0px !important;
}
}
@media only screen and (max-width: 479px){
  .portfolio .portfolio-item .portfolio-info {
      width: 12%;
  }
  .hero:before {
  position: absolute;
  content: "";
  background: rgb(12 40 70 / 70%);
  inset: 0;
}
  .hero{
    background-size: cover;
  }
  .overlap-sec {
    margin-top: -75%;
    padding-bottom: 0px !important;
}
}
.footer .footer-content .footer-contact p i{
  padding-right: 5px;
}
.nav-social-icons{
	color:#032083;font-size:16px;	
}

.nav-social-icons:hover{
	color:#e69000;
}

.nav-link-text {
	font-size:16px;
}
.nav-link.navtab.active{
	color:#2592fe;
}
.nav-link.navtab.active:focus{
	color:#2592fe;
}.nav-link.navtab{
	color:#001453;
}