*
{
    box-sizing: border-box;
}
.word-text
{
    padding-top: 150px;
}
.word-text-uiux{
	padding-top: 80px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Poppins', sans-serif; */
}


.containerh2 {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.container h2::after {
  content: '';
  background: #32509f;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}



.service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #303ef7;
}

.service h2 {
  font-weight: 600;
  margin-bottom: 8px;
}

.service:hover {
  background: #2e53b7;
  color: #fff!important;
  transform: scale(1.05);
}

.service:hover i {
  color: #fff!important;
}
.service:hover p {
	color: #fff!important;
  }

 section {
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-header h3 {
  font-size: 36px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

#services {
  padding: 60px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box:hover {
  transform: scale(1.1);
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon .service-icon {
  font-size: 36px;
  line-height: 1;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #32509f;
}
#services .box:hover .title a:hover {
  text-decoration: none;
}
#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}
.title a{
    text-decoration: none;

}
.mobiles
{
    display: flex;
    align-items: center;
}
.contact-btn{
text-decoration: none;
    padding: 10px 20px;
    border: none;
    background-color: #32509f;
    color: white;
    border-radius: 5px;
}
.contact-btn :hover{
	text-decoration: none;
		padding: 10px 20px;
		border: none;
		background-color: #32509f;
		color: white;
		border-radius: 5px;
	}
.timeline{
  background: #f5f8fd;
}
.timeline .steps {
background: #f5f8fd;
	margin-left: 0px;
	color: #fff;
	padding: 20px;
}
.in-view {
  color: black;
}

.steps > li {
	list-style-type: none;
	position: relative;
	width: 6px;
	margin: 0 auto;
	padding-top: 50px;
	background: #5f84a2;
}

.steps > li:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: inherit;
}

.steps > li div {
	position: relative;
	bottom: 0;
	width: 400px;
    padding: 15px 15px;
	background: #cadeed;
}

.steps > li div:before {
	content: '';
	position: absolute;
	bottom: 7px;
	width: 0;
	height: 0;
	border-style: solid;
}

.steps > li:nth-child(even) div {
	left: 45px;
}

.steps > li:nth-child(even) div:before {
	left: -15px;
	border-width: 8px 16px 8px 0;
	border-color: transparent #32509f transparent transparent;
}

.steps > li:nth-child(odd) div {
	left: -439px;
}

.steps > li:nth-child(odd) div:before {
	right: -15px;
	border-width: 8px 0 8px 16px;
	border-color: transparent transparent transparent #32509f;
}


/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.steps >li:after {
	transition: background .5s ease-in-out;
}

.steps >li.in-view:after {
	background: #32509f;
}

.steps >li div {
	visibility: hidden;
	opacity: 0;
	transition: all .5s ease-in-out;
}

.steps >li:nth-child(odd) div {
	transform: translate3d(200px, 0, 0);
}

.steps > li:nth-child(even) div {
	transform: translate3d(-200px, 0, 0);
}

.steps > li.in-view div {
	transform: none;
	visibility: visible;
	opacity: 1;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 898px) {
	.steps > li div {
		width: 250px;
	}
	.steps > li:nth-child(odd) div {
		left: 45px;
	}
	.steps > li:nth-child(even) div {
		right: 289px;
		/*250+45-6*/
	}
	.steps > li:nth-child(odd) div:before {
		border-width: 8px 16px 8px 0;
		border-color: transparent #C85641 transparent transparent;
	}
}

@media screen and (max-width: 600px) {
	.steps > li {
		margin-left: 20px;
	}
	.steps >li div {
		width: calc(100vw - 91px);
	}
	.steps > li:nth-child(odd) div {
		left: 45px;
	}
	.steps > li:nth-child(even) div:before,
	.steps > li:nth-child(odd) div:before {
		left: -15px;
		border-width: 8px 16px 8px 0;
		border-color: transparent #C85641 transparent transparent;
	}
}

.accordian h5 {
	display: block;
	font-size: 25px;
	margin-bottom: 8px;
	color: black;
	text-align: center;
	/* border-bottom: 3px solid #Da9332; */
}


/** ACCORDIAN **/

.accordian {
	list-style: none;
	margin: 0 auto;
	padding: 0.5em;
	border-top: 0;
	border-radius: 5px;
}

.accordian header {
	display: block;
	cursor: pointer;
	display: block;
	font-size: 1rem;
	color: #fff;
	text-align: left;
	/* border-top: 1px solid #da9332;
	border-bottom: 1px solid #da9332; */
}

.accordian section {
	display: none;
	background: #c85641;
	border-top: 1px solid #ddd;
}

.accordian section.active {
	display: block;
}