
/* Font */

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Light.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-ExtraLightIt.woff2') format('woff2'),
        url('../fonts/SourceSansPro-ExtraLightIt.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Bold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Semibold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}





html, body{
  overflow-x: hidden;
}

body {
   font-family: 'Source Sans Pro';
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  color: #2f0802;
}
*:focus {
  outline: none;
}
button:focus {
  outline: none;
}
button {
  border: 0;
}
ul li {
  list-style: none;
  color: inherit;
}
img {
  max-width: 100%;
}
a:hover {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
}
.container {
  width: 1200px;
  margin: auto;
}

/* Navigation Css Start */

header{
  position: relative;
  z-index:99999;
}
.navigation {
  padding:20px 0px 20px;
  transition: all 0.6s ease 0s;

}

.main{
  transition: all 0.6s ease 0s;
}

.navigation.fixed  {
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  transition: all 0.6s ease 0s;
  box-shadow: 0px 3px 3px rgb(88 88 88 / 20%);
  padding:25px 0px 25px;
  animation: smoothScroll 1s forwards;
  top:0px;
}

/*.navigation.fixed  nav ul li a{
  color: #002738 !important;
}
*/
nav ul li a:after {
  display      : block;
  content      : '';
  border-bottom: 1px solid #4665aa;
  transform    : scaleX(0);
  transition   : transform 300ms ease-in-out;
}

nav ul li a:hover:after {
    transform: scaleX(1);
}

nav ul li a.fromleft:after {
    transform-origin: 0 50%;
}

.menu_left img{
  width:100%;
  max-width:280px;
}

.shrink {
  padding: 20px 0;
}

.navigation.fixed, .navigation.fixed  .navbar {
  transition: all 0.6s;
  z-index: 999999;

}

.navigation.fixed .logo_green {
  display:block;
  transition:all 0.5s;
}

.navigation.fixed  .logo{
  display:none;
}

.navigation .logo_green{
  display:none;
  transition:all 0.5s;
  width:90px;
}

.inner .navigation .logo_green{
  display:block;
}

.navigation.fixed .navigation .logo_green{
  display:block;
}

.inner .navigation nav ul li .active, .inner .navigation nav ul li .active:after{
  color: #e2c53b !important;
}

.inner .navigation nav ul li a:hover{
  color: #e2c53b !important;
}

.inner .navigation nav ul li a, .inner .navigation nav ul li a.drop_arw:not(:only-child):after,
.inner .navigation nav ul li a.drop_arw:visited:not(:only-child):after{
  color:#002738;
  opacity:0.9;
}

.main.fixed .navigation nav ul li a, .main.fixed .navigation nav ul li a.drop_arw:not(:only-child):after,
.main.fixed .navigation nav ul li a.drop_arw:visited:not(:only-child):after{
  color:#002738;
}

.navigation.fixed .navbar-dropdown li a {
    color: #515151 !important;
}

.navbar-dropdown li a.active:before{
  content:none;
}

.inner .navigation nav .navbar-dropdown .submenu_inr ul li .active{
  color:#515151 !important;
  text-decoration:underline;
}

.inner .navigation nav .navbar-dropdown .submenu_inr ul li a:hover{
  color:#515151 !important;
  text-decoration:underline;
}

.navbar-dropdown .submenu_inr  ul li a.active:before{
    content:none;
}

.navigation .logo{
  display:block;
}

.menu_right .nav-list{
  display: inline-flex;
  align-items: center;
}

.brand a, .brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  position: relative;
}

.submenu li a{
    color:#959595 !important;
    font-size:15px !important;
}

.submenu li:hover a{
    color:#046399 !important;
}

.submenu li:hover a:before, .submenu li a:after{
    opacity:0;
    visibility:hidden;
    display:none;
}

.submenu li{
  padding:10px 0 !important;
}

ul.nav-list li.dropdwon:hover .submenu{
  opacity:1;
  visibility: visible;
  transition:all 0.6s;
  /*display:block;*/
}

ul.nav-list li.dropdwon a{
  position: relative;
  font-family: 'Source Sans Pro';
  display:flex;
  align-items:center;
}

ul.nav-list li.dropdwon a img{
  margin-right:10px;
}

.submenu{
  opacity:0;
  /*display:none;*/
  visibility:hidden;
  transition:all 0.6s;
  position: absolute;
  flex-wrap: wrap;
  width:350px;
  background:#fff;
  top:25px;
  padding: 10px;
  box-shadow: 0px 2px 4px rgb(201 201 201);
  border-top: 2px solid #046399;
  left: 65px;
}

.submenu_inr{
  background-color:#e4e4e4;
  display:none;
  width: 100% !important;
  position: relative;
  left: -17px;
}

.submenu_inr.expanded {
  display:block;
}

.submenu_main{
  display: flex;
  align-items:center;
}

.submenu_main i{
  z-index:9999999;
  cursor:pointer;
  color:#666;
  font-size: 9px;
}

.navbar-dropdown .submenu{
  width:80%;
  display:flex;
  justify-content:space-between;
}

.submenu_inr ul {
  padding:10px 0px;
}

nav {
  float: right;
  display: flex;
  align-items: center;
  position: relative;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li .navbar-dropdown{
  transition: all 0.6s ease 0s;
}

nav ul li {
  padding:0px 22px;
  text-transform: capitalize;
  transition: all 0.6s ease 0s;
}

.mob_dropdown.active .drop_arw{
  color: #4665aa !important;
}

.navbar-dropdown li:hover .submenu{
  color: #e2c53b !important;
}

.navbar-dropdown li .submenu_main:hover a{
  color: #e2c53b !important;
}

.navbar-dropdown .submenu_inr li a:hover{
    text-decoration:underline;
}

.nav-list .dropdwon:hover .navbar-dropdown{
  opacity:1;
   transition: all 0.6s ease 0s;
}

nav ul li .active{
  color:#4665aa;
  position: relative;
}

nav ul li a{
  color: #353535;
  font-size:19px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Source Sans Pro';
}

nav ul li a:hover{
  color:#4665aa !important;
}

nav ul li a.active:after{
  display:none;
}

nav ul li a.active:before{ 
  content:'';
  position:absolute;
  bottom:-2px;
  left: 0;
  right:0;
  margin:0 auto;
  width:90%;
  height:1px;
  background-color:#4665aa ;
}

/*.navbar-dropdown .submenu.active:before{
  content:none !important;
}*/

nav ul li a:hover{
  color:#e2c53b;
}

.hamburger_icon {
  position: absolute;
  width: 29px;
  right:0px;
  top:30px;
}
.hamburger_icon button{
  border:0;
}

.hamburger_nav span {
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background: #2f0802;
}

.hamburger_nav span::before {
  top: -8px;
}

.hamburger_nav span::after {
  bottom: -8px;
}

.hamburger_nav span::after, .hamburger_nav span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2f0802;
  content: "";
}

