

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  color: #ffc451;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #bb223f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #162056;
}

.back-to-top:hover i {
  color: #ffc451;
}

.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: #151515;
}

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

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

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


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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  top:0;
  left:0;
  background-color:#fff;
}

#header.header-scrolled,
#header.header-inner-pages {
  /* background: rgba(0, 0, 0, 0.8); */
}

.navbar-brand .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-brand .logo a {
  color: #fff;
}

.navbar-brand .logo a span {
  color: #ffc451;
}

.navbar-brand .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px 10px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  background-color:#bb223f;
}
.contact-btn {
  color: #fff!important;
  border-radius: 50px;
  padding: 10px 25px 10px 25px!important;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  background-color:#bb223f;
  margin-left:40px;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}


.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #0e1530;
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/* .navbar { */
  /* padding: 0; */
/* } */

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

/* .navbar li { */
  /* position: relative; */
/* } */

/* .navbar a, */
/* .navbar a:focus { */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: space-between; */
  /* padding: 10px 0 10px 30px; */
  /* font-size: 15px; */
  /* font-weight: 500; */
  /* color: #0e1530; */
  /* white-space: nowrap; */
  /* transition: 0.3s; */
/* } */

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

/* .navbar a:hover, */
/* .navbar .active, */
/* .navbar .active:focus, */
/* .navbar li:hover>a { */
  /* color: #0e1530; */
/* } */

/* .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; */
/* } */

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

/* .navbar .dropdown ul a { */
  /* padding: 10px 20px; */
  /* font-size: 14px; */
  /* text-transform: none; */
  /* color: #151515; */
  /* font-weight: 400; */
/* } */

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

/* .navbar .dropdown ul a:hover, */
/* .navbar .dropdown ul .active:hover, */
/* .navbar .dropdown ul li:hover>a { */
  /* background-color: #ffc451; */
/* } */

/* .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; */
/* } */

/* .dropdown-link{ */
	/* display:flex; */
	/* align-items:center; */
/* } */
/* .dropdown-icon{ */
	/* font-size:1rem; */
/* } */
/* .megamenu{ */
	/* position:absolute; */
	/* width:100%; */
	/* top:0; */
	/* left:0; */
	/* background-color:#fff; */
	/* display:flex; */
	/* justify-content:center; */
	/* border-radius:0 10px 10px 0; */
	/* z-index:-99; */
	/* visibility:hidden; */
	/* opacity:0; */
/* } */
/* .content{ */
	/* display:flex; */
	/* flex-direction:column; */
	/* padding:1rem; */
/* } */
/* .megamenu-item{ */
	/* display:flex; */
	/* align-items:center; */
	/* margin-bottom:1rem; */
/* } */
/* .header-megmenu{ */
	/* margin-bottom:1rem; */
/* } */
/* .dropdown:hover .megamenu{ */
	/* visibilty:visible; */
	/* opacity:1; */
/* } */





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

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

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

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

  /* .navbar ul { */
    /* display: none; */
  /* } */
/* } */

/* .navbar-mobile { */
  /* position: fixed; */
  /* overflow: hidden; */
  /* top: 0; */
  /* right: 0; */
  /* left: 0; */
  /* bottom: 0; */
  /* background: rgba(0, 0, 0, 0.9); */
  /* 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; */
  /* background-color: #fff; */
  /* overflow-y: auto; */
  /* transition: 0.3s; */
/* } */

/* .navbar-mobile a, */
/* .navbar-mobile a:focus { */
  /* padding: 10px 20px; */
  /* font-size: 15px; */
  /* color: #151515; */
/* } */

/* .navbar-mobile a:hover, */
/* .navbar-mobile .active, */
/* .navbar-mobile li:hover>a { */
  /* color: #151515; */
  /* background-color: #ffc451; */
/* } */

/* .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; */
  /* color: #151515; */
/* } */

/* .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 { */
  /* background-color: #ffc451; */
/* } */

/* .navbar-mobile .dropdown>.dropdown-active { */
  /* display: block; */
/* } */

