
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul{
  padding-left: 0; 
  list-style: none;
}
p{
  margin-bottom: 0;
}
:root{
  --dark-blue: #064472;
  --blue: #206eb1;
  --gray: #e3e3e3;
  --light-gray: #f3f3f3;
  --dark-gray: #ababab;
  --black: #000000;
}



.swal-footer{
  text-align: center !important;
}

.swal-button {
  background-color: var(--dark-blue);
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  /*bottom: 15px;*/
  bottom: 107px;
  z-index: 996;
  background: var(--blue);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2194f7;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--blue);
  border-top-color: var(--dark-blue);
  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);
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 90px;
  width: 100%;
  padding: 0;
  color: #fff;
  z-index: 996;
  padding: 0 30px;
  border-bottom: 2px solid var(--gray);
}
#topbar.topbar-scrolled {
  top: -60px;
}
.topb_scl{
  position: relative;
}
.topb_scl_lnk{
  width: 20px;
  height: 20px;
  margin-right: 3px;
}
.topb_scl1{
  position: absolute;
  top: 0;
  left: 0;
}
/*.topb_scl2{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.topb_scl_lnk:hover .topb_scl2{
  opacity: 1;
}
.topb_scl_lnk:hover .topb_scl1{
  opacity: 0;
}*/
.tsb{
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tsb input{
  width: 100%;
  height: 50px;
  background: var(--gray);
  border: none;
  outline: none;
  box-shadow: none;
  padding-left: 10px;
}

.tsb button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-gray);
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}
.tsb button i{
  font-size: 25px;
}

.tci_link{
  background: var(--dark-blue);
  color: var(--white);
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-weight: 600;
}
.tci_link:hover{
  color: #fff;
  background: var(--blue);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  height: 90px;
  top: 0;
  padding: 0 30px;
  background: #fff;
}
#header.header-scrolled {
  background: #fff;
  top: 0;
}
#header .logo img {
  width: 150px;
  height: auto;
}

/*new menu*/
.wrap-new{
  position: fixed;
  left: 0;
  background-color:#fff;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
  margin-top: 5px;
  display: block;
 
 
  /* padding-left: 150px; */
  margin-left: 0;

}
.navbar .wrap-new ul{
margin-top: 20px;
margin-bottom: 20px;
display:none;
padding-left: 20px;


}
.wrap-new ul li{
    padding: 2px;
    display: block;

}
.wrap-new ul li a{
  padding: 0;  
  color: #000000;
}
  ul li:hover .wrap-new ul{
    display: block;
} 
 .wrap-new h5{
  color: var(--blue);
 }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/*-------nvbr-------*/
.nvbr{
	margin-top: 100px;
}




/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-transform: capitalize;
  padding: 10px 0 10px 30px;
}
.navbar a i, .navbar a:focus i {
  font-size: 20px;
  font-weight: 500;
  line-height: 0;
  margin-left: 4px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--dark-blue);
}
.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.3s;
  border-radius: 8px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul h6{
  padding-left: 20px;
  padding-bottom: 0;
  color: var(--blue);
}
.navbar .dropdown ul a {
  padding: 4px 20px 0 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--black);
}
.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(--dark-blue);
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--black);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  /*new menu*/
.wrap-new{
  position: static;
  left: 0;
  background-color:#fff;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
  margin-top: 5px;
 
 
 
  /* padding-left: 150px; */
  margin-left: 0;

}
.navbar .wrap-new ul{
	position: static;
margin-top: 20px;
margin-bottom: 20px;
display:none;
padding-left: 20px;
overflow: hidden;


}
.wrap-new ul li{
    padding: 2px;
    display: block;

}
.wrap-new ul li a{
  padding: 0;  
  color: #000000;
  font-size: 15px
}
  ul li:hover .wrap-new ul{
    display: block;
} 
 .wrap-new h5{
  color: var(--blue);
  font-size: 22px
 }
}