.navbar-dropdown li{
  margin:0;
}
.navbar-dropdown li a{
  display:flex;
  align-items:center;
  width: 100%;
}

.navbar-dropdown li a:hover:before{
  height: 0;
}

nav ul li a.drop_arw:not(:only-child):after, nav ul li a.drop_arw:visited:not(:only-child):after {
  padding-left:6px;
  content: ' \f0d7';
  color:#fff;
  display: inline-block;
   font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size:10px;
  position: absolute;
  top:4px;
}


nav ul.navbar-dropdown li a {
  padding:6px 0px;
  line-height: 20px;
  color: #515151 !important;
}

.dropdwon .navbar-dropdown {
  position: absolute;
  opacity:0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(201,201,201,0.5);
  width:250px;
  top: 38px;
  top:100%;
  left:50%;  
  padding: 8px 0;
  transform: translateX(-50%);
  margin-top:12px;
}


a.reach_out_btn  {
    background: #37769f;
    padding:10px 12px;
    margin:0 10px;
    line-height: 0;
    color:#fff;
}

.nav-list .search a{
  padding:0;
}


.site-header {
  background-color: #fff;
  padding: 20px 60px 20px 20px;
  border-bottom: 1px solid #ccc;
  position: absolute;
  margin:0 auto;
  width: 100%;
  transition:all 2s;
  animation:fadeOutUp;
  animation-duration:2.5s;
  max-width:1200px;
}

.site-header-search.active{
  opacity:1;
  visibility:visible;
  margin:25px auto 0;
  left: 0;
  right:0;
  z-index:99;  
  animation:fadeInDown;
  width:100%;
  animation-duration:2.5s;
  display:block;
  transition:all 0.5s;
}

.site-brand {
  display: inline-block;
}

.site-search {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 05%;
  margin: 20px 0;
  top: 0;
  bottom: 0;
  width: 50px;
  outline: none;
}

.site-header-search {
  background-color:#353535;
}

.site-search-input {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-size:16px;
  background-color: transparent;
  outline: none;
  color: #fff;
}

.site-search-reset {
  outline: none;
  background-color: transparent;
  border: 0;
  position: absolute;
  right:0;
  margin:0px 0;
  top: 0;
  bottom: 0;
  width: 50px;
  cursor:pointer;
  font-size:16px;
  color:#fff;
}

.site-search-reset i{
  color:#fff !important;
  font-size:26px;
}

.hide {
  visibility: hidden;
  opacity: 0;
  margin: 0 auto;
  left: 0;
  right:0;
  width:0;
  z-index: -11111;
  display:none;
  transition:all 0.5s;
}

a.search-btn {
  line-height:0;
}

.search-btn{
  background: #ffff;
  cursor: pointer;
  height: 42px;
  border: 1px solid #ccc;
  border-left: 0;
  width: 30px;
  display: flex;
  align-items: center;
}

.topbar_right_icon li a img{
  width:17px;
  height:17px;
  margin-top: 2px;
}

.topbar_right_icon{
  display:flex;
  align-items:center;
}

.topbar_right_icon li{
  padding-left:20px !important;
  padding-right:0;
}

.topbar_right_icon li a:after{
  display:none;
}

.nav-list .search a:hover{
  background:transparent;
  color:#707070;
}

.dropdown_icon {
  width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #4999ff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.dropdown_icon img{
  width: 20px;
  height: 20px;
}

.dropwon_nav {
  margin-left:10px
}

.dropwon_nav h6 {
  margin:0;
  color: #707070;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.dropwon_nav p{
  margin:0;
  color: #707070;
  font-family: 'Source Sans Pro';
  font-size: 12px;
    font-weight: 300;
    line-height: 14px;
}

/* Mobile navigation */

.mo_menu {
  position: fixed;
  right:-30%;
  background: #fff;
  width:30%;
  height: 100vh;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index:9999;  
  visibility: visible;
}

.mo_menu.active {
  right:0;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  padding:60px 0px;
  background:#4470a7;
  position: fixed;
  overflow-y: scroll;
  opacity:1;
  display:block;
  z-index:9999999;
}



.mo_menu .sidemenu_close{
  display:none;
}

.mo_menu.active .sidemenu_close{
  display:block;
}

.mo_menu.active .sidemenu_close span{
  background-color:transparent;
}

.mo_menu.active .sidemenu_close span:before, .mo_menu.active .sidemenu_close span:after{
  background-color:transparent;
}

.sideMenu ul li .navbar-dropdown {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:transparent;
  box-shadow:none;
  top:0;
  opacity:1;
}

.sideMenu .navbar-dropdown li a{
  background-color:transparent;
  display:flex;
  border-bottom:0;
}

.sideMenu .navbar-dropdown .dropdown_icon{
  width:38px;
  height:38px;
}

.sideMenu  .dropwon_nav h6, .sideMenu  .dropwon_nav p{
  color:#fff;
}

.sideMenu  .dropwon_nav h6{
  font-size:18px;
  margin-bottom:5px;
}

.sideMenu  .dropwon_nav p{
  font-size:14px;
}

/*.sideMenu .mob_dropdown:after{
  content: '\f054';
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right:20px;
  top:24px;
  color:#ffffff;
   font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
}*/


.sideMenu ul li {
  display: block;
  border-top: 1px solid #ddd;
  position: relative;
  padding: 20px 20px;
}

.sideMenu ul li .navbar-dropdown li{
  padding:20px 20px;
}

.sideMenu ul li:first-child {
  border: 0;
}

.sideMenu ul li a {
  display: block;
  text-decoration: none;
  color:#fff;
  cursor: pointer;
  font-size:18px;
  font-family: 'Source Sans Pro';
}