a.title{
	color:#162056; 
	margin:0;
}
.nav-sub-service{
	color:#111; 
	font-weight:400; 
	margin:10px 0px 10px 0px; 
	font-size: 14px;
}
a.nav-featured-service{
	color:#111; 
	font-weight:400; 
	margin:10px 0px 10px 0px; 
	font-size: 14px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
   background: linear-gradient(45deg, #0f1f68, #601326, #0b1650, #a82a0b);
    background-size: 600% 100%;
    animation: gradient 10s linear infinite;
    animation-direction: alternate;
	opacity:0.75;
}
@keyframes gradient {
    0% {background-position: 0%}
    100% {background-position: 100%}
}
.element {
  animation: 
    nudge 3s linear infinite alternate;
}

@keyframes nudge {
  0%, 100% {
    transform: translate(0, 0);
  }
  
  50% {
    transform: translate(5px, 0);
  }
  
  80% {
    transform: translate(-5px, 0);
  }
}



.hero-padding{
	padding:0px 0px;
}

.bg-zoom{
	-webkit-animation: zoomin 15s ease-in infinite;
  animation: zoomin 15s ease-in infinite;
}

/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.3);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

.video-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.video-container .caption {
  z-index: 1;
  position: relative;

}

#hero {
  width: 100%;
  min-height: 90vh;
  background: url("../img/7101912-uhd_2560_1440_25fps.mp4") center center no-repeat;
  background-size: cover;
  position: relative;
}

.banner-element-img{
	width: 100%;
    margin-left: 80px;
    margin-top: 0px;
}

.intro-text-box{
	margin-right:100px; 
	padding:100px 20px 100px 120px;
}
.abt-bg {
  background: url("../img/about-section.png");
  background-position:center right;
  background-repeat:no-repeat;
  
}
.service-bg-1 {
  background: url("../img/service-bg1.png");
  background-position:center center;
  background-repeat:no-repeat;
  
}
.service-bg-2 {
  background: url("../img/service-bg2.png");
  background-position:center bottom;
  background-repeat:no-repeat;

}
.parallex-intro {
  background: url("../img/Asset 49.png");
  background-position:left;
  background-repeat:no-repeat;
  padding:140px 0px 30px 0px;

}
.parallex-intro h1{
	color:#fff; 
	font-size:44px; 
	line-height:48px;
	font-weight:500;
}
.parallex-intro h1 span{
	font-size:36px; 
	font-weight:300;
}
.inner-page{
	padding:60px 0px 10px 0px;
}
.about-us-page h2{
	color:#162056; 
	font-size:42px; 
	line-height:48px; 
	font-weight:500; 
	margin-bottom:50px;
}
.about-us-page p{
	color:#333; 
	font-size:17px; 
	line-height:25px; 
	font-weight:300;
}
.about-img{
	width:85%; 
	margin-left:50px; 
	margin-top:-100px; 
	position:relative; 
	z-index:999;
}
.vision-box{
	padding:100px;
}
.vision-box img{
	width:35%; 
	margin-bottom:40px;
}
.vision-box h1{
	color:#fff; 
	font-size:54px; 
	line-height:40px; 
	font-weight:500; 
	margin-bottom:30px; 
	text-align:left;
}
.vision-box p{
	color:#fff; 
	font-size:18px; 
	line-height:25px; 
	font-weight:300;
}
.values{
	background-color:#f4f5f9; 
	padding:75px 0px;
}
.core-box h1{
	color:#fff; 
	font-size:50px; 
	line-height:48px; 
	font-weight:500;
}
.value-boxes{
	padding:40px 40px 30px 40px; 
	border-radius:15px; 
	margin-bottom:30px;
}
.value-boxes h1{
	color:#fff; 
	font-size:48px; 
	padding-bottom:25px;
}
.value-boxes h3{
	color:#fff; 
	font-size:24px; 
	line-height:32px; 
	font-weight:500;
}
.value-boxes p{
	color:#fff; 
	font-size:16px; 
	line-height:18px; 
	font-weight:300;
}
.culture{
	background-color:#9e223f; 
	padding:100px 0px;
}
.culture h1{
	font-size:84px; 
	font-weight:600; 
	color:#fff; 
	margin-bottom:10px;
}
.culture h1 span{
	color:#9e223f; 
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
}
.culture h2{
	font-size:40px; 
	font-weight:500; 
	color:#fff; 
	margin-bottom:40px;
}
.text-culture{
	padding:30px; 
	border-left:1px solid #fff;
}