@media (max-width: 650px) {
	.wrap-new ul li a{
  padding: 0;  
  color: #000000;
  font-size: 12px
}
  ul li:hover .wrap-new ul{
    display: block;
} 
 .wrap-new h5{
  color: var(--blue);
  font-size: 20px
 }
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--blue);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--black);
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--dark-blue);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--dark-blue);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.hdr_bcl_link{
  background: var(--blue);
  color: #fff;
  height: 50px;
  /*width: 15%;*/
  width: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 7px;
}
.hdr_bcl_link:hover{
  color: #fff;
  background: var(--dark-blue);
}
.sub-menu{
  columns: 3;
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  background: url("../img/home/banner-bg.png");
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  z-index: 99;
  transition: 0.3s;
/*  margin-top: 179px;*/
}
/*#hero:before {
  content: "";
  background: rgba(0, 0, 0, .7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}*/
#hero .carousel-container {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
}
#hero h1 {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 1px;
}
#hero h2 {
  font-size: 40px;
  font-weight: 600;
  text-transform: capitalize;
}
#hero h3{
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  margin-bottom: 20px;
}
#hero p{
  width: 50%;
  font-weight: 500;
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.ldyp_link{
  background: var(--dark-blue);
  color: #fff;
  height: 50px;
  width: 25%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 30px;
}
.ldyp_link:hover{
  color: #fff;
  background: var(--dark-blue);
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Main Start
--------------------------------------------------------------*/
#HomeSrvc{
  margin: 80px 0;
}
.hm_srvc_hding{
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.hm_srvc_sbhding{
  font-size: 35px;
  margin: 20px 0;
}
.hm_srvc_txt{
  color: var(--blue);
  background: var(--light-gray);
  font-weight: 800;
  font-size: 30px;
  width: 70%;
  padding: 10px 30px;
}
.home_srvc_srvc{
  margin-bottom: 20px;
}
.hm_srvc_img img{
  width: 100%;
  height: 100%;
}
.hm_srvc_dtl{
  background: var(--light-gray);
}
.srvc_dtl_link{
  color: var(--black);
}
.srvc_dtl_link:hover{
  color: var(--black);
}
.hsrvc_name{
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.hmsrvc_mnu_lnk{
  margin-top: 20px;
}
.hml{
  background: var(--dark-blue);
  color: #fff;
  padding: 10px 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 30px;
}
.hml:hover{
  color: #fff;
}

/*--------- Worried about Meeting Your ------- */
#WAMG{
  padding: 150px 0;
  position: relative;
}
.wamg_bg img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.swiper-pagination-bullet {
/*    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));*/
/*    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));*/
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--dark-blue);
/*    background: var(--swiper-pagination-color,var(--swiper-theme-color));*/
}
.wam_hding{
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.wam_txt{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #fff;
}
/*------------- Project -------------*/
#HomeProject{
  margin: 50px 0;
}
.hpc_hding{
  font-size: 35px;
}
.hpc_sp{
  background: var(--light-gray);
  padding: 30px 10px;
  margin: 0 5px;
}
.hpc_sp img{
  width: 40px;
  height: auto;
  margin-bottom: 20px;
}
.hpc_sp h6{
  font-size: 20px;
  margin-bottom: 0;
}
.hpc_sp p{
  font-weight: 600;
  text-align: center;
}

