 /* Font */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




body{
font-family: 'Poppins';
}

html,body{
	overflow-x:hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none !important;
}
a {
  color: #2f0802;
}

a:hover{
  color:#fff !important;
}
h1,
h2,
h3,
h4 {
  color: #000;
}
*: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;
}

button:focus{
  outline:none !important;
}

.container {
  width:1200px;
  margin: auto;
}


/* Navigation Css Start */

.header_inner{
  background:#fff;
  border-radius:10px;
  position: relative;
  padding:10px 0px;
}

.navbar nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
}

.nav_social{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 0;
}

.nav_social li{
  margin-left:20px;
}

.nav_social li a{
  color: #0BE1F9;
  font-size: 26px;
  font-weight: 400;
  text-align: right;
  letter-spacing: 1px;
}


.navbar .nav-list{
	display:flex;
  margin-bottom:0 !important;
}

.navbar .nav-list li{
    margin-right: 68px;
}

.navbar .nav-list li a{
  color: #ffffff;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  transition:all 0.5s;
   border-bottom:1px solid transparent ;
}

.navbar .nav-list li a.active{
	color:#0BE1F9;
  border-bottom:1px solid #0BE1F9 ;
}

.navbar .nav-list li a:hover{
	color:#0BE1F9 !important;
  border-bottom:1px solid #0BE1F9 ;

}

.destop_header_inr{
	display:flex;
	justify-content:space-between;
	align-items: center;
}

.logo_center img{
	max-width:250px;
}

.social_right ul{
	display:flex;
	justify-content:space-between;
}

.social_right ul li{
	margin-left:18px;
	display: flex;
}

.social_right ul li a{
	display:inherit;
}

.logo_center a{
	display:inherit;
}

.navbar .nav-list li.dropdwon {
	position: relative;
}

.submenu{
	display:none;
 	position: absolute;
	width: auto;
	top: 100%;
	left: -1px;
	z-index: 1;
	text-align: left;
    background: #fff;
    padding: 10px;
}

ul.nav-list li.dropdwon:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.navbar .nav-list li.dropdown:hover .menu_dropdown{
	opacity:1;
}

.navbar{
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:100%;
  background: #001430;
  padding:21px 25px !important;
  margin-bottom: -40px;
  z-index: 999;
}

/* Megamenu */

ul li.dropdown{
	position: relative;
}

.megamenu{
	position: absolute;
  background: #fff;
  z-index: 99;
  width: 300px;
  opacity:0;
  visibility:hidden;
  transition:all 0.7s;
  top:30px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
      z-index: 99999;
}

ul li.dropdown:hover .megamenu{
	opacity:1;
	visibility:visible;
}

.megamenu li {
	padding:14px 10px;
	border-bottom:1px solid #ccc;
	margin-right:0 !important;
	margin-top:0 !important;

}

.megamenu li a{
  font-size:16px !important;
      color: #000 !important;
}

/* Mobile navigation */

.mobile_btm{
    padding:30px 20px 0;
}

.web_header_mobile {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mo_menu {
  position: fixed;
  right:-80%;
  background: #fff;
  width:80%;
  height: 100vh;
  transition:all 800ms ease;
  -webkit-transition:all 800ms ease;
  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 800ms ease;
  -o-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  padding:60px 0px;
  background:#001430;
  position: fixed;
  overflow-y: scroll;
  opacity:1;
  display:block;
  z-index:99999;
}

.main.active{
  transform: translate(-30%, 0);
  opacity: 0.5;
}

.main{
  transform: translate(0%, 0);
      transition: all 0.6s ease 0s;
}

.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:#fff;
}

.mo_menu.active .sidemenu_close span:before{
    transform: rotate(45deg);
    top: 10px;
}

.mo_menu.active .sidemenu_close span:after{
    transform: rotate(-45deg);
    top:10px;
}

.sideMenu ul li .navbar-dropdown {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:#fff;
  box-shadow:none;
  top:8px;
}

.sideMenu ul li a {
    text-transform: uppercase;
}

.sideMenu .navbar-dropdown li a{
  background-color:transparent;
  display:flex;
  border-bottom:0;
  font-size: 16px;
  color: #000000;
   	font-weight: 500;
}

.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;
    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;
}

.mob_dropdown.active:after{
  transform: rotate(90deg);
}

.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-weight:500;
  letter-spacing:1px;
}

.sideMenu ul li a span{
    cursor:pointer;
}