.text-culture h1{
	font-size:28px; 
	font-weight:500; 
	color:#fff; 
	margin-bottom:15px;
}
.text-culture p{
	font-size:16px; 
	font-weight:300; 
	color:#fff; 
	margin-bottom:10px;
}
.join-us {
  background: url("../img/join-us.png");
  background-position:center center;
  background-repeat:no-repeat;
  padding:130px 0px;
}
.join-us h1{
  font-size:48px; 
  font-weight:500; 
  color:#9e223f; 
  margin-bottom:30px;
}
.model-style{
	background-color:#202944; 
	border-radius:0; 
	padding:40px;
}
.modal-dialog{
	max-width:75%
}
.apply-box{
	padding-right:20px;
}
.pd-model{
	padding:90px 0px 100px 0px;
}
.apply-box img{
	width: 100%;
}
.apply-box h1{
	font-size:50px; 
	margin-bottom:20px; 
	color:#fff;
}
.input-text{
	color:#fff; 
	font-size:20px; 
	border-bottom: 2px solid #fff; 
}
.blog-row{
	margin:50px 0px; 
	border-bottom:1px solid #222;
}
.blog-page-text{
	padding:30px;
}
.blog-page-text h3{
	margin-bottom:30px; 
	font-weight:400; 
	color:#000; 
	font-size:18px; 
	background-color:#cdd3fc; 
	padding:8px 16px; 
	width:fit-content; 
	border-radius:2px;
}
.blog-page-text h1{
	color:#201656; 
	font-size:32px; 
	line-height:48px; 
	font-weight:500; 
	margin-bottom:40px;
}
.blog-page-text a span{
	margin-left:10px; 
	font-size:48px; 
	color:#9e223f;
}
.blog-header-img{
	width:100%; 
	margin-bottom:50px; 
	border-radius:5px;
}