.sideMenu ul li a.active{
  color: #fff;
}

.menuIcon {
  display: inline-block;
  padding: 3px 12px;
  cursor: pointer;
  position: absolute;
  right:10px;
  z-index: 99999;
}
.menuIcon span {
  display: block;
  width: 25px;
  height:2px;
  margin: 20px 0;
  background:#353535;
  position: relative;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  width: 25px;
  height: 2px;
  background: #353535;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 2px;
  background: #353535;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.navigation.fixed .menuIcon span:after, .navigation.fixed .menuIcon span:before,
.navigation.fixed .menuIcon span { 
     background:#002738;
}

.menuIcon.active span {
  background:transparent;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:before {
  transform: rotate(45deg);
  top: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:after {
  transform: rotate(-45deg);
  bottom: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.mo_menu.active .menuIcon.sidemenu_close{
  position: absolute;
  top: 15px;
  right: 15px;

}

.mo_menu.active .menuIcon.sidemenu_close{
  background-color:transparent;
}

.mo_menu.active .menuIcon.sidemenu_close i{
  font-size:24px;
  color:#fff;
}


/* Banner Css Start */
.banner_main{
  background-size:cover;
  background-position: bottom;
  height:750px; 
  display:flex;
  align-items:center;
  position: relative;
  z-index: 9999;
}

.banner_main:before{
  content:'';
  position:absolute;
  top:0;
  width:100%;
  height:100%;
  background:#00000063;
  z-index: -1;
}

/*section.banner_main:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000057;
  z-index: -1;
}*/

.banner_cnt h1{
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color:#ffffff;
  font-family: 'Source Sans Pro';
}

.banner_cnt p {
  margin:30px 0 50px;
  color:#ffffff;
  font-size: 22px;
  font-weight:400;
  line-height: 30px;
  letter-spacing: 1px;
  font-family: 'Source Sans Pro';
}

.banner_btn {
  display:flex;
}

.banner_btn .btn_fill{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#ffffff;
  width:100%;
  max-width:245px;
  height:60px;
  color:#4665aa;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius:40px;
  transition:all 0.5s;
  border:2px solid transparent;
  margin-right:30px;
  font-family: 'Source Sans Pro';
}

.banner_btn .btn_fill:hover{
  color:#ffffff;
  background:transparent;
  border:2px solid #ffffff;
}

.banner_btn .brn_brd{
  display:flex;
  justify-content:center;
  align-items:center;
  background:transparent;
  width:100%;
  max-width:245px;
  border:2px solid #ffffff;
  color:#ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Source Sans Pro';
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius:40px;
  transition:all 0.5s;
}

.banner_btn .brn_brd:hover{
  color:#4665aa;
  background:#ffffff;
  border:2px solid transparent;
}

.inr_scroll{
  text-align:center;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  cursor:pointer;
}

.inr_scroll2{
  text-align:center;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  cursor:pointer;
}

/* Intro Css Start */

.intro_main{
  margin:80px 0px;
}

.main_title{
  margin-bottom:20px !important;
}

.mark {
  position: relative;
  z-index: 2;
  /*background: linear-gradient(to top, #008fff00 0%, #2fa3ff00 20%, #b5e9ff 20%, #b5e9ff 60%, #ff000000 60%, #ff000000 100%);*/
}

.intro_dtl p {
  color: #353535;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  font-family: 'Source Sans Pro';
}

.service-slider{
  margin-top:80px;
}

.service-dtl {
  border: solid 1px #e5e5e5;
  border-radius: 0;
  border-top: 11px solid #e5e5e5;
  padding: 50px 10px 25px;
}
.service-dtl img {
  display: block;
  margin: auto;
  margin-top: 0;
  margin-bottom: 51px;
}
.service-dtl h6 {
  color: #353535;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom:20px;
  font-family: 'Source Sans Pro';
  min-height: 52px;
}

.service-dtl p {
  font-family: 'Source Sans Pro';
  color: #4665aa;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom:20px;
  min-height:132px;
}

.link-more {
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  text-decoration: underline;
  letter-spacing: 1px;
  display: block;
  font-family: 'Source Sans Pro';
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color:transparent;
  opacity: 0.7;
}

.slick-slide {
  margin: 0 23.5px;
}

.slick-list {
  margin: 0 -23.5px;
}

.service-slider .slick-prev, .slick-next {
  width: 33px !important;
  height: 66px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute;
  z-index: 10;
  bottom: 0;
}

.service-slider .slick-prev {
  background-image: url('../img/left.png') !important;
  left: -53px !important;
}

.service-slider .slick-next {
  background-image: url('../img/right.png') !important;
  right: -53px !important;
}

/* Appointment Css Start */

.bk_appointment{
  display:flex;
  margin-bottom:80px;
}

.apt_left{
  width:57%;
  /*background: #f8f8f8;*/
  padding: 60px 40px 60px 120px;
  box-sizing: border-box;
      border-top: solid 3px #e5e5e5;
    border-bottom: solid 3px #e5e5e5;
}

.apt_right{
  width:43%;
  background-size: cover;
  background-position: center;
}

.apt_right img{
  display:none;
}

.apt_left .apt_plan {
  display: inline-flex;
  width: 100%;
  margin-bottom:40px;
}

.apt_left .apt_plan > li {
  width: 50%;
  margin-right: 70px;
}

.apt_left .apt_plan li ul li {
  display: inline-flex;
  width: 100%;
  align-items: flex-start;
}

.apt_left .apt_plan > li > h6 {
  color:#353535;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Source Sans Pro';
}

.apt_left .apt_plan li ul li {
  color: #000000;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  width: 100%;
  margin-bottom: 15px;
}

.apt_left .apt_plan li ul li:before {
  content: url(../img/how-icon.svg);
  position: relative;
  margin-right: 7px;
}

.apt_left h3{
  color:#353535;
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: 'Source Sans Pro';
}

.apt_left a{
  color: #4665aa;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 40px;
  border: solid 1px #4665aa;
  min-width: 200px;
  display: inline-block;
  padding: 16.5px 25px 15.5px;
  cursor: pointer;
  transition:all 0.6s;
}

.apt_left a:hover{
  background: #4665aa;
  color: #fff;
  border-color: #4665aa;
}

/* Testimonial Css Start */

.testimonial{
  text-align: center;
  width: 100%;
  display: inline-flex;
  position: relative;
  margin-bottom: 80px;
}

.title{
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom:12px;
}

.inr_title{
  color:#353535;
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom:40px;
  font-family: 'Source Sans Pro';
}

.tstmonial-slider .slick-prev, .tstmonial-slider .slick-next {
  width: 47px !important;
  height: 33px !important;
}

.tstmonial-slider .slick-prev {
  background-image: url('../img/testi_left.png') !important;
  left: -99px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.tstmonial-slider .slick-next {
  background-image: url('../img/testi-aro-rgt.svg');
  right: -99px;
}

.tstmonial-slider {
  width: 1000px;
  margin:0 auto;
  display: inline-block !important;
}

.tstmonial-data {
  display: block;
  padding: 60px 34px 52px;
  border-radius: 20px;
  background: #f8f8f8;
  position: relative;
  text-align:center;
  margin: 0 auto;
  min-height: 580px !important;
}

.tstmonial-data:before {
  content:'';
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/testi-quote.svg);
  background-repeat:no-repeat;
  background-size: contain;
  width:160px;
  height:100%;
}

.tstmonial-data img {
  margin: auto;
  margin-bottom: 20px;
}

.tstmonial-data h6 {
  color: #4665aa;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Source Sans Pro';
}

.tstmonial-data p {
  color:#353535;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  font-family: 'Source Sans Pro';
}

/* Why Choose Css Start */

.why_choose{
  margin-bottom:80px;
}

.why_left{
  width:47%;
}

.why_right{
  width:48%;
}

.why_inr{
  display:flex;
  justify-content:space-between;
}

.why_inr h5{
  color: #353535;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom:20px;
  font-family: 'Source Sans Pro';
}

.why_left p{
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  color: #353535;
  font-family: 'Source Sans Pro';
}

.why_left ul{
  width:85%;
}

.why_left li{
  margin-bottom:40px;
}

.why_left a{
  color: #4665aa;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 40px;
  border: solid 1px #4665aa;
  min-width:130px;
  display: inline-block;
  padding: 16.5px 25px 15.5px;
  cursor: pointer;
  transition: all 0.6s;
  font-family: 'Source Sans Pro';
}

.why_left a:hover{
  background: #4665aa;
  color: #fff;
  border-color: #4665aa;
}

.progress h6{
  color: #353535;
  font-size: 20px;
  font-family: 'Source Sans Pro';
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom:14px;
  text-transform: uppercase;
}

.progress_fill   {
  width: 100%;
  height: 10px;
  background: #e2e2e2;
  border: 1px solid #e2e2e2;
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
}

.progress_fill .tip {
  margin-top: -32px;
  margin-left: 19px;
  padding: 5px 6.5px;
  left: 0px;
  position: absolute;
  z-index: 2;
  background: #4665aa;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  border-radius: 4px 4px 4px 0;
  font-family: 'Source Sans Pro';
}

.progress_fill .tip:after {
  border: solid;
  border-color: rgb(70 101 170) transparent;
  border-width: 6px 8px 0 0;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 9;
}

.progress_fill .fill {
  display: block;
  position: relative;
  width: 0px;
  height: 100%;
  background: #4665aa !important;
  z-index: 1;
  border-radius: 5px;
}


/* Faq Css Start */

.faq_main{
  margin-bottom:60px;
}

#accordion {
  list-style: none;
  padding: 0px;
  padding: 0 0 0 33px;
  position: relative;
}

#accordion > li {
  display: block;
  list-style: none;
  border-bottom: solid 1px #9ca7ac;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

#accordion > li > span {
  display: block;
  margin: 0 0 30px 0;
  background-size: 20px;
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#accordion > li > div {
  list-style: none;
  padding: 0 0 20px 3px;
  display: none; overflow:auto
}

#accordion > ul li {
  font-weight: normal;
  cursor: auto;
  padding: 0 0 0 7px;
}

#accordion a {
  text-decoration: none;
}