.menuIcon {
    display: inline-block;
    padding: 3px 12px;
    cursor: pointer;
    position: absolute;
    right: 0;
}
.menuIcon span {
    display: block;
    width: 28px;
    height:3px;
    margin: 20px 0;
    background:#001430;
    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: 28px;
    height:3px;
    background:#001430;
    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: 28px;
    height:3px;
    background:#001430;
    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 {
    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:32px;
    color:#Fff;
}

/* Topbar css */

.topbar_inr{
  display:flex;
  justify-content:space-between;
  width:100%;
  align-items:center;
}

.topbar_social_rgt ul{
  display: flex;
  align-items:center;
}


.topbar_social_rgt li{
  display: flex;
  align-items:center;
  margin-left:30px;
}

.topbar_social_rgt li span {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background:#0588fd29;
  background-blend-mode: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #001430;
  font-family: "Font Awesome 6 Free";
  font-size: 24px;
  font-weight: 900;
  margin-right:10px;
}

.topbar_social_rgt li p {
  color: #080d1c;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom:0;
}

.topbar_social_rgt li a {
  color: #080d1c;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom:0;
  display:block;
}

.topbar_social_rgt li a:hover{
   color: #080d1c !important;
}

.banner_main{
  position: relative;
}

.banner_txt{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index:99999;
}

.banner_txt h1{
  color:#ffffff;
  font-family: Poppins;
  font-size: 52px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom:15px;
}

.banner_txt p{
  color: #ffffff;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}

.banner_inr .bnr_img img {
  width: 100%;
  object-fit: cover;
  position: relative;
  height:100%;		
}

.banner_inr .bnr_img{
	position: relative;
}

.banner_inr{
  margin-top: 0 !important;
}

.bnr_img img{
  width:100%;
}

/*.banner_inr .bnr_img:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
  background: rgba(0,0,0,0.4);
	z-index:99;
	width:100%;
	height:100%;
}*/

.banner_inr .NextArrow {
  position: absolute;
  top: 50%;
  right:2%;
  transform: translateY(-50%);
  background: #fff;
  width:65px;
  height:65px;
  z-index: 9;
  border-radius: 8px;
  cursor: pointer;
}

.banner_inr .PrevArrow {
  position: absolute;
  top: 50%;
  left:2%;
  transform: translateY(-50%);
  background: #fff;
  width:65px;
  height:65px;
  z-index: 9;
  border-radius: 8px;
  cursor: pointer;
}

.banner_inr button i{
	font-size:26px;
  color:#001430;
  font-size: 32px;
  font-weight: 900;
}

.banner_inr{
	margin-bottom:0 !important;
}

.slick-dots{
	display:none !important;
}

/*Inquiry section css*/

.inquiry_main{
  margin-bottom:80px;
}

.inquiry_inr{
  padding:33px 49px;
  background-color:#001430;
  border-radius:15px;
  margin-top: -100px;
  z-index: 999;
  position: relative;
}

.inquiry_bg{
  position: relative;
}

.inquiry_bg:before{
  content: '';
  position: absolute;
  top: -16px;
  left: -21px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #ffffff;
  background-blend-mode: normal;
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
}

.title_White {
  color: #fff;
  font-family: Poppins;
  font-size: 52px;
  font-weight: 600;
  line-height: 62px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom:30px;
}

.title_White span{
  color:#0BE1F9; 
}

.inquiry_inr .frm_grp{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:39px;
}

.inquiry_inr .frm_grp input{
  width:100%;
  height: 60px;
  border-radius: 8px;
  border:0 !important;
  padding:15px 13px;
  color: #acadb0;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}

.inquiry_inr .frm_grp input::placeholder{
  color: #acadb0;
}

.inquiry_inr .inquiry_submit {
  display: flex;
  justify-content: center;
}

.inquiry_inr .inquiry_submit button {
  border-radius: 8px;
  background: #0BE1F9;
  color: #001430;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content:center;
  width: 182px;
  height: 60px;
  transition: all 0.9s;
  border: 1px solid transparent;
  margin-top:30px;
}

.inquiry_inr .inquiry_submit button:hover {
  border: 1px solid #0474FE;
  background: transparent;
  color: #fff;
}

/*About Css*/
.about_main{
	padding:80px 0px;
  position: relative;
}

.about_inr{
  position: relative;
}

.about_main:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #001430;
}

.about_inr{
	display:flex;
	justify-content:space-between;
  flex-wrap:wrap;
}

.about_right{
  width:49%;
}

.about_right h2{
  text-align:left;
}

.title_green {
  color: #001430;
  font-family: Poppins;
  font-size: 44px;
  font-weight: 600;
  line-height: 62px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom:30px;
}

.title_green span{
  color:#0BE1F9; 
}

.about_right p {
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1px;
}

.about_right a{
  border-radius: 8px;
  background: transparent;
  color: #001430;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content:center;
  width: 182px;
  height: 60px;
  transition: all 0.9s;
  border: 1px solid #001430;
  margin-top:30px;
  text-decoration:none !important;
}

.about_right a:hover {
  border: 1px solid transparent;
  background: #001430;
  color: #fff;
}

/* Mission Css */

.mision_main{
  margin:80px 0;
}

.mision_inr{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:40px;
}

.mision_inr h2 {
  margin-bottom:20px;
}

.mision_inr p {
  color: #080d1c;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.our_services{
  padding:60px 0 67px;
  position: relative;
  z-index: 999;
}

.our_services:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background:rgba(19,21,20,0.76);
  z-index:-1;
  width: 100%;
  height: 100%;
}

.services_inr{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:30px;
  grid-row-gap:50px;
}

.services_itm{
  background:#fff;
  border-radius:10px;
}

.services_img img{
  border-top-left-radius:10px; 
  border-top-right-radius:10px; 
      background: #d7ecff69;
}

.services_name{
  padding:15px 22px;
  display:flex;
  justify-content:space-between;
}

.services_name h3 {
  color: #001430;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom:0;
}

.services_name a{
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #001430;
  font-size: 24px;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:-40px;
}

.view_all{
  display:flex;
  justify-content:center;
  margin-top:50px;
}

.view_all a {
  border-radius: 8px;
  background: transparent;
  color: #FFC06E;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 60px;
  transition: all 0.9s;
  border: 1px solid #FFC06E;
  margin-top: 30px;
  text-decoration: none !important;
}

.view_all a:hover {
  border: 1px solid transparent;
  background: #FFC06E;
  color: #fff;
}

.journy_year{
  border: 5px solid #24292d;
  padding: 15px;
  width:40%;
  background: #24292d;
  position:absolute;
  bottom:-30px;
  right:0;
}

.testing_main{
	margin:80px 0px;
}

.testing_inr{
	margin-top:50px;
	display:grid;
	grid-template-columns:repeat(4,1fr);
	column-gap:30px;
}

.testing_itm{
	text-align:center;
	position: relative;
}

/*.testing_itm:before {
  position: absolute;
  top: 38%;
  left: 74%;
  width: 63%;
  height: 2px;
  background-color: #FFC06E;
  content:'';
}

.testing_itm:last-child:before, .testing_itm:last-child:after{
	content:none;
}

.testing_itm:after {
  position: absolute;
  top: 35%;
  right: -10%;
  width: 14px;
  height: 14px;
  background-color: #001430;
  content: "";
  border-radius: 50%;
}*/

.testing_itm h3{
  background:#001430;
  width:140px;
  height:140px;
  border-radius:10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:36px;
  font-weight: 500;
  color: #fff;
  margin:0 auto;
  letter-spacing: 2px;
}

.testing_itm h4{
  color: #080d1c;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-top:20px;
}

.test_icon{
	width: 160px;
  height: 160px;
  margin: 0 auto;
  border:3px solid #0BE1F9;
  border-radius:10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Project Section Css */

.project_main{
  background:#001430;
  padding:62px 0 80px;
}

.project_inr{
  margin:56px -15px 0;
}

.project_itm{
  margin:0 15px;
}

.project_itm h3{
  color: #ffffff;
  font-family: Poppins;
  font-size: 26px;
  line-height: 28px;
  font-weight: 500;
  text-align: left;
  margin-top:20px;
}

.project_slider_arrow button {
  background:#f5faff;
  width: 60px;
  height: 60px;
  z-index: 9;
  border-radius: 8px;
  cursor: pointer;
  margin-left:25px;
  border:0 !important;
}

.project_slider_arrow button:active{
  box-shadow:none !important;
  border:0 !important;
}

.project_slider_arrow button i {
  font-size: 26px;
  color:#001430;
}

.project_slider_arrow{
  position: relative;
}

.slider_arrow{
  position:absolute;
  bottom:-108px;
  right:0;
}

/* FAQ Section Css */

.faq_main{
  margin:80px 0px;
}

.faq_content{
  display:none;
}

.faq_title{
  border-radius: 10px;
  background:#0588fd0a;
  padding:22px 30px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  align-items:center;
}

.faq_title h3{
  color: #080D1C;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  text-align: center; 
  margin-bottom:0 !important;
}

.accordion-item.is-active .faq_title h3, .accordion-item.is-active .faq_title span{
  color:#FFFFFF;
}

.accordion-item.is-active .faq_title span{
  transform: rotate(-180deg);
}

.accordion-item.is-active .faq_title{
  background:#001430;
}

.accordion .accordion-item{
  margin-bottom:30px;
}

.faq_title span{
  color: #080D1C;
  font-size: 26px;
  line-height: 0;
  transition:all 0.6s;
}

.faq_content{
  padding:30px 30px 0;
}

.faq_content p{
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

/*.accordion-item.is-active .faq_content{
  display:block;
}*/


/* Blog Section Css */

.our_blog{
  padding:60px 0;
  background: #001430;
}

.blog_inr{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:30px;
  margin-top:60px;
}

.blog_itm{
  background:#fff;
  border-radius:10px;
}

.blog_itm img{
  border-top-left-radius:10px; 
  border-top-right-radius:10px; 
}

.blog_cnt{
  padding:20px;
}

.blog_cnt span{
  display:block;
  color: #080d1c;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.blog_cnt span i{
  color: #ffc06e;
  font-size: 18px;
  margin-right:5px;
}

.blog_cnt h3 {
  color: #080d1c;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  margin:15px 0;
}

.blog_cnt a{
  font-size: 18px;
  color:#ffc06e;
  display:flex;
  align-items:center;
  transition:all 0.6s;
}

.blog_cnt a:hover{
  color:#001430 !important;
}

.blog_category{
  margin-top: -14px;
  padding-left: 25px;
}

.blog_category span {
  border-radius: 5px;
  background: #001430;
  padding:7px 15px;
  color: #ffc06e;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.blog_cnt a i{
  margin-left:5px;
  margin-top:2px
}

.view_all{
  display:flex;
  justify-content:center;
  margin-top:50px;
}

.view_all a {
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  transition: all 0.9s;
  border: 1px solid #ffffff;
  text-decoration: none !important;
}

.view_all a:hover {
  border: 1px solid transparent;
  background: #001430;
  color: #fff;
}

/* Testoimonial Section css */

.testimonial_main{
  margin:80px 0px;
}

.testimonial_inr{
  max-width: 1023px;
  margin:90px auto 0;
}

.testimonial_itm {
  padding-top: 70px;
  position: relative;
  margin: 0 15px;
}

.testimonial_itm_inr{
  background:#001430;
  padding:70px 45px 50px;
  border-radius:20px;
}

.testimonial_inr button.PrevArrow{
  position:absolute;
  left:-3%;
  top:50%;
  color: #ffc06e;
  font-size: 30px;
  background:transparent !important;
}

.testimonial_inr button.NextArrow{
  position:absolute;
  right:-3%;
  top:50%;
  color: #ffc06e;
  font-size: 30px;
  background:transparent !important;
}

.tst_img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 162px;
  height: 162px;
  border: 4px solid #ffc06e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tst_img img{
  border-radius:50%;
  margin:0 auto;
}

.testimonial_itm h3{
  color: #ffffff;
  font-family: Poppins;
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  margin-bottom:20px;
  margin-top:50px;
}

.testimonial_itm p {
  color: #ffffff;
  font-family: Poppins;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 32px;
  text-align:center;
}

/* Consultation Section Css*/

.consultation_main{
  padding:60px 0px;
  position:relative;
  z-index:999;
      background-size: cover;
}

.consultation_main:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background:rgba(0,0,0,0.56);
  z-index: -1;
  width: 100%;
  height: 100%;
}

.consultation_inner form{
  max-width:1012px;
  margin:0 auto;
}

.consultation_inner .form_row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
  margin-bottom:36px;
}