.mission-vision {
  background: url("../img/mission-bg.png");
  background-attachment:fixed;
  background-size:cover;
  background-repeat:no-repeat;
  padding:10px 0px 30px 0px;

}
.core-box {
  background: url("../img/core-values2.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
  padding:470px 30px 100px 30px;
  border-radius:15px;

}
.ai-service-box{
	background: url("../img/Asset 19.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
  padding:15rem 5rem 3rem 5rem;
  border-radius:15px;
}
.digital-service-box{
	background: url("../img/Asset 201.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
  padding:12rem 5rem 3rem 5rem;
  border-radius:15px;
}
.dp-service-box{
  background: url("../img/dp-01.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
 padding: 12rem 5rem 3rem 5rem;
  border-radius:15px;
}
.data-service-box{
  background: url("../img/product-enginner-img.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
 padding: 12rem 5rem 3rem 5rem;
  border-radius:15px;
}
.qa-service-box{
  background: url("../img/qa-bg-img.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
 padding: 12rem 5rem 3rem 5rem;
  border-radius:15px;
}
.cloud-service-box{
  background: url("../img/cloud-computing-img.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
 padding: 12rem 5rem 3rem 5rem;
  border-radius:15px;
}
.devops-service-box{
  background: url("../img/devops.png") center center;
  background-size:cover;
  background-repeat:no-repeat;
 padding: 12rem 5rem 3rem 5rem;
  border-radius:15px;
}

.display-style{
	display:flex;
	justify-content:flex-end;
}
.mb-20{
	margin-bottom:20px;
}
.contact-heading{
	color:#162056; 
	font-size:44px; 
	line-height:48px; 
	font-weight:500; 
	margin-top:50px; 
}
.c-form{
	padding:40px 50px 0px 0px;
}
.c-form p{
	margin-bottom:30px; 
	font-size:22px;
}
.c-form h1{
	font-size:36px; 
	color:#162056; 
	lineheight:52px;
}
.contact-information{
	margin-top:50px; 
	margin-top:50px;
}
.contact-info{
	background-color:#bb223f; 
	color:#fff; 
	padding:50px; 
}
.contact-info h5{
	font-weight:200;
}
.contact-info p{
	margin-bottom:50px;
}
.footer-links h1{
	font-size:28px; 
	margin-bottom:20px; 
	font-weight:400;
}
.social-links h1{
	font-size:30px; 
	font-weight:400; 
	margin-bottom:15px;
}
.footer-info p span{
	font-size:20px;
}
.mb-40{
	margin-bottom:40px;
}
.w-6{
	width:6%;
}
.blog-box-img{
	margin-top:-100px; 
	width:100%;
}
.blog-heading{
	position:absolute; 
	bottom:35%;
}
.blog-heading h1{
	color:#fff; 
	margin-bottom:20px; 
	text-align:center; 
	font-size:48px;
}
.blog-text{
	 margin-top:-150px; 
	 background-color:#fff; 
	 padding:50px 100px;
 }
.mb-30{
	margin-bottom:30px;
}
.blog-sub-heading{
	color:#000; 
	margin-bottom:20px; 
	text-align:left; 
	font-size:36px;
}
.mb-100{
	margin-bottom:100px;
}
.blogs{
	background-color:#faebd7;
}
.blog-post-box{
	border-radius:10px; 
	box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.blog-post-box img{
	width:100%; 
	border-radius:10px 10px 0px 0px;
}
.blog-post-text{
	padding:15px 25px; 
	background-color:#fff; 
	border-radius:0px 0px 10px 10px;
}
.blog-post-text p{
	font-size:12px; 
	margin-bottom:30px;
}
.blog-post-text h1{
	font-size:24px; 
	color:#162056; 
	height:140px;
}
.blog-post-bottom-box{
	display:flex;
	justify-content: space-between; 
	align-items:baseline;
}
.blog-post-bottom-box p{
	font-size:14px;
}
.blog-post-bottom-box a{
	color:#444; 
	font-size:28px;
}
.circle-box{
	background-color:rgba(35, 1, 52, 0.8); 
	border-radius:100%; 
	padding:150px 50px; 
	text-align:center; 
	height:550px; 
	width:550px;
}





.accordion-button::after {
	margin-right:40%;
}
button:focus:not(:focus-visible) {
    outline: none;
}
.accordion-button:focus {
    z-index: 3;
    outline: none;
    box-shadow: unset;
}
.accordion-button:not(.collapsed) {
    color:unset;
    background-color:unset;
    box-shadow: unset;
}
.case-study{
	background: url("../img/case-bg.png");
  background-position:center bottom;
  background-repeat:no-repeat;
}

.blog-box1{
	background: url("../img/blog-1.png");
  background-position:center cnetr;
  background-repeat:no-repeat;
}
.section-box{
	scroll-snap-type:y mandatory;
	overflow-y:scroll;
	height:90vh;
	 background: url("../img/Asset 51.png");
  background-position:right;
  background-repeat:no-repeat;
}

.sec-box{
	height:90vh;
	display:flex;
	justify-content:center;
	align-items:center;
	scroll-snap-align:start;
	
}
.bx1{
 
  padding:60px 75px;
}
.bx2{

  background-repeat:no-repeat;
}
.bx3{
	
  background-repeat:no-repeat;
}


.content {
  position: relative;
  width: 100%;
  /* max-width: 400px; */
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(214,19,19,0.5);
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  top: 50%;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: left;
  /* padding-left: 1em; */
  /* padding-right: 1em; */
  width: 100%;
  /* bottom: -9%; */
  /* left: 5%; */
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  bottom: -9%;
  left: 55%;
  opacity: 1;
}


.content-details p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom{
  /* top: 80%; */
}

.fadeIn-top{
  top: 20%;
}

.fadeIn-left{
  left: 20%;
}

.fadeIn-right{
  left: 80%;
}





.img-area{
  width: 100%;
  margin: 2% auto;
}

.single-img {
  position: relative;
  width: 95%;
  float: left;
  margin: 0 1%;
  
}

.image {
  display: block;
  width: 100%;
  height: auto;
  border-radius:15px;
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background-color: #162056; */
  background: url("../img/blog-text-bg.png") center center no-repeat;
  background-size:cover;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
  
}

.single-img:hover .img-overlay {
  height: 50%;
  border-bottom:2px solid #ab223f;
}
.single-img:hover .over-text {
  display:none;
}

.text {
  position: absolute;
  top: 55%;
  left: 38%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #162056;
  text-align: left;
  font-size: 30px;
  font-family: poppins;
  line-height:40px;
  font-weight: 600;
}
.text span{
  font-weight: 300;
}






#hero .container-fluid {
  position: relative;
  padding-top: 90px;
  text-align: left;
}
.cta-home {
  width: 100%;
  background: url("../img/CTA-bg-home2.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding:50px 0px;
  
}

#hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 300;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
 margin-bottom:20px;
}
#hero p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom:40px;
}


#hero a {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding:9px 0px 10px 25px;
  border:1px solid #fff;
  border-radius:50px;
}

#hero h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom:30px;
}

#hero h1 span {
  color: #ffc451;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #ffc451;
}

#hero .icon-box:hover {
  border-color: #ffc451;
}

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

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

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

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

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 5px;
  margin-top:-50px;
  background-color:#fff;
  position:relative;
}

.clients .swiper-slide img {
  opacity: 1;
  transition: 0.2s;
  filter: grayscale(1);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
  display:none;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.mb-50{
	margin-bottom:50px;
}
.service-page h1{
	color:#fff; 
	font-size:40px; 
	line-height:48px; 
	font-weight:400; 
	margin-bottom:20px;
}
.service-page-text p{
	color: #fff; 
	font-size: 16px; 
	line-height: 25px; 
	font-weight: 200; 
	background-color: rgba(29, 32, 74, 0.8); 
	padding: 40px; 
	border-radius: 10px;
}
.sub-service{
	padding:30px 20px 40px 20px; 
	box-shadow: rgba(80, 90, 219, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px; 
	border-radius:0 0px 20px 20px;
}

.bg1{
	background-color:#e8e9ee; 
}
.bg2{
	background-color:#e8e9ee; 
}
.bg3{
	background-color:#e8e9ee; 
}
.bg4{
	background-color:#e8e9ee;	; 
}
.box-1{
	padding:16px 30px 10px 30px; 
	border-radius:10px; 
	margin:0px 5px;
}
.box-1 h3{
	color:#000; 
	font-size:16px;
	font-weight:400;
}
.box-1 h3 span{
	margin-right:10px;
}
.services h3{
	color:#bb223f; 
	margin-bottom:5px; 
	font-size:20px;
}
.services h1{
	color:#162056; 
	margin-bottom:10px; 
	font-size:42px; 
	font-weight:600; 
	margin-bottom:30px;
}

.service-box{
	padding:50px; 
	border-radius:10px; 
	margin-bottom:25px;
}
.service-box:hover  + .service-box-link{
	float:right;
	transition:0.5s ease-in-out;
}
.service-box h1{
	color:#fff; 
	margin-bottom:10px; 
	font-size:30px;
}
.service-box p{
	color:#fff; 
	margin-bottom:25px; 
	font-weight:300;
}
.service-box a{
	color:#fff; 
	margin-bottom:10px; 
	font-size:36px;
}

.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #ffc451;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.team{
	padding:60px 0px 70px 0px;
}
.team-heading{
	padding:0px 0px 0px 0px;
}
.team-heading h1{
	color:#b9223f; 
	margin-bottom:5px; 
	font-size:20px;
}
.team-heading h2{
	color:#201656; 
	margin-bottom:10px; 
	font-size:42px; 
	font-weight:600; 
	margin-bottom:20px; 
	font-weight:400; 
	margin-bottom:40px;
}
.team-member-box{
	padding:10px;
}
.team-member-box img{
	width:100%;
	background-color:#faeab6;
	border-radius:5px;
}
.member-info{
	padding:10px 5px;
	text-align:center;
}
.member-info h1{
	font-size:17px;
	font-weight:500;
	line-height:20px;
	color:#111;
}
.member-info p{
	font-size:12px;
	font-weight:300;
	color:#333;
}

.testimonial-heading{
	padding:100px 0px;
}

.testimonial-heading h3{
	margin-bottom:5px; 
	font-size:20px;
	color:#fff;
}
.testimonial-heading h1{
	color:#fff; 
	margin-bottom:10px; 
	font-size:32px; 
	font-weight:500; 
	margin-bottom:20px; 
	font-weight:400; 
	margin-bottom:100px;
}
.testimonial-heading h1 span{
	font-weight:600; 
	font-size:48px;
}


.blog-box-home{
	padding:60px 0px 0px 0px;
}
.blog-box-home h3{
	color:#b9223f; 
	margin-bottom:5px; 
	font-size:20px;
}
.blog-box-home h1{
	color:#201656; 
	margin-bottom:10px; 
	font-size:42px; 
	font-weight:600; 
	margin-bottom:20px; 
	font-weight:500; 
	margin-bottom:40px;
}
.blog-i-box{
	position:absolute; 
	right:20px; 
	top:20px;
}
.blog-i-box h3{
	background-color:#ab223f; 
	font-size:18px; 
	font-weight:500; 
	padding:15px; 
	width:fit-content; 
	color:#fff; 
	border-radius:7px;
}
.over-text{
	position:absolute; 
	bottom:5%; left:7.5%
}
.over-text p{
	font-size:12px; 
	background-color:#162056; 
	color:#fff; 
	padding:0px 10px; 
	font-weight:300; 
	width:fit-content; 
	border-radius:25px; 
	line-height:30px;
}
.over-text h1{
	line-height:40px; 
	font-size:32px; 
	color:#fff;
}
.over-text a{
	color:#fff; 
	margin-top:5px; 
	font-size:36px; 
	margin-top:10px; 
	float:left;
}
.overlay-text p{
	font-size:12px; 
	background-color:#162056; 
	color:#fff; 
	padding:0px 10px; 
	font-weight:300; 
	width:fit-content; 
	border-radius:25px; 
	line-height:30px;
}
.overlay-text a{
	color:#162056; 
	margin-top:15px; 
	font-size:36px; 
	margin-top:10px; 
	float:left;
}

.cta-home-text h1{
	color:#fff; 
	font-size:40px; 
	font-weight:600; 
	margin-bottom:20px; 
	-webkit-text-stroke: 1px #fff;
	text-align:center;
}
.cta-home-text p{
	color:#fff; 
	font-size:18px; 
	font-weight:200; 
	margin-bottom:80px;
	text-align:center;
}
.cta-home-text a{
	color:#fff; 
	font-size:28px; 
	text-transform:uppercase; 
	font-weight:300;
	text-align:center !important;
}

.footer-info img{
	width:60%; 
	margin-bottom:60px;
}
.footer-info h1{
	font-size:30px; 
	font-weight:400; 
	margin-bottom:15px;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonial-bg.png") no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: left;
  color: #fff;
  padding:50px 70px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
  font-weight: 300;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
  font-size:20px;
  margin-bottom:60px;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}
.swiper-pagination {
	text-align:left;
	padding-left:70px;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 100%;
  }
}




/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

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

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

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type=submit] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

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

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