.home_prj_hding{
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.home_prj_sbhding{
  font-size: 35px;
  margin: 20px 0;
}
.home_prj_brf{
}
.hpb_brf{
  background: var(--light-gray);
  padding: 15px 15px;
}
.hpbb_img{
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.hpbb_lng{
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 10px;
}
.hpbb_nme{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hpbb_lnk{
  color: var(--blue);
  font-weight: 600;
}
.hpbb_lnk i{
  font-weight: 700;
  margin-left: 10px;
}
/*--------- Testimonials ----------*/
#HomeTestimonial{
  padding: 150px 0;
  position: relative;
}
.tstmnl_bg img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hom_tst_hding{
  position: relative;
  z-index: 99;
}
.tst_hding{
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.tst_sbhding{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.tst_txt{
  color: #fff;
}
.tst_prof{
  margin: 20px 0 60px 0;
}
.tst_prof_nm{
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.tst_prof_spn{
  color: #fff;
  margin: 0 20px;
  font-size: 30px;
  font-weight: 600;
}
.tst_prof_rtng i{
  color: yellow;
}
/*------ Got a developer Start -------*/
#GotDevp{
  margin: 90px 0 110px 0;
}
.gd_txt {
  margin-bottom: 30px;
}
.gdt_hding{
  font-size: 35px;
  font-weight: 600;
/*  margin-bottom: 40px;*/
}
.gdt_hding a{
  color: var(--blue);
}
.gdt_hding a:hover{
  color: var(--dark-blue);
}
.gdt_spn{
  font-size: 35px;
  margin: 0 10px 40px 10px;
  font-weight: 600;
}
.gtd_lnk{
  background: var(--dark-blue);
  color: #fff;
  padding: 10px 20px;
  text-transform: capitalize;
  font-weight: 500;
}
.gtd_lnk:hover{
  color: #fff;
}
/* ---- Newest Perspectives ----- */
#NewsPrspct{
  padding: 150px 0;
  position: relative;
  margin: 40px 0;
}
.nws_pspct_bg img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.news_prspct{
  position: relative;
  z-index: 99;
}
.nepr_hding{
  font-size: 35px;
  margin: 0 0 30px 0;
}
.nepr_input input{
  background-color: #fff;
  width: 70%;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 10px;
  color: var(--dark-gray);
  margin-right: 10px;
  font-weight: 500;
}
.nepr_input input::placeholder{
  color: var(--dark-gray);
}
.nepr_input button{
  background: var(--dark-blue);
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
  width: 10%;
  height: 50px;
}
.nepr_txt{
  margin-top: 20px;
}
/* ---------------- Footer ------------- */
#footer{
  padding: 50px 0;
}
#footer h4{
  font-weight: 600;
  margin-bottom: 30px;
}
.footer_links ul li{
  margin-bottom: 10px;
}
.footer_about ul li a,
.footer_links ul li a,
.footer_socl_link ul li a{
  color: var(--black);
  transition: 0.3s;
  font-weight: 500;
}
.footer_about ul li a:hover,
.footer_links ul li a:hover,
.footer_socl_link ul li a:hover{
  color: var(--dark-blue);
}
.footer_contact p span{
  font-weight: 600;
  margin-right: 10px;
  color: var(--blue);
}
.ftr_fc_fu{
  margin: 30px 0;
  font-weight: 600;
}
.ftr_topb_scl{
  position: relative;
}
.fc_fu{
  margin: 50px 0 20px 0;
  font-weight: 600;
}
.ftr_topb_scl_lnk{
  width: 27px;
  height: 27px;
  margin-right: 6px;
}
.ftr_topb_scl1{
  position: absolute;
  top: 0;
  left: 0;
}
/*.ftr_topb_scl2{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.ftr_topb_scl_lnk:hover .ftr_topb_scl2{
  opacity: 1;
}
.ftr_topb_scl_lnk:hover .ftr_topb_scl1{
  opacity: 0;
}*/
.ftr_lgo{
  width: 210px;
  height: auto;
  margin-top: 50px;
}
/* ----------------- Copy Right -------------- */
#copyRight{
  border-top: 1px solid var(--gray);
  padding: 20px 0;
}
.copy_right p,
.copy_right a{
  margin-bottom: 0;
  font-size: 14px;
  color: var(--dark-gray);
}
.copy_right a{
  font-size: 14px;
  color: var(--dark-gray);
  margin-left: 10px;
}
/*---------------------------------------------------------------
About Us
----------------------------------------------------------------*/
#Abouthero {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.3s;
  margin-top: 179px;
}
.bnr_img{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
#Abouthero h1{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 99;
}
/*-------- Greeting from Smurf --------*/
#AbtGrting{
  margin: 50px 0;
}
.agb_hding {
  font-size: 20px;
  color: var(--dark-gray);
}
.gdt_sbhding {
  font-size: 35px;
  margin-bottom: 20px;
}
.abt_grtn_img img{
  width: 100%;
  height: 100%;
}
/*-------- Why Smurf -------*/
.why_us_brf{
  margin-bottom: 50px;
}
.wub_hding {
  font-size: 35px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.why_smrf_rsn_row{
  margin-bottom: 50px;
}
.wsr_exprt{
  background: var(--light-gray);
  padding: 30px;
  margin: 10px 10px;
}
.wsre_img{
  background: var(--blue);
  width: 190px;
  height: 110px;
  margin-right: 15px;
}
.wsre_img img{
  width: 60px;
  height: auto;
}
.wsre_brf{
  width: 80%;
}
.wsreb_hding{
  font-weight: 600;
}

/*---------------------------------------------------------------
Our Work
----------------------------------------------------------------*/
#OurWorkhero {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.3s;
  margin-top: 179px;
}
.our_work_bnr_img{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
#OurWorkhero h1{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 99;
}