#accordion > li > div p {
  color: #465358;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

#accordion > li > div ul{
  margin-bottom: 20px;
}

#accordion > li > div ul li {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight:400;
  line-height: 24px;
  letter-spacing: 1px;
  display: flex;
}

#accordion > li > div ul li:before {
  content: url(../img/faq-bullet.svg);
  margin-right: 12px;
}

#accordion > li > span:before {
  content: '\f3d1';
  font-family: 'Ionicons';
  font-size: 20px;
  margin-left: 0;
  position: absolute;
  left: 0px;
  text-align: center;
  display: block;
  width: auto;
  color:#353535;
  font-weight: 400;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#accordion > li > span.active:before {
  transform: rotate(90deg);
}

/* lender Css Start */

.lender{
  margin-bottom:80px;
}

.lender h3{
  color: #4665aa;
  font-size: 26px;
  font-weight: 300;
  line-height: 33px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lender-slider .slick-slide {
  margin: 0 15px;
}

/* Contact Home Css Start */

.contact_home{
  position: relative;
  display:flex;
}

.cnt_left, .cnt_rgt{
  width:50%;
}

.cnt_left{
  background-repeat: no-repeat;
  background-size: cover;
  padding: 117px 0 118px 120px;
  position: relative;
}

.cnt_left:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000061;
    left: 0;
}

.cnt_main{
    z-index: 9999;
    position: relative;
}

.cnt_rgt{
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
}

.cnt_rgt iframe{
  height:100% !important; 
}

.cnt_rgt .mobile_img{
  display:none;
}

.cnt_main h4{
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-family: 'Source Sans Pro';
}

ul.cnt_icon {
  display: inline-flex;
  margin-bottom: 50px;
}

ul.cnt_icon li {
  margin-right: 23px;
}