/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  width: 100%;
  min-height: 100vh;
  background: url("../img/footer-bg.png") center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  font-family:poppins;
}

#footer .footer-top {
  padding: 60px 0 10px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 28px;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 24px;
    display: inline-block;
    background: #aa223f;
    color: #fff;
    line-height: 1;
    padding: 14px 0px;
    margin-right: 12px;
    border-radius: 34px;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #201656;
  color: #ffffff;
  text-decoration: none;
  border:1px solid #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 9px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #bb223f;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: left;
  padding-top: 5px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.accordion * {
  transition: all .3s ease 0s; }

.accordion {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  /* height: 65vh; */
  /* min-height: 700px; */
  list-style: none;
  position: relative;
  /* display: flex; */
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
  transition: 0.1s ease background; }

.section {
  flex: initial;
  width: 25%;
  height: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  vertical-align: bottom;
  box-sizing: border-box;
  padding: 2vh 1vw;
  position: relative;
  cursor: pointer;
  border-right: 1px solid #fff;
  transition: 1.2s ease all; }

.accordion .section:last-of-type {
  border-right: none; }

.section .heading {
  transition: 0.5s ease all; }

.section:hover .heading {
  margin-top: -30px; }

div.enabled article {
  flex: initial;
  width: 4%; }

.section.open {
  width: 88%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.4+0,0+100 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#00000000',GradientType=1 );
  /* IE6-9 */
  cursor: default; }