#ourProject{
  margin: 50px 0 0 0;
}
.ourwrk_prj_hding {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.ourwrk_prj_sbhding {
  font-size: 35px;
  margin: 20px 0 40px 0;
}

.our_work_img img{
  width: 100%;
  height: 100%;
}

.owap_lnk {
  background: var(--dark-blue);
  color: #fff;
  padding: 10px 50px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 30px;
}
.owap_lnk:hover{
  color: #fff;
}

/*---------------------------------------------------------------
Customer Stories
----------------------------------------------------------------*/
#CstmSthero {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.3s;
  margin-top: 179px;
}
.cst_bnr_img{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
#CstmSthero h1{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 99;
}

#CSTstmonal{
  margin: 50px 0;
  padding: 0 100px;
}
.cust_tst_sbhding {
  font-size: 35px;
  margin-bottom: 10px;
}

.cust_prj_rvew_row1{
  padding: 25px 30px;
  margin-top: 40px;
  box-shadow: 4px 2px 10px var(--gray);
}
.cust_prj_rvew{
  padding: 15px 20px;
}
.cust_cmpny_logo{
  width: 210px;
  height: 60px;
  margin-right: 20px;
}
.cpr_rting_icon i{
  color: var(--blue);
  font-size: 20px;
}
.cpr_rting_txt{
  font-weight: 600;
}
.cpr_hding{
  font-size: 21px;
  margin: 25px 0;
}

.cpr_prof{
  margin-top: 30px;
}
.cst_usr_img{
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.cpr_prof_nme{
  font-weight: 500;
}
.cpr_prof_dsg{
  font-weight: 700;
}

.cust_prj_rvew_brf{
  background: var(--light-gray);
  padding: 15px 20px;
}
.cprb_hding{
  font-weight: 500;
  margin-bottom: 30px;
}
.cprb_txt{
  margin-bottom: 30px;
}
.cprc_logo{
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.cprcd_txt{
  font-weight: 500;
}
.cpr_cntry_name{
  font-weight: 600;
}

.cust_prj_rvew_row2{
  background: var(--light-gray);
  padding: 25px 30px;
  margin-top: 40px;

}
#CPRB{
  background: #fff;
}


#USOP{
  margin: 80px 0;
}
.usop_hding{
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.usop_sbhding{
  font-size: 35px;
  margin: 20px 0;
}
.usop_txt{
  color: var(--blue);
  background: var(--light-gray);
  font-weight: 800;
  font-size: 30px;
  width: 70%;
  padding: 10px 30px;
}
/*---------------------------------------------------------------
Contact Us
----------------------------------------------------------------*/
#ContactUShero {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.3s;
  margin-top: 179px;
}
.bnr_img{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
#ContactUShero h1{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 99;
}

#ContactLocation{
  margin: 50px 0;
}
.cl_hding{
  font-size: 30px;
  margin-top: 30px;
}
.cl_txt{
  font-size: 20px;
}

#ContactForm{
  margin: 50px 0 100px 0;
}
.cf_hding {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 0;
}
.cf_sbhding {
  font-size: 35px;
  margin: 20px 0;
}