ul.cnt-location h6 {
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

ul.cnt-location a {
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display:block;
}

ul.cnt-location a.direct-link{
  margin-top:15px;
  display:block;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  text-decoration: underline;
}

ul.cnt-location li{
  margin-bottom:40px;
}

/* Footer Css Start */
footer{
  background-color:#27292A;
  padding-top:60px;
}

.footer_top{
  width: 100%;
  position: relative;
  display:flex;
  justify-content:space-evenly;
}

/*.footer_top div:nth-child(1) {*/
/*  width: 321px;*/
/*}*/

/*.footer_top div:nth-child(2) {*/
/*  width:254px;*/
/*}*/

/*.footer_top div:nth-child(3) {*/
/*  width: 290px;*/
/*}*/

/*.footer_top div:nth-child(4) {*/
/*  width:180px;*/
/*}*/

.footer_top .footer_col:nth-child(3){
    display:none;
}

.footer_top h6{
  color: #4665aa;
  font-size: 16px;
  font-family: 'Source Sans Pro';
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom:13px;
}

.ftr_lft{
  float: left;
  /*margin-right: 35px;*/
  /*width: 95px;*/
}

.footer_col li{
  color: #cfcfcf;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 13px;
}

.ftr_rgt{
  float:right;
  /*width:190px;*/
}

.footer_col p {
  color: #cfcfcf;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
}

.footer_col form input {
  min-width: 290px;
  border: solid 1px #cfcfcf;
  background: transparent;
  border-radius: 5px;
  display: block;
  color: #cfcfcf;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  padding: 10.9px 15px 9.6px;
  margin-bottom: 15px;
}

.footer_col form input[type="submit"] {
  min-width: 125px;
  background: #4665aa;
  border-color: #4665aa;
  border-radius: 35px;
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12.5px 46.31px 12.8px 45.69px;
  box-sizing: border-box;
  cursor: pointer;
  border: 2px solid transparent;
  transition:all 0.6s;
}

.footer_col form input[type="submit"]:hover{
  color: #4665aa;
  background: transparent;
  border: 2px solid #4665aa;
}

.footer_col form input::placeholder{
  color: #cfcfcf;
}

.footer_top div:last-child > a {
  margin-bottom: 20px !important;
  display: block;
}

.footer_top div:last-child{
  text-align:right;
}

.footer_col img{
  width:100%;
  max-width: 100px;
}

.Site_ist{
  color:#4665aa;
}

.ftr-divider{
  display: block;
  width: 75%;
  margin:70px auto 0;
  border:1px  solid #cfcfcf;
}

.ftr_btm{
  padding:30px 0px;
}

.ftr_btm p {
  color: #cfcfcf;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.ftr_btm a{
  color:#4665aa;
}

/**** Inner Banner Page css ****/

.inner_banner{
  background-size:cover;
  background-position:center;
  height:533px;
  padding:0px;
  align-items:center;
  position: relative;
  z-index: 9999;
     display: flex;
    align-items: center;
}

section.inner_banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#0000008f;
    z-index: -1;
}

.inner_banner .banner_cnt h1{
  text-transform: capitalize;
  z-index:9999;
  position: relative;
}

.inner_banner .banner_cnt p{
  margin:10px 0 0px;
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  position: relative;
  z-index:9999;
}

.breadcrumb{
  display:flex;
  color: #353535;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 1px;
  font-family: 'Source Sans Pro';
  margin-top:30px;
}

.breadcrumb ul li {
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
}

.breadcrumb ul {
  margin-left: 15px;
  display: flex;
}

.breadcrumb ul li:after {
  content: '/';
  padding: 0 5px;
}

.breadcrumb ul li:last-child:after {
  content: '';
}

.breadcrumb ul li a {
  text-decoration: underline;
}


/**** Contact Us Page css ****/
.contact_main{
  width:100%;
  display:flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
  margin:50px 0 120px;
}

.contact_left h2{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  letter-spacing: 1px;
  margin-bottom:40px;
}

.contact_left{
  width:46%;
}

.content_info li{
  margin-bottom:30px;
}

.content_info li h6 {
  color: #465358;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.content_info li a {
  color: #465358;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  display: inline-block;
}

.content_info li a.dir_lnk{
  color: #2195d3;
  font-family: 'Source Sans Pro';
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}

.content_info li span{
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  color: #465358;
  display:block;
}

.content_info li.social a{
  margin-right:20px; 
}

.contact_right{
  width: 480px;
  background: #eeeeee;
  box-shadow: 0px 4px 7px rgb(65 65 65 / 50%);
  padding: 50px 50px 40px;
  /* transform: translateY(-130px); */
  position: absolute;
  right: 0;
  top: -130px;
  z-index: 9999;
}

.contact_right h5{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}

.contact_right input,.contact_right textarea{
  border-radius: 5px;
  border: solid 1px transparent;
  background: #ffffff;
  width: 100%;
  margin-bottom: 20px;
  color: #000;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 23px 20px;  
}

.contact_right input::placeholder,.contact_right textarea::placeholder{
  color: #9CA7AC;
  font-weight:200;
  font-family: 'Source Sans Pro';
}

.contact_right input:focus, .contact_right textarea:focus {
  border-color: #0c2476;
}

.contact_right form textarea {
  resize:none;
  padding: 13px 20px;
  height: 140px;
  box-sizing: border-box;
}

.contact_right form input[type="submit"] {
  width: 100%;
  border-radius: 5px;
  background: #4665aa;
  cursor: pointer;
  color: #fff;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding:23px 25px;
  transition:all 0.6s;
  border:2px solid transparent;
}

.contact_right form input[type="submit"]:hover{
  background:transparent;
  border:2px solid #4665aa;
  color: #4665aa;
}

.map_bg{
  background-size:cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height:100%;
  position: relative;
}

.map_bg iframe{
  height:450px !important;
}

.map_bg a{
  display:inline-block;
  padding: 0 40px 47px 0;
}

/*.gm-style img {
  animation:updown 0.4s 0.2s infinite alternate ease-in-out forwards;
}*/

/*@keyframes updown{
  0%{
    transform: translateY(0px);
  }
  100%{
    transform: translateY(18px);
  }
}*/

/**** About Us Page css ****/

.about_main{
  margin:80px 0px;
}

.about_inr{
  position: relative;
  width: 100%;
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom:0px;
}

.abt_left{
  text-align:left;
  width: 47%;
}

.about_vision h2 {
    color: #353535;
    font-size: 36px;
    font-weight: 300;
    line-height: 45px;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Source Sans Pro';
}

.about_vision h4 {
    color: #353535;
    font-size:22px;
    font-weight:400;
    line-height: 45px;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Source Sans Pro';
}

.about_vision p {
    color: #353535;
    font-family: 'Source Sans Pro';
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
}