.inside-content {
  opacity: 0;
  transition: opacity .3s ease 0; }

.section.open > .inside-content {
  opacity: 1;
  transition: opacity .3s ease .3s; }

/* navigation */
.heading {
  top: 300px;
  position: absolute;
  width: 70%;
  max-width: 100%;
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: left;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.3; }

.heading .above {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px; }

.heading .below {
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  margin-top: 15px;
  text-align: center;
  line-height: 33px;
  border-radius: 100%;
  font-size: 30px; }

.accordion.enabled .section:not(.open) {
  background: rgba(0, 0, 0, 0.1); }

.accordion.enabled .section:not(.open) h2.heading {
  top: 25px;
  left: 13%;
  text-align: left;
  font-size: 15px;
  width: 400px;
  height: 400px;
  transform-origin: 0px 0px 0px;
  transform: matrix(0, 1, -1, 0, 27, 0);
  white-space: nowrap;
  line-height: 1; }

.accordion.enabled .section:not(.open) h2.heading .above,
.accordion.enabled .section:not(.open) h2.heading .below {
  display: none; }

.accordion.enabled .section.open h2.heading .below {
  display: none; }

.accordion.enabled .section.open h2.heading {
  padding-left: 25px;
  max-width: 450px; }

.accordion.enabled .section:hover {
  background: rgba(0, 0, 0, 0.4); }