.contact_form{
  background: var(--light-gray);
  padding: 50px 30px 80px 30px;
  position: relative;
}
.contact_form form{
  width: 90%;
}
.slt{
  width: 49%;
  height: 50px;
  background: #fff;
  color: var(--dark-gray);
  padding-left: 15px;
  outline: none;
  border: none;
  box-shadow: 1px 1px 2px #cecece inset;
  margin-bottom: 15px;
}
.cf_input_row input{
  width: 49%;
  height: 50px;
  background: #fff;
  color: var(--dark-gray);
  padding-left: 15px;
  outline: none;
  border: none;
  box-shadow: 1px 1px 2px #cecece inset;
  margin-bottom: 15px;
}
.cf_input_row textarea{
  width: 100%;
  background: #fff;
  color: var(--dark-gray);
  padding-left: 15px;
  padding-top: 10px;
  outline: none;
  border: none;
  box-shadow: 1px 1px 2px #cecece inset;
  margin-bottom: 15px;
}
.cf_sbmit{
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
}
.cf_sbmit button{
  padding: 15px 40px;
  background: var(--dark-blue);
  color: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  text-transform: capitalize;
  font-weight: 500;
}

#SendMail{
  position: relative;
  width: 100%;
  padding: 150px 0;
}
.send_mail_hding {
    position: relative;
    z-index: 99;
    font-size: 20px;
    margin-bottom: 0;
    color: #fff;
}
.send_mail_sbhding {
    position: relative;
    z-index: 99;
    font-size: 35px;
    margin: 20px 0 40px 0;
    color: #fff;
}
.send_mail_link{
  position: relative;
  z-index: 99;
  padding: 15px 40px;
  background: var(--dark-blue);
  color: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  text-transform: capitalize;
  font-weight: 500;
}
.send_mail_link:hover{
  color: #fff;
}
.send_mail_bg_img{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
}

#ReachViaPhon{
  margin: 90px 0;
}
.reach_via_phone_row{
  justify-content: space-around;
}
.rvpb_hding {
    font-size: 40px;
}
.reach_via_phone_number{
  background: var(--light-gray);
  padding: 20px 20px;
}
.rvpn_img{
  width: 50px;
  height: 50px;
  margin-right: 25px;
}
.rvpn_dtl_nbr{
  font-size: 25px;
  font-weight: 600;
}
.rvpn_dtl_txt{
  font-weight: 500;
}
/*---------------------------------------------------------------
Industries
----------------------------------------------------------------*/
#Industrieshero {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  z-index: 99;
  transition: 0.3s;
  margin-top: 179px;
}
.bnr_img{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
}
#Industrieshero h1{
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 99;
}