.abt_left ul li{
    color: #353535;
    font-family: 'Source Sans Pro';
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom:15px;
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
}

.abt_left ul li:before{
    content: url(../img/how-icon.svg);
    position: relative;
    margin-right: 7px;
}

.about_vision ul li{
    color: #353535;
    font-family: 'Source Sans Pro';
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom:15px;
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
}

.about_vision ul li p{
    margin-bottom:0;
}

.about_vision ul li:before {
    content: url(../img/how-icon.svg);
    position: relative;
    margin-right: 7px;
    line-height: 29px;
}

.services_inner_left ul li {
    color: #353535;
    font-family: 'Source Sans Pro';
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom:15px;
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
}

.services_inner_left ul li:before {
    content: url(../img/how-icon.svg);
    position: relative;
    margin-right: 7px;
}

.abt_right{
  width: 45%;
  display: flex;
  align-items: end;
  margin-bottom:70px;
}

.abt_right img{
  width: 100%;
  display: inline-block;
  height: auto;
  float: right;
  border-radius: 10px;
}

.abt_right .img_two{
    transform: translate(-60px, 70px);
}

.abt_left h3{
  text-align:left;
  margin-bottom:20px;
}

.abt_left p{
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom:30px;
}

.abt_left p:last-child{
  margin-bottom:0;
}


/* Our Process Css Start */

.our_process{
  background: #f8f8f8;
  padding:60px 0px;
  margin-bottom:80px;
}

.process {
  display: grid;
  row-gap: 50px;
  column-gap: 58px;
  grid-template-columns: repeat(3, 1fr);
}

.process li {
  width:100%;
}

.process li span {
  color:rgba(70,101,170,0.2);;
  font-family: 'Source Sans Pro';
  font-size: 70px;
  font-weight: 400;
  line-height: 88px;
}

.process li h6 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: -12px;
  transform: translateY(-32px);
}

.process li p {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
}

.abt_faq{
  margin-bottom:80px;
}

.about_bottom{
  padding-top: 180px;
  position: relative;
}

.about_btm_cnt {
  width: 720px;
  float: right;
  background:#4665aa;
  padding: 70px 130px 70px 70px;
  color: #fff;
  box-sizing: border-box;
  position: absolute;
  z-index: 9;
  right: 0;
  top: 0;
}

/*.about_btm_cnt:before{
  content:'';
  position: absolute;
  right:31%;
  bottom:2px;
  background: url(../img/about_btn_bg_logo.png);
  width: 100%;
  height: 100%;
  z-index:-99;
  background-repeat: no-repeat;
  background-position: right bottom;

}*/

.about_btm_cnt h5 {
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 32px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 1px;
  margin-bottom: 31px;
  position: relative;
}

.about_btm_cnt p {
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  position: relative;
}

.about_btm_cnt p a{
  border:0;
  padding:0;
  font-weight:500;
  display:initial;
  text-transform: initial;
}

.about_btm_cnt p a:hover{
   background:transparent;
   color:#fff;
}

.about_btm_cnt a {
  color: #fff;
  font-size: 16px;
  font-weight:600;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 40px;
  border:1px solid  #fff;
  background:transparent;
  min-width: 142px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 16.5px 18px 13.5px;
  cursor: pointer;
  transition: all 0.6s;
  font-family: 'Source Sans Pro';
  transition:all 0.6s;
  letter-spacing: 1px;
}

.about_btm_cnt a:hover{
  background:#fff;
  color:#4665aa;
}

.about_btm_img{
  display:flex;
  position: relative;
}

.about_btm_img img{
  width:100%;
  height:auto;
}

/**** Services Page css ****/

.services_main{
  margin:80px 0px;
}

.service_faq{
  background:#F8F8F8;
  padding:60px 0px;
}

#accordion > li:last-child{
  margin-bottom:0 !important;
}

.services_main .intro_dtl p{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  margin-bottom:30px;
}

.services_main .intro_dtl a{
  color: #4665AA;
}

.services_main .our_knw{
  width:48%;
  margin-bottom:0!important;
}

.service-cnt{
  display: grid;
  row-gap: 45px;
  column-gap: 45px;
  grid-template-columns: repeat(4, 1fr);
  margin: 80px auto 0;
}

.services_inr_main{
  margin:80px 0;
}

.srvc-in-block {
  width: 100%;
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services_inner_left{
    width: 62.5%;
}

.services_inner_left h3{
  text-align:left;
}

.services_inner_left p{
  color: #272727;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom:30px;
}

.services_inner_left h4{
    color: #353535;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-family: 'Source Sans Pro';
}

.services_inner_left h4 strong{
    font-weight:300;
}

.services_inner_left p:last-child{
    margin-bottom:0;
}

.services_inner_left p strong{
  font-weight:400;
}

.services_inner_left p a{
    color:#4665AA;
}

.services_inner_right{
  width: 32.5%;
}

.services_inner_right h4 {
  color: #272727;
  font-family: "Source Sans Pro";
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 10px;
  margin-bottom:35px;
}

.services_inner_right ul {
  border-top: solid 1px #9ca7ac;
  background: #f8f8f8;
}

.services_inner_right ul li {
  color: #272727;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-weight: 300;
  line-height:30px;
  background: #f8f8f8;
  padding:24px 25px;
  display: flex;
}

.services_inner_right ul li.active, .services_inner_right ul li:hover {
  background: #E5F5FC;
  color: #4665AA;
}

.services_inner_right ul li.active:before, .services_inner_right ul li:hover:before {
    content: url('../img/how-icon.svg');
}

.services_inner_right ul li:before {
  content: url('../img/srvc-inr-bullet.svg');
  position: relative;
  line-height: 0;
  margin-right: 15px;
  top:9px;
  height: 50%;
}
/**** Blog List Page css ****/

.blog_list{
  margin:80px 0px;
}

.blog_list h3{
  text-align:left;
  margin-bottom:30px !important;
}

.featured_articles a{
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 0px 6px rgb(129 129 129 / 50%);
  border-right: 2px solid #4665aa;
  display: inline-flex;
  margin-bottom: 80px;
}

.articles_left {
  width: 50%;
  position: relative;
  display: flex;
}

.articles_right {
  padding: 30px;
  width: 50%;
  position: relative;
}

.blog {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  border-radius: 10px;
  background: rgba(000, 000, 000, 0.5);
  padding: 3px 16px;
}

.articles_right h6 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.articles_right h4 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 26px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 10px;
}