.accordion.enabled .section:hover .heading {
  margin-top: -5px; }

.accordion.enabled .section.open:hover {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.4+0,0+100 */
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#00000000',GradientType=1 );
  /* IE6-9 */ }

.accordion:not(.enabled) .section:hover {
  background: rgba(0, 0, 0, 0.2); }
  .accordion:not(.enabled) .section:hover .heading .below {
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Chrome, Safari, Opera */
    transform: rotate(90deg); }

@media screen and (min-width: 768px) {
  .accordion.enabled .section.open h2.heading {
    font-size: 45px;
    top: 230px; } }

/* Article layouts */
.inside-content {
  text-align: left;
  width: 700px;
  padding-left: 25px;
  max-width: 80%;
  position: absolute;
  top: 350px;
  line-height: 1.4; }

.inside-content p,
.inside-content h2,
.inside-content h3 {
  margin: 0 0 1em 0; }

.close {
  display: none;
  z-index: 300;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  border: 2px solid #FFF;
  cursor: pointer;
  transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, 0);
  position: absolute;
  left: 50%;
  cursor: pointer; }

.close .cross {
  position: absolute;
  left: 18px;
  top: 18px; }

.close .a {
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: #FFF;
  left: -7px;
  top: -1px; }

.close .b {
  position: absolute;
  width: 2px;
  height: 14px;
  background-color: #FFF;
  left: -1px;
  top: -7px; }

.section.open .close {
  display: block; }

@media (max-width: 900px) {
  .section {
    padding: 2vh 3vw; }
  .heading {
    transform: rotate(90deg);
    min-width: 100vh;
    text-align: left;
    transform-origin: 0 0 0;
    opacity: 1;
    top: 10vh;
    font-size: 22px;
    width: auto;
    left: 61%; }
  .heading .above,
  .heading .below {
    display: none; }
  .accordion.enabled .section.open h2.heading {
    transform: none;
    width: 95%;
    min-width: 200px;
    max-width: 95%;
    left: 0;
    top: 20%; }
  .inside-content {
    max-height: calc(72%);
    overflow-y: auto;
    left: 0;
    top: 30%; } }
	
	
@media (max-width: 1140px){
    #hero h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
}
#hero p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 20px;
}
#hero h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}
.services h3 {
    color: #bb223f;
    margin-bottom: 5px;
    font-size: 16px;
}
.services h1 {
    font-size: 20px;
    margin-bottom: 30px;
}
#hero {
    width: 100%;
    min-height: 70vh;
}
.hero-padding{
	padding:0px 0px;
}
.banner-element-img {
	width: 100%;
}
.intro-text-box {
    margin-right: 60px;
    padding: 110px 20px 125px 40px;
}
.service-box p {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 300;
	font-size:16px;
}
}	
	

@media (max-width: 640px) {
  .accordion.enabled .section:not(.open) {
    width: 12%;
    padding: 3px; } }
	
	input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: none;
  border-bottom: 2px solid rgb(128, 126, 126);
  background: transparent;
  outline: none;
  width: 100%;
  text-transform: capitalize;
  padding: 1rem 0.4rem;
}
.btn-close {
    --bs-btn-close-color: #fff !important;
}