.consultation_inner  form input, .consultation_inner form textarea {
  width: 100%;
  height:60px;
  padding: 15px 13px;
  color: #080d1c;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  border: 0;
  border-radius:8px;
}

.consultation_inner form input::placeholder, .consultation_inner  form textarea::placeholder{
  color: #080d1c;
}

.consultation_inner  form textarea{
  resize:none;;
  height:215px;
  width:100%;
}

.consultation_submit{
  display:flex;
  justify-content:center;
}

.consultation_inner form button {
  border-radius: 8px;
  background:#0BE1F9;
  color:#001430;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 60px;
  transition: all 0.9s;
  border: 1px solid transparent;
  margin-top: 36px;
}

.consultation_inner form button:hover {
  border: 1px solid #ffc06e;
  background: transparent;
  color: #ffc06e;
}

/*Google Review Css*/
.google_review{
  margin:80px 0px;
}

.google_review_top{
  padding:60px 0px;
  border-radius: 20px;
  background: #001430;
}

.google_review_top h4 {
  color: #ffffff;
  font-family: Poppins;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  margin-bottom:46px;
}

.google_rating_main{
  max-width:910px;
  margin:0 auto;
  position: relative;
}

.google_rating_main:before{
  content:'';
  position:absolute;
  top: 22px;
  left: -23px;
  width:100%;
  height:100%;
  border: 1px solid #fff;
  border-radius:10px;
}