.articles_right p {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 10px;
}

.articles_right span.link{
  color: #4665aa;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.articles_right a.link:after{
  content: '\f30f';
  font-family: 'Ionicons';
  margin-left: 10px;
}

.articles_right span {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: block;
}

.srch-artcl {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  border-radius: 5px;
  border: solid 1px #9ca7ac;
  background: #ffffff;
  justify-content: space-between;
}

.srch-artcl form {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

.srch-artcl form.searchbox:before {
  content: url(../img/media-search.svg);
  position: absolute;
  top: calc(50% - 14px);
  z-index: 1;
  left: 34.5px;
}

.srch-artcl form input[type="text"] {
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
  padding: 23px 0 23px 73px;
  position: relative;
  color:#353535;
  width:70%;
  border: none;
  border-radius: 5px;
}

.select-box {
  width:30%;
  display: inline-flex;
  justify-content:flex-end;
  align-items: baseline;
}

.catagorie-block {
  display: inline-block;
  /*padding: 22px;*/
  float: right;
}

.catagorie-block input {
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  border-radius: 15px;
  background: rgba(70,101,170,0.5);
  padding:5.5px 29px 7.5px 15px;
  position: relative;
  display: inline-block;
  width: auto;
  border:0;
}

.catagorie-block input:focus{
  border:0 !important;
  outline:none !important;
}


.select-box .nice-select {
  width:154px;
  margin-left: 22px;
  /*border-bottom: solid 1px #9ca7ac;*/
}

.about_btm_cnt form input {
  width: 46.30%;
  margin-right: 13.5px;
  border: solid 1px #ffffff;
  margin-bottom: 25px;
  border-radius: 15px;
  color: #ffffff;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 1px;
  padding: 15px;
  background: transparent;
}

.about_btm_cnt form input::placeholder{
  color:#fff;
}

.about_btm_cnt form input[type="submit"] {
  padding: 16.5px 44px 15.5px;
  min-width: auto;
  width: auto;
  margin-bottom: 0;
  cursor:pointer;
  border-radius:40px; 
  transition:all 0.6s;
  font-family: 'Source Sans Pro';
}

.about_btm_cnt form input[type="submit"]:hover{
  background: #fff;
  color: #4665aa;
}

.about_btm_cnt  form input[type="mail"] {
  margin-right: 0;
}

.latest_inr {
  display: grid;
  row-gap: 48px;
  column-gap: 43px;
  grid-template-columns: repeat(3, 1fr);
}

.ltst {
  width:100%;
  min-height: 500px;
  position: relative;
  background: #ffffff;
  box-shadow: 0px 0px 6px rgb(129 129 129 / 50%);
  border-bottom: 2px solid #4665aa;
}

.ltst_img {
  position: relative;
  min-height: 230px;
  background-size: cover;
}

.ltst_detail {
  padding: 30px 20px 31px;
}

.ltst_detail h5 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.ltst_detail h6 {
  color: #4665aa;
  font-family: 'Source Sans Pro';
  font-size: 15px;
  font-weight: 300;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ltst_detail h2 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 26px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 10px;
  min-height: 67px;
}

.ltst_detail p {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 10px;
}

.ltst_detail a.link {
  color: #4665aa;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.ltst_detail a.link:after {
  content: '\f30f';
  font-family: 'Ionicons';
  margin-left: 10px;
}


/**** Blog Detail Page css ****/

.blog_detail{
  margin:80px 0px;
}

.blog_inr {
  width: 980px;
  margin: auto;
  position: relative;
  margin-bottom: 50px;
}

.blog_top {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.blog_top img{width:100%;}

.blog_btm {
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.blog_btm > h6 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.blog_btm > h6:first-child span {
    color: #4665aa;
}

.blog_btm > h6:first-child {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog_btm h2 {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog_btm p {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 30px;
}

.blog_btm p.strong{
  font-weight:700;
}

.blog_btm > h3 {
  color: #4665aa;
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight:400;
  line-height: 28px;
  margin-top:56px;
  margin-bottom: 30px;
  position: relative;
}

.blog_btm ul li {
  color:#353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom:10px;
}

.blog_btm ul li span {
  color: #4665aa;
  font-family: 'Source Sans Pro';
}

.menu_toggle li{
    position:relative;
}

 .mob_dropdown.active:after{
    transform: rotate(0deg);
}


.mob_dropdown:after {
    content: '\f054';
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 20px;
    top: 24px;
    color:#fff;
    cursor: pointer;
    transition: all 0.8s;
      transform: rotate(90deg);
}

.menu_toggle .mob_dropdown{
  display:block !important;
}

.menu_toggle li {
    padding:20px 0px;
    border-bottom: 1px solid #fff;
}

.ftr_mobile_menu{
  margin-bottom:45px;
}

.ftr_mobile_menu .menu_toggle .mob_dropdown:after{
    top: 27px;
}

.ftr_mobile_menu ul li .navbar-dropdown {
    display: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    background-color: #fff;
    box-shadow: none;
    top: 8px;
    opacity: 1;
}

.ftr_mobile_menu ul li .navbar-dropdown li {
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
}

.ftr_mobile_menu ul li .navbar-dropdown li a {
    color:#27292A;
    font-family: 'Source Sans Pro';
    font-size: 16px !important;
    font-weight:600;
}

.ftr_mobile_menu ul li.dropdwon h6{
    color: #4665aa;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    width:100%;
    display:inline-block;
}

.menu_toggle li h6.active .mob_dropdown:after{
    transform: rotate(90deg);
    transition: all 0.8s;
}

.searchbar input{
  border: 0;
  padding: 0;
  width:300px;
  height:42px;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  right:0;
   font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight: 400;
  line-height:26px;
  color: #353535;
  border: 1px solid #ccc;
  padding:5px 10px;
}

.navigation.fixed .searchbar input.active{
  border: 1px solid #353535;
}

.searchbar .icon{
  border-radius: 3px;
  color: #fff;
  transition: all 0.5s 0.3s ease;
}

.searchbar .icon i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
}

.searchbar .icon.active{
  transition: all 0.3s ease;
}

.searchbar input.active{
  width:80%;
  padding: 0 10px;
  transition: all 0.5s 0.2s ease;
  position:absolute;
}

.error-border {
  border: 1px solid red !important;
}

.inactive {
  opacity: 0.5;
  pointer-events: none;
}

#loadmoredata{
  font-family: 'Source Sans Pro';
  text-align: center;
  margin: 0 auto;
  display: block;
  background: #4665aa;
  padding:14.5px 25px 15.5px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 35px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 40px;
}

.cli-rights-dtl{
  margin:50px 0px 80px;
}

.client-rigt{
  margin: 80px 0px 30px; 
}

.cli-rights-dtl h2{
  margin-top:80px;
}

.cli-rights-dtl h2, .client-rigt h2{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom:15px;
}

.cli-rights-dtl p, .client-rigt p, .cli-rights-dtl pre{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom:15px;
}

.cli-rights-dtl p a, .cli-rights-dtl li span{
  color: #4665aa;
  font-weight:600;
}

.cli-rights-dtl ul{
  margin-bottom:30px;
}

.cli-rights-dtl ul li{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight:300;
  line-height: 28px;
  margin-bottom:10px;
}

.cli-rights-dtl ul li:before {
  content: url(../img/how-icon.svg);
  position: relative;
  margin-right: 7px;
}

ul.clent-rights-block li:last-child:before {
    content: '';
}

.cli-rights-dtl p strong{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 17px;
  font-weight:600;
}

.cli-rights-dtl h3{
  color: #353535;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom:10px;
  font-family: 'Source Sans Pro';
}

.abt-lft-block {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:40px;
}

.abt-lft-dtl {
  text-align: left;
  width: 47%;
}

.abt-lft-dtl  h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #353535;
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  letter-spacing: 1px;
  margin-bottom:20px;
  font-family: 'Source Sans Pro';
}

.abt-rgt-dtl {
  width: 45%;
  display: flex;
  align-items: end;
  margin-bottom: 70px;
}

.abt-rgt-dtl img {
  width: 300px;
  display: inline-block;
  height: auto;
  float: right;
  border-radius: 10px;
}

.abt-rgt-dtl img:last-child {
  transform: translate(-60px, 70px);
}

.cli-rights-dtl h5 {
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 24px;
  font-weight:600;
  line-height: 30px;
  margin-bottom:10px;
}

.cli-rights-dtl p {
  margin-bottom:30px;
}

.cli-rights-dtl h6 {
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight:600;
  line-height: 30px;
}
#map {
    height: 769px;
    width: 100%;
}

.error-main{
  padding: 200px 0;
}

.erroe-msg h1 {
  font-size: 48px;
  font-weight:700;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4665aa;
  font-family: 'Source Sans Pro';
  text-align:center;
}

.thank-you .erroe-msg h1{
  margin-bottom:15px;
}

.erroe-msg h2{
  color:#353535;
  font-size:30px;
  font-family: 'Source Sans Pro';
  margin-bottom:15px;
}

.erroe-msg{
  text-align:center;
}

.erroe-msg p {
  color: #353535;
  font-size: 20px;
  font-weight:400;
  line-height: 30px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  font-family: 'Source Sans Pro';
}

.thank-you a {
  color: #ffff;
  font-family: 'Source Sans Pro';
  font-size: 16px;
  font-weight:600;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 40px;
  border: solid 1px transparent;
  background:#4665aa;
  min-width: 200px;
  display: inline-block;
  padding: 16.5px 25px 15.5px;
  cursor: pointer;
  transition: all 0.6s;
  display:inline-block;
  margin-top:30px;
}

.thank-you :hover {
  background:transparent;
  color: #4665aa;
  border-color: #4665aa;
}

.erroe-msg p a{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4665aa;
  width: 100%;
  max-width: 200px;
  height: 55px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 40px;
  transition: all 0.5s;
  border: 2px solid transparent;
  margin-right: 30px;
  font-family: 'Source Sans Pro';
  margin: 30px auto 0;
  }

.sitemap-main{
  margin:50px 0px;
}

.sitemap-main h2{
  color: #353535;
  font-size: 36px;
  font-weight: 300;
  line-height: 45px;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: 'Source Sans Pro';
  margin-bottom:15px;
}

.sitemap-main ul li{
  color: #353535;
  font-family: 'Source Sans Pro';
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom:15px;
}

.sitemap-main ul li ul {
  padding-left:20px;
  margin-top:15px;
}

.sitemap-main ul li ul li{
   font-size:18px;
}

.sitemap-main ul li a:hover{
  color: #4665aa;
}

.four_zeo h1{
  font-size:62px;
}

.mob-cont-det{
  padding:20px;
}

.mob-cont-det p{
  margin-bottom:10px;
}

.mob-cont-det p:nth-child(2){
  margin-bottom:25px;
}

.mob-cont-det p a{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Source Sans Pro';
}

.mob-cont-det a.mob_dir_lnk{
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Source Sans Pro';
  border-bottom: 1px solid #fff;
  margin-top:10px;
}


.search_main{
  padding:180px 0;
}

.search_inner h1{
  font-size:36px;
  font-weight: 600;
  line-height:46px;
  letter-spacing: 1px;
  color: #353535;
  font-family: 'Source Sans Pro';
  text-transform:uppercase;
}

.search_inner ul{
  margin-top:30px;
}

.search_inner ul li a{
  color: #4665aa;
  font-size: 20px;
  font-weight:600;
  font-family: 'Source Sans Pro';
  transition:all 0.6s;
}

.search_inner ul li{
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.search_inner ul li p{
  margin-bottom:10px;
  color: #353535;
}

.search_inner ul li p.no-found-cls{
  font-size: 18px;
  font-weight: 600;
  color: #ff0000;
}

.search_inner ul li a:hover{
  color: #4665aa;
}

.show-search.active .fa-search::before {
  content: "\f00d";
}

.show-search a{
  cursor:pointer;
}

.search_bx_main{
  display:none;
}

.search_bx_main.active{
  display:block;
  position: absolute !important;
  right: 0;
  top: 35px;
}

.icon{
  position:absolute;
  top:0px;
  right:0px;
}

.show-search i {
  font-size: 20px;
  width: 16px;  
}