.about-bg {
	background: url(../images/home-startup-about-bg.html) fixed no-repeat;
	padding: 0px 0 !important;
}

.get-app-wrapper {
	background: url(../images/app-bg.jpg) no-repeat fixed;
	padding: 30px 0 !important;
}
.get-app-wrapper p {
	color:#fff;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
}

.feature-wrapper {
	background: #fff !important;
}
#company h2 {
	color:#111 !important;
}
#company p {
	color: #545454 !important;
}
.features-img-wrapper {
	background: url(../images/features-bg.html) no-repeat #000 !important;
	background-position: center;
	background-size:100% !important;
	padding-top: 400px !important;
	border: 0px !important;
}
.company-feature {
	transition: all 0.5s ease-in-out 0s;
box-shadow: 0 9px 35px 0 rgba(26, 47, 106, .07);
padding: 20px;
	margin-top: 15px;
}
.company-feature p {
	margin-bottom: 0px;
}
/*========Company Section=========*/

.company {
	/*padding: 5em 0 7em !important;*/
	background: url(../images/bg-1.jpg) no-repeat;
}
.company .border-left {
	padding-left: 15px;
	border-left: 1px solid #013378;
}
.company .company-box {
	background: #fff;
	/*padding: 50px;*/
}
.company .title .line {
	margin-left: 0px;
}
/*--------------
Text effect
--------------*/
.witr_slicks_title {
	margin-bottom: 25px;
}
.witr_slicks_title h4 {
	font-size: 55px;
	line-height: 60px;
	-webkit-text-stroke: 1px #000;
	-webkit-text-fill-color: transparent;
	color: #ffffff;
	opacity: 0.2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=7)";
	margin: 0;
}

/*--------------
Image effect
--------------*/

.box-images-parallax {
	position: relative;
	/*display: flex;
	justify-content: flex-end;*/
}
.box-images-parallax .front-element {
	margin-left: 40px;
	position: relative;
margin-top: -20px;
	z-index: 2;
}
.box-images-parallax .back-element {
	position: absolute;
	left: 0;
	bottom: 50px;
	z-index: 1;
}

.why-choose-wrapper {
	background: url(../images/bg-5.jpg) center no-repeat !important;
}
.contact-wrapper {
	background: url(../images/contact-wrapper.html) no-repeat;
}
.contact-wrapper .input-style {
	border-radius: 0px !important;
	height: auto !important;
	padding: 15px 15px !important;
}
.padd-50 {
	padding: 50px 0;
}



.faq-wrapper input {
  position: a bsolute;
  opacity: 0;
  z-index: -1;
}


/* Accordion styles */


.tab {
  width: 100%;
  color: white;
  overflow: hidden;
	box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: #1a252f;
}
.tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all .35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background: #1a252f;
}

.faq-wrapper input:checked + .tab-label {
  background: #1a252f;
}
.faq-wrapper input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-wrapper input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
/*--------------
Animation
--------------*/

.slide-top {
	-webkit-animation: slide-top 5s linear infinite alternate both;
	animation: slide-top 5s linear infinite alternate both;
}
 @-webkit-keyframes slide-top {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 -webkit-transform: translateY(-80px);
 transform: translateY(-80px);
}
}
@keyframes slide-top {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 -webkit-transform: translateY(-80px);
 transform: translateY(-80px);
}
}
.slide-down {
	-webkit-animation: slide-down 3s linear infinite alternate both;
	animation: slide-down 3s linear infinite alternate both;
}
 @-webkit-keyframes slide-down {
 0% {
 -webkit-transform: translateY(70px);
 transform: translateY(70px);
}
 100% {
 -webkit-transform: translateY(30px);
 transform: translateY(30px);
}
}
@keyframes slide-down {
 0% {
 -webkit-transform: translateY(70px);
 transform: translateY(70px);
}
 100% {
 -webkit-transform: translateY(30px);
 transform: translateY(30px);
}
}

@-webkit-keyframes MOVE-BG {
0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
	100% {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
}
}