#SepAra{
  margin: 50px 0;
}
.spcl_ara_hding {
  font-size: 35px;
  margin-bottom: 20px;
}
.spcl_ara_txt{
  margin-bottom: 35px;
}
.our_spcl_area{
  margin-top: 20px;
}
.osa_img{
  width: 49%;
  height: auto;
}
.our_spcl_area_brf{
  width: 49%;
  background: var(--light-gray);
  padding: 20px 20px;
}
.osab_hding{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.viw_all_indst_link{
  background: var(--dark-blue);
  color: #fff;
  padding: 10px 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 30px;
}
.viw_all_indst_link:hover{
  color: #fff;
}
/*---------------------------------------------------------------
Capabilities
----------------------------------------------------------------*/
.our_web_srvc{
  margin-top: 20px;
}
.our_web_srvc_img{
  width: 49%;
  height: 350px;
  background: var(--light-gray);
}
.our_web_srvc_brf{
  width: 49%;
  height: 350px;
  background: var(--light-gray);
  padding: 20px 20px;
}
.owsb_link,
.owsb_link:hover{
  color: #000;
}
.owsb_hding{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

#ExpSrvc{
  margin-bottom: 50px;
}
.expl_srvc_slid{
  background: var(--light-gray);
  padding: 20px 20px;
  margin-bottom: 60px;
}
.expl_srvc_slid img{
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.expsrv_hding{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.exp_srvc_rdm{
  display: flex;
  align-items: center;
  color: var(--blue);
  font-weight: 700;
}
.exp_srvc_rdm i{
  font-weight: 800;
  margin-left: 10px;
}
.exp_srvc .swiper-pagination-bullet {
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--blue);
    opacity: 1;
    width: 15px;
    height: 15px;
}
.exp_srvc .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--dark-blue);
    /* background: var(--swiper-pagination-color,var(--swiper-theme-color)); */
}
/*---------------------------------------------------------------
Capabilities Details
----------------------------------------------------------------*/
#PDS{
  margin: 50px 50px;
}
.pds_brf_hding {
  font-size: 35px;
  margin-bottom: 20px;
}
.pds_img img{
  width: 100%;
  height: auto;
}
/*---------------------------------------------------------------
Responsiveness
----------------------------------------------------------------*/
@media screen and (max-width: 991px){
  #hero p {
    width: 82%;
  }
  .ldyp_link{
    width: 40%;
  }
  .hm_srvc_sbhding {
    font-size: 30px;
  }
  .hm_srvc_txt {
    font-weight: 700;
    font-size: 27px;
    width: 80%;
    padding: 10px 20px;
  }
  .hsrvc_name {
    font-size: 23px;
    font-weight: 400;
  }
  #WAMG {
    padding: 110px 0;
  }
  .wam_txt {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
  }
  .hpc_hding {
    font-size: 32px;
  }
  .home_prj_sbhding {
    font-size: 32px;
  }
  #HomeTestimonial {
    padding: 105px 0;
  }
  .tst_sbhding {
    font-size: 32px;
  }
  .gdt_hding {
    font-size: 32px;
  }
  .nepr_hding {
    font-size: 32px;
  }
  /*------ About Us -----*/
  #Abouthero h1,
  #OurWorkhero h1,
  #Industrieshero h1,
  #ContactUShero h1,
  #CstmSthero h1 {
    font-size: 34px;
  }
  .gdt_sbhding,
  .wub_hding,
  .ourwrk_prj_sbhding,
  .spcl_ara_hding,
  .pds_brf_hding,
  .cf_sbhding,
  .cust_tst_sbhding,
  .usop_sbhding {
    font-size: 30px;
  }
  .wsre_img {
    width: 100px;
    height: 90px;
    margin-right: 10px;
  }
  .wsre_img img {
    width: 50px;
    height: auto;
  }
  /* ------ Industries ------ */
  .osab_hding {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  .our_spcl_area_brf {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* ------ Capabilities ------ */
  .expsrv_hding {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  /* ------ Capabilities Details ------ */
  #PDS {
    margin: 50px 10px;
  }
  .pds_img img {
    width: 100%;
    height: 50%;
  }
  /* ----- Contact --------- */
  .cl_hding {
    font-size: 27px;
    margin-top: 30px;
  }
  .cl_txt {
    font-size: 18px;
    text-align: center;
  }
  .contact_form {
    padding: 50px 15px 80px 15px;
  }
  .contact_form form {
    width: 98%;
  }
  #SendMail {
    width: 100%;
    padding: 100px 0;
  }
  .rvpb_hding {
    font-size: 34px;
  }
  .rvpn_dtl_nbr {
    font-size: 22px;
    font-weight: 600;
  }
  .rvpn_img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
  /* ----- Customers Stories ------- */
  #CSTstmonal {
    margin: 50px 0;
    padding: 0 10px;
  }
  .cpr_img{
    flex-direction: column;
  }
  .cpr_rting{
    margin-top: 15px;
  }
  .cpr_hding {
    font-size: 19px;
    margin: 25px 0;
  }
  .usop_txt {
    font-weight: 700;
    font-size: 27px;
    width: 80%;
    padding: 10px 20px;
  } 
}