.google_rating_inr{
  border-radius: 15px;
  background: #ffffff;
  padding:18px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
    z-index: 9999;
  position: relative;
}

.rat_lft h3{
  color: #001430;
  font-family: Poppins;
  font-size: 30px;
  font-weight: 500;
  line-height: 44px;
  text-align:left;  
  margin-bottom:12px; 
}

.rating_number{
  display:flex;
}

.rating_number span{
  color: #010101;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}

.rating_number ul {
  margin:0 10px;
  display:flex;
}

.rating_number ul li i{
  color:#0474FE;
  font-size: 20px;
}

.rating_number p {
  color: #8b8b8b;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

.rat_rgt a{
  border-radius: 8px;
  background: transparent;
  color: #001430;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 60px;
  transition: all 0.9s;
  border: 1px solid #001430;
  text-decoration: none !important;
}

.rat_rgt a:hover {
  border: 1px solid transparent;
  background: #001430;
  color: #fff;
}

.review_bx_main{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  column-gap:30px;
  grid-row-gap:30px;
  margin-top:52px;
}

.review_itm{
  padding:20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
}

.review_itm_profile{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.profile_lft {
  display:flex;
}

.profile_lft span{
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #001430;
  color: #ffffff;
  font-family: Poppins;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content:center;
}

.profile_title{
  margin-left:10px;
}

.profile_title h4{
  color:#000000;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.profile_title p {
  color: #8c8c8c;
  font-family: Poppins;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 18px;
  text-align:left;
}

.profile_rgt ul{
  display:flex;
}

.profile_rgt ul li i{
  color: #ffb803;
   font-size: 20px;
}

.review_bx_main p {
  color: #8c8c8c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
}

.review_btm{
  display:flex;
  align-items:flex-end;
}

.review_btm_inr{
  margin-left:8px;
}

.review_btm_inr p{
  color: #8c8c8c;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  display:block;
  margin-bottom:0px;
  line-height: 2px;
}

.review_btm_inr a{
  color: #ffb803;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height:18px;
}

/* Client section css */
.our_client{
  margin-bottom:80px
}
.client_slider{
  margin:0 -15px;
}
.client_img{
  border-radius: 15px;
  background: #fffefe;
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
  border: 2px solid #ffc06e;
  height:125px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin:0 15px 10px;
}

.client_img img{

  border-radius: 15px;
}
/* Footer */
footer{
  background: #001430;
/*  padding:60px 0px;*/
  position: relative;
}


.ftr_abt p{
  margin:20px 0px;
  color: #ffffff !important;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.footer_clm h2{
	color:#fff;
  font-family: Poppins;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
	margin-bottom:30px;
}

.footer_clm h2 span{
  color:#0BE1F9;
}

.footer_clm p{
	font-size:16px;
	font-weight:300;
	color:#cfcfcf;
  line-height: 26px;
}

.footer_inr{
	display:flex;
  justify-content:space-between;
	grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid #F7FFFA;
    padding:60px 0px;
	/*column-gap:80px;*/
}

.ftr_abt{
  width:34%;
}

.ftr_last_clm{
  width:30%;
}

.footer_clm ul.ftr_social{
	margin-top:30px;
	display:flex;
	align-items:center;
}

.footer_clm ul.ftr_social li{
	margin-right:25px;
}

.footer_clm ul.ftr_social li a{
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #ffffff;
  color: #001430;
   font-size: 22px;
   display:flex;
   justify-content:center;
   align-items:center;
   transition:all 0.5s;
}

.footer_clm ul.ftr_social li a:hover{
   color:#FFC06E !important;
}

.footer_clm ul.ftr_link{
	padding-left:0px;
}

.ftr_link li a{
 color: #ffffff;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  transition:all 0.5s;
}

.ftr_link li a:hover{
   color:#FFC06E !important;
}

.ftr_link li{
	margin-bottom:15px;
}

.ftr_link li::marker{
	color:#cfcfcf !important;
}

.ftr_info li a{
  color: #ffffff;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-left:10px;
  display:block;
}

.ftr_info li p {
  margin-bottom:0;
}

.ftr_info li{
	margin-bottom:20px;
	display:flex;
	align-items:center;
}

.ftr_info li .ftr_icon{
  width:55px;
  padding:16px 19px;
  border-radius: 8px;
  background: #ffffff;
  color: #001430;
  font-size: 24px;
  display:flex;
  justify-content:center;
}

.ftr_newsletter{
  padding:55px 0 60px;
  display:grid;
  grid-template-columns:repeat(2,1fr); 
  column-gap:80px;
}

.newsletter_left h3{
  color: #fffcfc;
  font-family: Poppins;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
}

.newsletter_rgt .frm_grp_row{
  display:flex;
  align-items:center;
  position: relative;
}

.newsletter_rgt .frm_grp_row input{
  height: 70px;
  border-radius: 8px;
  padding:21px 20px;
  background: #ffffff;
  color:#001430;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  width:100%;
  border:0;
}

.newsletter_rgt .frm_grp_row input::placeholder{
  font-family: Poppins;
  color: #acadb0;
}

.frm_grp_row button{
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: #0BE1F9;
  color: #fff4f4;
  font-size: 26px;
  position: absolute;
  right:0;
}

.copyright{
  padding:26px 0px;
}

.copyright_inr{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.copyright_left p{
  color: #001430;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-bottom:0;
}

.copyright_right ul{
  display:flex;
  align-items:center;
  margin-bottom:0;
}

.copyright_right ul li{
  padding-left:16px;
  position: relative;
}

.copyright_right ul li a{
  color:#0BE1F9;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  transition:all 0.5s;
}

.copyright_right ul li:before{
  content:'/';
  position:absolute;
  right: -11px;
  top:0;
  color:#001430;
}

.copyright_right ul li:last-child:before{
    content:none;
}

.copyright_right ul li a:hover{
  color:#001430 !important;
}

/* Inner Banner Css */

.inner_banner{
  height:450px;
  background-size:cover;
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.inner_banner h1{
  z-index:999;
  position: relative;
}

.inner_banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
  width: 100%;
  height: 100%;
}

/* Contact Page Css */

.contact_main{
  margin:80px 0;
}

.contact_row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:30px;
}

.contact_itm{
  background:#f7f8fe8c;
  text-align:center;
  padding:60px 30px;
  border-radius:15px;
  cursor:pointer;
  transition:all 0.7s;
  border:2px solid transparent;
}

.contact_itm:hover{
  background:transparent;
  border:2px solid #001430;
}

.contact_itm:hover i {
  background:transparent;
  border:2px solid #001430;
  color:#001430;  
}

.contact_itm h2{
  color:#24292d;
  font-family: 'Poppins';
  font-size:20px;
  font-weight:600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact_itm a{
  font-size:16px;
  font-family: 'Poppins';
  font-weight:500;
  color:#4c4b4a;
  line-height: 26px;
  word-break: break-all;
  display: block;
  margin-bottom: 8px;
}

.cnt_icon{
  margin-bottom:15px;
}

.contact_itm i{
  font-size:26px;
  background:#001430;
  width:70px;
  height:70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 0 auto;
  color: #fff;
  transition:all 0.7s;
  border:2px solid transparent;
}


.contact_form form{
  max-width:800px;
  margin:30px auto 0;
}

.contact_form form input, .contact_form form textarea{
  width:100%;
  height:55px;
  padding:12px 10px;
  color: #000;
  font-family: 'Poppins';
  font-size:14px;
  font-weight:500;
  letter-spacing: 1px;
  border:0;
  border:1px solid #001430;
  border-radius:5px;
}

.contact_form form .frm_grp{
  margin-bottom:15px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact_form form textarea{
  height:150px;
  resize:none;
}

.contact_form form input::placeholder, .contact_form form textarea::placeholder{
  color:#001430;
  font-weight:400;
  font-family: 'Poppins';
}

.contact_form form button{
  color: #ffffff;
  font-family: 'Poppins';
  font-size:16px;
  font-weight:400;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  align-items: center;
  background:#001430;
  border-radius: 5px;
  padding:14px 30px;
  justify-content: center;
  margin-top:20px;
  cursor:pointer;
  transition:all 0.9s;
  border:1px solid transparent;
}

.contact_form form button:hover{
  border:1px solid #001430;
  background:transparent;
  color:#001430;
}


.form_row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:30px;
}

.map{
  margin-top:80px;
  position: relative;
  transition:all 0.6s;
}

.map:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#1010108c;
  transition:all 0.6s;
}

.map:hover:before{
  opacity:0;
  background:transparent;
  z-index:-1;
}

.map iframe{
  width:100%;
  height:500px;
  display: block;
  cursor:pointer;
}

/* Services Page css */

.services_main .services_name{
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.services_inr_main{
  margin:80px 0px;
  position: relative;
}

.services_inr_cnt{
  max-width:860px;
  /*margin:0 auto;*/
}

.services_inr_cnt img {
  border-radius:15px;
  margin-bottom:30px;
}

.services_inr_cnt h2 {
  color: #001430;
  font-family: Poppins;
  font-size:30px;
  font-weight:600;
  margin-bottom:15px;
      line-height: 36px;
}

.services_inr_cnt p {
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1px;
}

.services_inr_cnt ul{
  margin-top:30px;
  padding-left:20px;
}

.services_inr_cnt ul li {
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight:600;
  line-height: 27px;
  letter-spacing: 1px;
  margin-bottom:10px;
  list-style:disc;
}
/* Gallery Page */

.gallery_main{
  margin:80px 0px;
}

.gallery_inner{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 30px;
  grid-row-gap:30px;
}

.inside img{
  display:block;
  object-fit: cover;
  width: 100%;
}

/* Services Css */

.services_main{
  margin:80px 0px;
}

.gallery-wrap,
#gallery {
  overflow: hidden;
}

#filters {
  margin: 1%;
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin:0 -15px;
}

#filters li {
  float: left;
  margin:0 15px 15px;
}

#filters li span {
  display: block;
  padding: 5px 20px;    
  text-decoration: none;
  color: #666;
  cursor: pointer;
  text-transform: uppercase;
  transition: all ease-in-out 0.25s;
  background: #ed3238;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.5s;
}