@media screen and (max-width: 480px) {
  .row-cols-5>* {
    flex: 0 0 auto;
    width: 50%;
}
.navbar-brand .logo img {
    max-height: 50px;
}
.navbar-toggler{border:none;}
.navbar .megamenu {
    padding: 0.5rem 0.2rem;
}
.nav-sub-service {
    font-size: 13px;
	margin: 5px 0px 5px 0px;
}
.navbar a{
	font-size:14px;
}
.intro-text-box{
	padding:110px 20px 120px 40px;
	margin-right:0;
}
.banner-element-img{
	width: 25%;
	position:absolute;
	right:0;
	margin-top:0px;
}
.services h1 {
    font-size: 28px;
}
.services h3 {
    font-size: 16px;
}
.service-box h1 {
    font-size: 24px;
    font-weight: 500;
}
.testimonials {
    padding:0 0 50px 0;
}
.testimonial-heading h1 span {
    font-weight: 600;
    font-size: 36px;
}
.testimonial-heading h1 {
    font-size: 24px;
    margin-bottom: 60px;
}
.testimonials .testimonial-item {
  padding:10px 20px;
}
.testimonial-heading {
    padding: 80px 20px 20px 20px;
}
.testimonials .testimonial-item p {
    font-weight:300;
    font-size: 18px;
    margin-bottom: 60px;
}
.parallex-intro h1 {
    color: #fff;
    line-height: 32px;
    font-size: 24px;
    font-weight: 500;
	margin-bottom:10px;
}
.parallex-intro h1 span {
    font-size: 20px;
    font-weight: 300;
}
.inner-page {
    padding: 30px 0px 40px 0px;
}
.about-us-page h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}
.about-img {
    width: 75%;
    margin-left: 50px;
    position: relative;
    z-index: 999;
	margin-top: 0px;
}
.vision-box {
    padding: 40px 30px;
}
.vision-box img {
    width: 25%;
    margin-bottom: 20px;
}
.vision-box h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 15px;
}
.vision-box p {
    font-size: 16px;
    line-height: 24px;
}
.core-box {
    padding: 150px 30px 50px 30px;
	margin-bottom:30px;
}

.core-box h1 {
    font-size: 32px;
    line-height: 40px;
}
.culture {
    padding: 70px 20px;
}
.culture h1 {
    font-size: 48px;
}
.culture h2 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}
.text-culture h1 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}
.join-us {
    padding: 60px 20px;
}
.join-us h1 {
    font-size: 24px;
    font-weight: 500;
    color: #9e223f;
    margin-bottom: 30px;
}
.blog-page-text {
    padding: 0px;
}
.blog-page-text h1 {
    color: #201656;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-page-text a span {
    font-size: 32px;
    color: #9e223f;
	margin-top:20px;
}
.ai-service-box {
    padding: 2.5rem 1rem 2rem 2rem;
}
.digital-service-box {
    padding: 2.5rem 1rem 2rem 2rem;
}
.dp-service-box {
    padding: 2.5rem 1rem 2rem 2rem;
}
.data-service-box {
    padding: 2.5rem 1rem 2rem 2rem;
}
.cloud-service-box {
    padding: 2.5rem 1rem 2rem 2rem;
}
.qa-service-box {
    padding: 2.5rem 1rem 2rem 2rem;
}
.display-style{
	display:unset;
}
.service-page h1 {
    color: #fff;
    font-size: 28px;
    line-height: 36px;
}
.service-page-text p {    
    line-height: 25px;
}
.box-1 {
    border-radius: 7px;
    margin: 5px 5px;
}
.contact-heading {
    font-size: 30px;
    line-height: 40px;
    margin-top: 60px;
}
.c-form{
	padding:10px 00px 0px 0px;
}
.c-form p{
	margin-bottom:15px; 
	font-size:16px;
}
.c-form h1{
	font-size:24px; 
	line-height:32px;
}
.contact-info {
    padding: 40px;
}

#footer {
    padding: 0 10px 30px 15px;
}
.footer-info img {
    width: 50%;
    margin-bottom: 30px;
}
#footer .footer-top {
    padding: 35px 0 10px 0;
}
.footer-info h1 {
    font-size: 24px;
}
.footer-links h1 {
    font-size: 24px;
}
.w-6{
	width:12%;
}
.blog-text {
    margin-top: 0px;
    padding: 30px 30px;
}
.blog-box-img{
    margin-top: 0px;
}
.blog-heading {
    position:unset;
	bottom:unset;
	
}
.blog-heading h1 {
        font-size: 20px;
        margin-top: -160px;
        padding: 30px;
    }
.blog-sub-heading {
    color: #000;
    margin-bottom: 20px;
    text-align: left;
    font-size: 24px;
}
.blog-post-text h1 {
    font-size: 20px;
    height: 120px;
}
.blog-post-box{
	margin-bottom:25px;
}
.mb-100{
	margin-bottom:50px;
}
.cta-home {
    padding: 100px 0px;
}
.circle-box {
    padding: 80px 50px;
    height: unset;
    width: unset; 
}
.cta-home-text h1 {
    font-size: 24px;
}
.cta-home-text p {
    font-size: 14px;
    margin-bottom: 40px;
}
.cta-home-text a {
    font-size: 18px;
}

}