/*---------------------------------------------------------------
Responsiveness for Large Screen Mobile 
----------------------------------------------------------------*/
@media screen and (max-width: 767px){
  #topbar {
    height: 155px;
    width: 100%;
    padding: 0 10px;
  }
  .cta{
    justify-content: center;
    margin-bottom: 10px;
  }
  #header{
    /*top: 154px;*/
    height: 98px;
    padding: 0 10px;
  }
  #header .logo img {
    width: 130px;
    height: auto;
  }
  .sub-menu{
    columns: 2;
  }
  .hdr_bcl_link {
    height: 50px;
    width: 33%;
  }
  #hero{
    width: 100%;
    height: 450px;
    /*margin-top: 240px;*/
    margin-top: 100px;
  }
  #hero h1 {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 700;
  }
  #hero h2 {
    font-size: 30px;
    font-weight: 600;
  }
  #hero p {
    width: 95%;
  }
  .ldyp_link {
    width: 85%;
  }
  .hm_srvc_hding,
  .home_prj_hding {
    font-size: 18px;
  }
  .hm_srvc_sbhding {
    font-size: 25px;
  }
  .hm_srvc_txt {
    font-weight: 600;
    font-size: 22px;
    width: 95%;
  }
  .home_srvc_srvc {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  .hm_srvc_dtl {
    margin-top: 10px;
    padding: 20px 10px;
  }
  .hsrvc_name {
    font-size: 23px;
    font-weight: 500;
  }
  .wam_txt {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 40px;
  }
  .hpc_hding {
    font-size: 25px;
    text-align: center;
  }
  .hpc_sp {
    padding: 30px 10px;
    margin: 6px 5px;
  }
  .hpbb_nme {
    font-size: 18px;
    font-weight: 600;
  }
  .home_prj_count{
    padding: 0 10px;
  }
  .home_prj_sbhding {
    font-size: 25px;
  }
  .home_prj_brf{
    margin-bottom: 15px;
  }
  .tst_hding {
    font-weight: 600;
    font-size: 16px;
  }
  .tst_sbhding {
    font-size: 25px;
  }
  .tst_prof {
    flex-direction: column;
  }
  .tst_prof_spn{
    display: none;
  }
  #GotDevp {
    margin: 50px 0 70px 0;
  }
  .gd_txt {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .gdt_hding {
    font-size: 25px;
    margin-bottom: 0;
  }
  .gdt_spn{
    display: none;
  }
  #NewsPrspct {
    padding: 110px 0;
    position: relative;
    margin: 40px 0;
  }
  .nepr_hding {
    font-size: 25px;
  }
  .nepr_input{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nepr_input input{
    width: 98%;
    margin-right: 0;
  }
  .nepr_input button {
    width: auto;
    height: 50px;
    padding: 0 30px;
    margin-top: 10px;
  }
  #footer {
    text-align: center;
    padding: 20px 0 50px 0;
  }
  #footer h4 {
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .footer_links ul li {
    margin-bottom: 4px;
  }
  .ftr_cta{
    justify-content: center;
  }
  .fc_fu{
    margin-top: 10px;
  }
  /* --------- About Us ------- */
  #Abouthero,
  #OurWorkhero, 
  #Industrieshero, 
  #ContactUShero, 
  #CstmSthero{
    height: 250px;
    margin-top: 240px;
  }
  #Abouthero h1, 
  #OurWorkhero h1, 
  #Industrieshero h1, 
  #ContactUShero h1, 
  #CstmSthero h1 {
    font-size: 30px;
  }
  .gdt_sbhding, 
  .wub_hding, 
  .ourwrk_prj_sbhding, 
  .spcl_ara_hding, 
  .pds_brf_hding, 
  .cf_sbhding, 
  .cust_tst_sbhding, 
  .usop_sbhding {
    font-size: 25px;
  }
  .agb_hding{
    font-size: 18px;
  }
  .why_smrf_rsn_row {
    margin-bottom: 50px;
    padding: 0 10px;
  }
  .wsr_exprt {
    padding: 20px;
    margin: 10px 10px;
  }
  .osab_hding {
    font-size: 21px;
  }
  .owsb_hding {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .cl_hding {
    font-size: 25px;
    margin-top: 20px;
  }
  .cl_txt {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .cf_hding {
    font-size: 19px;
    margin-bottom: 0;
  }
  .send_mail_sbhding {
    font-size: 30px;
    margin: 10px 0 35px 0;
  }
  .reach_via_phone_row {
    padding: 0 15px;
  }
  .rvpb_hding {
    font-size: 30px;
    text-align: center;
  }
  .reach_via_phone_number {
    padding: 20px 20px;
    justify-content: center;
  }
  .usop_txt {
    font-weight: 600;
    font-size: 24px;
    width: 90%;
    padding: 10px 20px;
  }
  .our_work_img{
    margin-bottom: 25px;
  }
  .pds_img img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .cl_hding {
    font-size: 21px;
    margin-top: 20px;
  }
}

/*==============================================================
Mobile View
===============================================================*/
@media screen and (max-width: 480px){
  #header .logo img {
    width: 120px;
    height: auto;
  }
  .sub-menu{
    columns: 1;
  }
  #hero h1 {
    font-size: 25px;
    font-weight: 600;
  }
  #hero h2 {
    font-size: 27px;
    font-weight: 500;
  }
  .hm_srvc_hding, .home_prj_hding {
    font-size: 16px;
  }
  .hm_srvc_sbhding,
  .hpc_hding,
  .home_prj_sbhding {
    font-size: 22px;
    margin: 13px 0;
  }
  .hm_srvc_txt {
    font-weight: 600;
    font-size: 20px;
    width: 95%;
  }
  .wam_hding {
    font-weight: 700;
    font-size: 16px;
  }
  .wam_txt {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
  }
  .hpbb_nme {
    font-size: 17px;
    font-weight: 600;
  }
  .tst_sbhding {
    font-size: 22px;
  }
  .tst_prof_nm {
    font-size: 20px;
    font-weight: 600;
  }
  .gdt_hding {
    font-size: 22px;
  }
  .nepr_hding {
    font-size: 22px;
  }
  .copy_right {
    flex-direction: column;
  }
  /*---- About Us ------  */
  #Abouthero, 
  #OurWorkhero, 
  #Industrieshero, 
  #ContactUShero, 
  #CstmSthero {
    height: 195px;
    margin-top: 240px;
  }
  #Abouthero h1, 
  #OurWorkhero h1, 
  #Industrieshero h1, 
  #ContactUShero h1, 
  #CstmSthero h1 {
    font-size: 25px;
  }
  .agb_hding,
  .cf_hding,
  .send_mail_hding,
  .usop_hding,
  .ourwrk_prj_hding {
    font-size: 16px;
  }
  .gdt_sbhding, 
  .wub_hding, 
  .ourwrk_prj_sbhding, 
  .spcl_ara_hding, 
  .pds_brf_hding, 
  .cf_sbhding, 
  .cust_tst_sbhding, 
  .usop_sbhding {
    font-size: 22px;
    margin: 13px 0;
  }
  .our_spcl_area {
    flex-direction: column;
  }
  .osa_img {
    width: 98%;
    height: auto;
  }
  .our_spcl_area_brf {
    width: 100%;
    padding: 10px 10px;
  }
  .our_web_srvc {
    margin-top: 20px;
    flex-direction: column;
  }
  .our_web_srvc_img {
    width: 100%;
    height: 350px;
  }
  .our_web_srvc_brf {
    width: 100%;
    height: 350px;
    background: var(--light-gray);
    padding: 10px 10px;
    margin-top: 10px;
  }
  .expsrv_hding {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .exp_srvc_rdm {
    font-weight: 600;
  }
  .exp_srvc_rdm i {
    font-weight: 600;
    margin-left: 10px;
  }
  .cf_input_row {
    flex-direction: column;
  }
  .cf_input_row input {
    width: 100%;
    height: 50px;
  }
  .send_mail_sbhding {
    font-size: 25px;
    margin: 10px 0 35px 0;
  }
  .rvpb_hding {
    font-size: 24px;
    text-align: center;
  }
  .rvpn_img {
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  .rvpn_dtl_nbr {
    font-size: 20px;
    font-weight: 500;
  }
  .usop_txt {
    font-weight: 600;
    font-size: 20px;
    width: 90%;
    padding: 10px 20px;
  }
}