#filters li:hover span {
  color: #000;
}

#filters li span.active {
  background: #23245d;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.5s;
}

@media (max-width: 30em) {
  .wrap {
    padding-left: 1em;
    padding-right: 1em;
  }
  
  .gallery-item {
    float: none;
    width: 100%;
  }
}


.magnific-img img {
    width: 100%;
    height: auto;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
/*button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}*/
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
  opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur{
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder s.mfp-close {
    cursor:pointer;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* Blog Page Css */

.blog_main{
  margin:80px 0px;
}

.blog_main .blog_inr{
  margin-top:0 !important;
  grid-row-gap:50px;
}

.blog_main .blog_inr .blog_itm{
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
}

.video_glry iframe{
  width:100%;
}

/* Career Page Css */

.career_main {
  margin:80px 0px;
}

.career_main .form_row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
}

.career_main .frm_grp label{
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.5s;
}

.career_main .frm_grp span{
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.5s;
}

.career_main .frm_grp .captcha {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-size: 1em;
  width: 85px;
  text-align: center;
  padding:5px 3px;
  border-radius: 5px;
  text-decoration: line-through;
  color: #a0a0a0;
  background-color: #0c0c0c;
  margin-bottom:10px;
  display:block;
}

.career_main .frm_grp input{
  width: 100%;
  height: 55px;
  padding: 12px 10px;
  color: #000;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 0;
  border: 1px solid #001430;
  border-radius: 5px;
}

.career_main .frm_grp select{
  width: 100%;
  height: 55px;
  padding: 12px 10px;
  color: #0006;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 0;
  border: 1px solid #001430;
  border-radius: 5px;
}

.career_main .frm_grp input::placeholder, .career_main .frm_grp select::placeholder{
  color:#b1b0b0;
  font-weight:400;
  font-family: 'Poppins';
}

.career_main  form .frm_grp {
  margin-bottom:30px;
}

.career_main form button {
  color: #ffffff;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  align-items: center;
  background: #001430;
  border-radius: 5px;
  padding: 14px 30px;
  justify-content: center;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.9s;
  border: 1px solid transparent;
}

.career_main  form  button:hover {
  border: 1px solid #001430;
  background: transparent;
  color: #001430;
}

.blog_dtl_main{
  margin:80px 0px;
}

.blog_dtl_inner{
  display:flex;
  justify-content:space-between;
}

.blog_dtl_lft{
  width:30%;
}

.blog_dtl_rgt{
  width:65%;
}

.blog_dtl_category h3{
  color:#fff;
  font-family: Poppins;
  font-size:24px;
  font-weight:500;
  line-height: 18px;
  padding-bottom: 15px;
  margin-bottom: 0;
  padding:18px 25px;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  background:#ffc06e;
}

.blog_dtl_category{
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
  border-radius: 10px;
}

.blog_dtl_category ul{
  padding: 25px;
}

.blog_dtl_category ul li {
  padding-bottom:15px;
  display: block;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom:20px;
}

.blog_dtl_category ul li:last-child{
  margin-bottom:0;
}

.blog_dtl_category ul li a{
  font-size: 18px;
  color:#001430;
  line-height: 30px;
  font-weight: 600;
  transition:all 0.5s;
}

.blog_dtl_category ul li a:hover{
  color:#001430 !important;
}

.blog_dtl_cnt img {
  border-radius: 15px;
  margin-bottom: 30px;
}

.blog_dtl_cnt h2 {
  color: #001430;
  font-family: Poppins;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 36px;
}

.blog_dtl_cnt p {
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1px;
}

.share_blog{
  margin-top:30px;
}

.share_blog ul li a i{
  font-size: 16px;
  margin-right:10px;
  color:#ffc06e;
}

.share_blog ul li a {
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1px;
}

.search_box{
  margin-bottom:30px;
}

.search_box form input{
  width: 100%;
  height: 55px;
  padding: 12px 10px;
  color: #000;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 0;
  border: 1px solid #001430;
  border-radius: 5px;
  position: relative;
}

.search_box .form-group{
  position:relative;
}

.search_box .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 55px;
  text-align: center;
  display: flex;
  justify-content:center;
  align-items:center;
  font-size: 16px;
  background-color:#001430;
  color: #ffffff;
  font-weight: normal;
  border-top-right-radius:5px;
  border-bottom-right-radius:5px;
}


/*  Service Innwe Form */
.services_form .form_main h2{
  font-size:28px;
  text-align:left;
  margin-bottom:30px;
  line-height:38px;
}
.services_form .frm_grp label{
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.5s;
}

.services_form .frm_grp span{
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.5s;
}

.services_form .frm_grp .captcha {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-size: 1em;
  width: 85px;
  text-align: center;
  padding:5px 3px;
  border-radius: 5px;
  text-decoration: line-through;
  color: #a0a0a0;
  background-color: #0c0c0c;
  margin-bottom:10px;
  display:block;
}

.services_form .frm_grp input{
  width: 100%;
  height: 55px;
  padding: 12px 10px;
  color: #000;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 0;
  border: 1px solid #001430;
  border-radius: 5px;
}

.services_form .frm_grp textarea{
  width: 100%;
  height:80px;
  resize:none;
  padding: 12px 10px;
  color: #0006;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 0;
  border: 1px solid #001430;
  border-radius: 5px;
}

.services_form .frm_grp input::placeholder, .services_form .frm_grp textarea::placeholder{
  color:#b1b0b0;
  font-weight:400;
  font-family: 'Poppins';
}

.services_form form .frm_grp {
  margin-bottom:30px;
}

.services_form form button {
  color: #ffffff;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  align-items: center;
  background: #001430;
  border-radius: 5px;
  padding: 14px 30px;
  justify-content: center;
  cursor: pointer;
  transition: all 0.9s;
  border: 1px solid transparent;
}

.services_form  form  button:hover {
  border: 1px solid #001430;
  background: transparent;
  color: #001430;
}

.services_form{
  width:100%;
  max-width: 410px;
  padding: 20px;
  border-radius: 10px;
  position: absolute;
  right:30px;
  top: 0;
  box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
}

.services_form.sticky {
    position: fixed;
    top: 0;
    z-index: 999999;
}

.floating_icon {
  position:fixed;
  bottom:100px;
  right:30px;
}

.floating_icon  a {
  width:60px;
  height:60px;
  border-radius: 8px;
  background:#ffc06e;
  color: #fff;
  font-size:28px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  margin-bottom:15px;
  border:1px solid transparent;
}

.floating_icon  a:hover{
  background:transparent;
  border:1px solid #ffc06e;
  color:#ffc06e  !important;

}

.about_pt_main{
  padding:50px 0px;
  background:#001430;
}

.about_pt_innr{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:50px;
  grid-row-gap:50px;
}

.about_pt_itm h3{
  color:#0be1f9;
  font-family: Poppins;
  font-size:28px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom:15px;
}

.about_pt_itm p {
  color:rgb(255 255 255 / 86%);
  font-family: Poppins;
  font-size: 16px;
  font-weight:300;
  line-height: 30px;
  text-align: left;
}

.why_us_main{
  margin:70px 0px;
}

.why_us_inr{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:40px;
  grid-row-gap:40px;
  margin-top:50px;
}

.why_us_itm span{
  background: #d7ecff;
  width:70px;
  height:70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow:1px 1px 5px 2px #52505040;
  color: #001430;
  font-family: Poppins;
  font-size: 24px;
  font-weight:600;
  margin-bottom:30px;
}

.why_us_itm h3{
  color: #001430;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.why_us_itm p {
  color: #080d1c;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.product_main{
  background:#ffffff;
  margin:70px 0px;
}

.product_inr{margin-top:50px;}

.product_row{
  display:flex;
  column-gap:50px;
  align-items:center;
}

.product_inr .product_row:nth-child(even){
  flex-direction:row-reverse;
  margin:50px 0px;
}

.product_inr .product_row:last-child{
  margin-bottom:0;
}

.product_lft{
  width:50%;
}

.product_lft img{
  background: #d7ecff69;
  border-radius:15px;
}

.product_rgt{
  width:50%;
}
.product_rgt  h2{
  text-align:left
}

.product_rgt h3{
  margin-bottom:20px;
}

.product_rgt ul li{
  color: #001430;
  font-family: Poppins;
  font-size:16px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
  display:flex;
  column-gap:15px;
  margin-bottom:10px;
  padding-bottom:15px;
  border-bottom:1px solid #DCDCDC;
}

.product_rgt ul li span{
  font-weight:400;
}

.prdt_cnt {
  margin-top:40px;
}

.prdt_cnt p {
  text-align:center;
  color: #001430;
  font-family: Poppins;
  font-size:18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.prdt_cnt ul {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  column-gap:30px;
  grid-row-gap:15px;
}

.prdt_cnt ul li{
  background: #001430;
  color:#fff;
  padding:12px;
  border-radius:5px;
  font-size:18px;
  text-align:center;
}

.product_top_img h2{
  text-align:center;
  margin-bottom:30px;
  color: #001430;
  font-family: Poppins;
  font-size:28px;
  font-weight: 600;
}

.product_top_img{
  position: relative;
}

.rotate_icon {
  position:absolute;
  top:70px;
  right:20px;
  z-index:999;
}

.rotate_icon img{
  max-width:60px;
}