/*====================================================
    <--	spro Header Menu Section Css -->
======================================================*/
.header-top-area {
  background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  padding: 10px 0;
}
.header-top-left-info span i {
	margin-right: 6px;
}
.header-top-left-info i {
  color: #fff;
  font-size: 15px;
}
.header-top-left-info a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  margin-right: 26px;
}
.header-top-right-social {
	text-align: right;
}
.header-social a {
  display: inline-block;
  font-size: 15px;
  margin-left: 12px;
}
.header-social a i {
  background: transparent;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  font-size: 14px;
  display: inline-block;
}
.header-social a i:hover {
	background: #fff;
	color: #ffbf00;
	border: 1px solid #f26122;
	transition:.5s ;
	-webkit-transition:.5s ;
	-moz-transition:.5s ;
	-ms-transition:.5s ;
	-o-transition:.5s ;
}
.menu-logo img {
  margin-top: 5px;
}
.header-menu-section{
  padding: 18px 0px;
  background: #fff;
  position: relative;
}
.header-area {
	display: inherit;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu ul {
  display: inline-block;
}
.header-menu ul li {
  display: inline;
  position: relative;
  padding-bottom: 35px;
}
.header-menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: #16243E;
  font-size: 17px;
  font-weight: 500;
  margin-right: 14px;
  position: relative;
  transition: .5s;
}
.header-menu ul li a i{
  font-size: 12px;
  margin-right: 15px;
}
.header-menu ul li a:hover{
	color:#ffbf00;
}
.header-menu ul li a i {
  font-size: 12px;
  color:black;
  opacity: 0.5;
}
.header-contact {
  display: inline-block;
}
.header-contact-icon span i {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  text-align: center;
  border-radius: 50%;
  color: #fff;
}
.header-contact-content p {
  margin-bottom: 0;
}
.header-contact-content span a {
	text-decoration: none;
	color: #000;
	font-size: 18px;
	font-weight: 600;
}

.has-homemenu {
  width: 600px !important;
  padding: 30px 30px 10px 30px !important;
  box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px !important;
}
.has-homemenu .homemenu {
  position: relative;
  padding: 0px 10px;
  margin-bottom: 20px;
}
.has-homemenu .homemenu-thumb {
  position: relative;
}
.has-homemenu .homemenu-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffbf00;
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.has-homemenu .homemenu-thumb:hover::before {
  opacity: 0.2;
}
.has-homemenu .homemenu-btn {
  position: absolute;
  bottom: 16%;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.has-homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
}
.has-homemenu .homemenu-btn .menu-btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 5px;
  width: 128px;
  background-size: 200% auto;
  color:#fff;
  background: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  overflow: hidden;
}
.has-homemenu .homemenu-btn .menu-btn span{
  color: #fff;
}
.has-homemenu .homemenu-thumb:hover .homemenu-btn .menu-btn.show-1 {
  top: 42%;
  transform: translateY(-42px);
}
.has-homemenu .homemenu-thumb:hover .homemenu-btn .menu-btn.show-2 {
  top: 30%;
  transform: translateY(-30px);
}
/*====================================================
    <--	spro Sub Menu Section Css -->
======================================================*/
.header-menu ul li .sub-menu {
  text-align: left;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 260px;
  left: 0;
  top: 58px;
  padding: 10px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  z-index: 9;
  transition: .5s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.header-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.header-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.header-menu ul li .sub-menu li a {
  display: block;
  color: #0a2c3d;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0px;
  transition: .5s;
  border-bottom: 1px solid rgb(0,0,0,.09);
  margin: 5px 20px;
  position: relative;
}
.header-menu ul li .sub-menu li a:hover {
  color: #ffbf00;
}
.header-menu ul li .sub-menu li a:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0px;
  right: 0px;
  transform: scaleX(0);
  background: #ffbf00;
  transition: .5s;
}
.header-menu ul li .sub-menu li a:hover:before{
    transform: scaleX(1);
}
/*============= Sticky CSS ===============*/
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 10000;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px 0 15px;
  -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
}
.header-area.transparent .sticky-logo {
  display: none;
}
.header-area.transparent .is-sticky .sticky-logo {
  display: block;
}
.header-area.transparent .is-sticky .main-logo {
  display: none;
}
.header-area.transparent .is-sticky .header-main-menu ul li a{
  color:#000;
}
/*============= Sticky CSS End =====================*/
/*---====== Button =====---*/
.header-button {
  display: inline-block;
}
.header-button a {
  text-decoration: none;
  background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 44px;
  border-radius: 7px;
  transition: .5s;
}
.header-button a:hover{
  background-image:linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  color:#fff;
}
.about-button {
  display: inline-block;
}
.about-button a{
  display: inline-block;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  padding: 17px 49px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
}
.about-button i{
  margin-left: 6px;
}
.about-button a:hover{
  background-image:linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  color:#fff;
}
.logo-relative{
  position: relative;
}

/*====================================================
    <--	spro Hero Section Css -->
======================================================*/
.hero-section-area {
  background-image: url(../images/hero/shape-bg.png);
  height: 800px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #f26122;
}
.hero-title h5 {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	animation-delay: 0.3s;
	animation-duration: 0.5s;
  color: #ffbf00;
  margin-bottom: -4px;
}
.hero-title h2{
	font-size: 75px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -3px;
	text-transform: capitalize;
	margin-bottom: 50px;
	animation-delay: 0.5s;
	animation-duration: 0.7s;
  color: #fff;
}
.hero-title, .hero-title-2 p{
  margin-bottom: 62px;
  color: #fff;
}
.hero-button {
  display: inline-block;
}
.hero-button a {
  display: inline-block;
  background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  padding: 17px 49px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.hero-button i{
  margin-left: 6px;
}
.hero-button a:hover{
  background-image:linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  color:#fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.hero-thumb {
  position: relative;;
	animation-delay: 0.5s;
	animation-duration: 0.7s;
}
.hero-thumb-shape .shape-1 {
	border-radius: 0;
	position: absolute;
	bottom: 55px;
	right: -70px;
}
@keyframes tpswing{
  0% {
    transform: rotate(3deg);
}
100% {
  transform: rotate(-3deg);
}
}
.hero-thumb-shape .shape-2 {
	border-radius: 0;
	position: absolute;
	top: 2px;
	right: 2px;
	animation: tpswing 1s ease-in-out 0.1s forwards infinite alternate;
	transform-origin: bottom left;
	-webkit-animation: tpswing 1s ease-in-out 0.1s forwards infinite alternate;
}
@keyframes updown-two{
  0% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
100% {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
}
.hero-thumb-shape .shape-3 {
	border-radius: 0;
	position: absolute;
	bottom: 42px;
	left: 50px;
	animation: updown-two 2.6s linear 0s infinite alternate;
}
.hero-thumb img {
	border-radius: 228px 228px 0 0;
	max-width: 100%;
}
.hero-call-inner {
  display: flex;
  align-items: center;
}
.hero-call {
  display: inline-block;
}
.hero-call-content p{
  color: #fff;
	margin-left: 20px;
  margin-bottom: 0;
}
.hero-call-content span a{
  text-decoration: none;
  color:#fff;
  font-size: 20px;
  font-weight: 500;
  margin-left: 20px;
}
.hero-call-icon{
  margin-left: 25px;
}

.hero-thumb {
  text-align: center;
  display: flex;
  justify-content: center;
}

.hero-section-area-2 {
	background-image: url(../images/hero/home-2/shape-3.png);
	height: 800px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #f26122;
}

.hero-img-1 img{
  position: relative;
  border-radius: 0px 0px 0px 188.5px;
  z-index: 2;
}
.hero-img-2 img{
  position: relative;
  border-radius: 0px 190px 0px 0px;
  z-index: 2;
}
.hero-img-1{
  padding-right: 18px;
}
.hero-img-2{
  padding-top: 78px;
}

@keyframes updown-two {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero-shape-2 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  animation: updown-two 2.6s linear 0s infinite alternate;
}
.hero-shape-2 .shape-1 {
	position: absolute;
	top: 6%;
	right: -4%;
}
.hero-shape-2 .shape-2 {
  position: absolute;
  top: 52%;
  left: 43px;
  z-index: 0;
}
.process-trusted-content {
  position: absolute;
  top: 33px;
}
/*----- Hero Slider_list Nav Button -----*/
.slider_list .owl-nav{
  opacity: 0;
  transition: 1s;
}
.slider_list:hover .owl-nav{
  opacity: 1;
}
.slider_list:hover .owl-prev{
  left: 3%;
}
.slider_list:hover .owl-next{
  right: 3%;
}
.slider_list .owl-nav {
	position: relative;
	bottom: 496px;
	display: flex;
}
.owl-nav div {
	margin: 0 10px;
	font-size: 30px;
	background: #ffbf00;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 50%;
	color: #000;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	color: #fff;
}
.owl-prev {
  position: absolute;
  left: -13%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.owl-next {
  position: absolute;
  right: -13%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.owl-nav div:hover{
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color:#fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
/* Slider Active Content */
.owl-item.active .hero-title h5{
  animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
}
.owl-item.active .hero-title h2{
  animation: .85s ease-in-out 0s normal none 1 running fadeInDown;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation: .85s ease-in-out 0s normal none 1 running fadeInDown;
}
.owl-item.active .hero-title p{
  animation: .75s ease-in-out 0s normal none 1 running fadeInDown;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation: .75s ease-in-out 0s normal none 1 running fadeInDown;
}
.owl-item.active .hero-button{
  animation: .65s ease-in-out 0s normal none 1 running fadeInDown;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation: .65s ease-in-out 0s normal none 1 running fadeInDown;
}
.owl-item.active .hero-call{
  animation: .55s ease-in-out 0s normal none 1 running fadeInDown;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation: .55s ease-in-out 0s normal none 1 running fadeInDown;
}
.owl-item.active .hero-thumb{
  animation: .40s ease-in-out 0s normal none 1 running fadeInDown;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation: .40s ease-in-out 0s normal none 1 running fadeInDown;
}


/* Slider Active Content */
/*====================================================
      <--	spro About Section Css -->
======================================================*/
.a-relative{
  position: relative;
}
.about-shape{
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-title h3{
  font-size: 48px;
  margin-bottom: 13px;
  line-height: 1.2;
}
.section-title p{
  margin-bottom: 32px;
}
.section-title h5{
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffbf00;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: -4px;
}
.about-list{
  display: inline-block;
  margin-bottom: 20px;
}
.about-list ul li{
  list-style:none;
  float:left;
  width: 50%;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-list ul li i{
  font-size: 10px;
  margin-right: 7px;
  color: #ffbf00;
  display: inline-block;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
.about-button {
  display: inline-block;
}
.about-button a{
  display: inline-block;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  padding: 17px 49px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
}
.about-button i{
  margin-left: 6px;
}
.about-button a:hover{
  background-image:linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  color:#fff;
}

.about-button-2 {
  display: inline-block;
}
.about-button-2 a {
  display: inline-block;
  background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  padding: 17px 49px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
}
.about-button-2 i{
  margin-left: 6px;
}
.about-button-2 a:hover{
  background-image:linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  color:#fff;
}
.about-item-2-content h6 {
  margin-top: -10px;
}
.about-img img {
	border-radius: 20px;
}
.about-img::after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.about-thumb-img{
  position: relative;
}

.about-thumb-img .shape-1{
  position: absolute;
  bottom: 30%;
}
.about-thumb-img .shape-1 {
	position: absolute;
	bottom: -33%;
	right: 32px;
	filter: drop-shadow(0px 10px 60px rgba(0, 0, 0, 0.07));
	z-index: 2;
}
.about-thumb-img .shape-2 {
	position: absolute;
	bottom: -100px;
	left: -90px;
	z-index: -1;
}
.about-thumb-img .shape-3 {
	position: absolute;
	right: 30px;
	top: 30%;
	border-radius: 0;
}
@keyframes tptranslateX2{
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.about-thumb-img .shape-4 {
  position: absolute;
  right: 100px;
  top: 37px;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  padding: 14px 35px 2px 35px;
  border-radius:5px ;
  -webkit-border-radius:5px ;
  -moz-border-radius:5px ;
  -ms-border-radius:5px ;
  -o-border-radius:5px ;
  animation: tptranslateX2 4s forwards infinite alternate;
  -webkit-animation: tptranslateX2 4s forwards infinite alternate;
  animation: tptranslateX2 4s forwards infinite alternate;
}
.shape-4 span {
	color: #fff;
}
.about-thumb-img .shape-4 span{
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
.about-tumb-img .shape-4 p{
  font-size: 18px;
  font-weight: 700;
}
.about-thumb-img-2{
  position: relative;
}
.about-thumb-img-2 .img-2{
  position: absolute;
}
.about-thumb-img-2 .img-2 {
	position: absolute;
	top: 119px;
	right: 36px;
	overflow: hidden;
}
.about-thumb-img-2 .img-1 {
	margin-top: 70px;
	margin-left: -30px;
  z-index: 0;
}
.about-thumb-img-2 img{
  border-radius: 10px;
}
.about-thumb-img-2 .img-3 {
	position: absolute;
	top: 0;
	left: -60px;
  z-index: -1;
}

.about-progressbar {
	position: absolute;
	bottom: 2%;
	right: 45px;
	height: 268px;
	width: 232px;
	padding: 12px;
	text-align: center;
	border-radius: 10px;
	background: #ffbf00;
	box-shadow: 0px 0px 18px 5px rgba(0, 0, 0, 0.05);
	animation: updown-two 2.6s linear 0s infinite alternate;
}
.about-progressbar .circular {
  margin-bottom: 15px;
}
.about-progressbar .circular .knob{
    width: 54px;
    height: 33px;
    position: absolute;
    vertical-align: middle;
    margin-top: 33px;
    margin-left: -77px;
    border: 0px;
    background: none;
    font: bold 20px Arial;
    text-align: center;
    color: rgba(8, 7, 0, 0.836);
    padding: 0px;
    appearance: none;
}
.about-progressbar .circular .knob {
	color: #f26122 !important;
	font-size: 25px !important;
	font-weight: 700 !important;
	margin-left: -75px !important;
}
.about-item-2 {
	border-bottom: 1px solid #f26122;
	margin-bottom: 45px;
}
.about-item-2-icon {
	margin-right: 20px;
}
.about-item-2-icon img {
  width: 100%;
}
.about-user-item img {
	margin-left: 50px;
}
.about-user-item {
	margin-right: 20px;
}
.about-user-content {
	margin-top: 7px;
}
.about-user-content p {
	color: #ffbf00;
	margin-bottom: -17px;
}
/*====================================================
      <--	spro Service Section Css -->
======================================================*/
.service-section{
  background: #f6f6f9;
}
.services-box {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 45px 45px 70px 47px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 40px;
  margin-right: 20px;
}
.services-item-thumb {
  overflow: hidden;
  border-radius: 5px;
}
.services-item-icon span {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: inline-block;
  position: absolute;
  top: -32px;
  z-index: 2;
  left: 25px;
}
.services-item-content {
	padding-top: 15px;
}
.services-item-title h4 a {
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  color:#16243E;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.services-item-title p{
  margin-bottom: 30px;
}
.services-item-thumb img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: .5s;
}
.services-box:hover .services-item-thumb img{
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  border-radius: 5px;
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.services-item:hover .services-item-icon span {
  animation: icon-bounce 0.8s 1;
}
.services-item:hover .services-item-thumb img {
  transform: scale(1.08);
}


/*------- Services Section-02-------*/
.service-section-2{
  background-color: rgb(246, 246, 249);
}
.services-item-2 {
  position: relative;
  background: #fff;
  box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
  margin-top: 90px;
  z-index: 1;
}
.services-item-2:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 0;
	border-radius: 5px;
  background-image: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
	/*background: linear-gradient(3.65deg, #ffbf00 8.86%, rgba(14, 30, 42, 0) 82.23%);*/
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out;
	z-index: -1;
}
.services-item-2:hover:before{
  height: 100%;
  bottom: 0;
}
.services-thumb-2 img{
  margin-top: -80px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.service-item-2:hover .service-icon-2 span img {
  filter: none;
}
.services-icon-2 {
	position: absolute;
	right: 45px;
	top: 25%;
}
.services-icon-2 span {
  position: relative;
  width: 64px;
  height: 64px;
  line-height: 64px;
  background: #fff;
  display: inline-block;
  text-align: center;
  transition: all 0.3s 0s ease-out;
  border-radius: 7px;
}
.services-icon-2 span::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
	top: 0;
	left: 0;
	border-radius: 5px;
  transition: all 0.3s 0s ease-out;
}
.services-icon-2 span img {
	filter: brightness(0) invert(1);
	transition: 0.2s linear;
}
.service-item-2:hover .service-icon-2 span::before {
  height: 0;
}
.service-item-2:hover .service-icon-2 span img {
  filter: none;
}
.services-content-2 {
	padding: 40px 80px 55px 30px;
}
.services-content-2 p {
	position: relative;
  margin-bottom: 6px;
}
.services-content-2 p::after {
	position: absolute;
	content: "";
	background: #f26122;
	height: 1px;
	width: 50px;
	left: 0;
	top: -8px;
}
.services-title-2 h3 a {
	font-weight: 600;
	font-size: 24px;
	text-transform: capitalize;
	line-height: 33.6px;
	letter-spacing: -0.96px;
  text-decoration: none;
}
.services-btn-2 a {
	position: absolute;
	background: #fff;
  display: inline-block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	left: 50%;
	transform: translateX(-50%);
	bottom: -25px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  transition: all 0.3s 0s ease-out;
}
.services-btn-2 a i{
  color: #ffbf00;
}
.services-btn-2 a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.services-item-2:hover .services-content-2 p,
.services-item-2:hover .services-title-2 h3 a{
  color: #fff;
}
.services-item-2:hover .services-content-2 p::after{
  background: #fff;
}

/*-----Services_list Nav Button -----*/
.services_list.owl-nav{
  opacity: 0;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.services_list .owl-prev{
  left: 88%;
}
.services_list .owl-next{
  right: 0%;
}

.services_list:hover .owl-nav{
  opacity: 1;
}

.services_list .owl-nav {
	position: relative;
	bottom: 690px;
	display: flex;
}
.owl-nav div {
	margin: 0 10px;
	font-size: 30px;
	background: #ffbf00;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	border-radius: 50%;
	color: #000;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
	color: #fff;
}
.owl-prev {
  position: absolute;
  left: -13%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.owl-next {
  position: absolute;
  right: -13%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.owl-nav div:hover{
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color:#fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

/*====================================================
      <--	spro Brand Section Css -->
======================================================*/
.brand-area-section{
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  padding: 80px 103px;
}

/*====================================================
      <--	spro Project Section Css -->
======================================================*/
.project-tab {
	margin-top: 18px;
}
.project-tab .nav-pills .nav-item .nav-link {
  background: #f6f6f9;
  border-radius: 45px;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Jost', sans-serif;
  color: #16243E;
  letter-spacing: -0.8px;
  padding: 11px 31px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.project-tab .nav-pills .nav-item:not(:last-of-type){
  margin-right: 20px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.project-tab .nav-pills .nav-item .nav-link.active {
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
	color: #fff;
}
.project-thumb {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.project-thumb img {
	border-radius: 5px;
	max-width: 100%;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out;
}
.project-thumb::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	width: 100%;
	height: 100%;
	background: linear-gradient(3.65deg, #f26122 5.86%, rgba(14, 30, 42, 0) 82.23%);
	border-radius: 5px;
	z-index: 1;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
.project-thumb:hover img{
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}
.project-thumb:hover::before{
  opacity: 1;
}
.project-thumb:hover .project-thumb-info{
  bottom: 35px;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.project-thumb-info {
	position: absolute;
	bottom: -20px;
	left: 40px;
	right: 40px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s 0s ease-out;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
}
.project-thumb-info p {
	color: #f6f6f9;
	margin-bottom: -16px;
}
.project-thumb-title a{
  text-decoration: none;
}
.project-thumb-info a:hover{
  color:#fff;
}
.project-thumb-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.96px;
  color: #fff;
  margin-top: 20px;
}
/*--------- Project Tab-2 ---------*/
.project-tab-2 {
	margin-top: 105px;
}

/*====================================================
      <--	spro Process Section Css -->
======================================================*/
.process-section-area{
  background: #f6f6f9;
}
.process-item-icon {
  padding: 24px 40px 24px 20px;
  border-left: 1px solid #ffbf00;
}
.process-item-title h4{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing:-0.96px;
}
.process-thumb{
  position: relative;
}
.process-thumb img {
	position: relative;
	z-index: 1;
}
.process-thumb .shape-1 {
	position: absolute;
	right: 0;
	bottom: -82%;
	z-index: 0;
}

@keyframes updown-two {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.process-counter {
  position: relative;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  width: 270px;
  bottom: -155px;
  box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
  border-radius: 80px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;
  -o-border-radius: 80px;
  animation: updown-two 2s linear 0s infinite alternate;
}
.process-counter-icon {
  padding: 12px 0 0 12px
}

.process-counter-icon span i{
  font-size: 28px;
  color:#ffbf00;
}
.process-counter-icon span{
  width: 65px;
  height: 65px;
  line-height: 72px;
  text-align: center;
  background:#fff;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.process-counter-title span {
	color: #fff;
}
.process-counter-title{
  margin-left: 15px;
}
.process-counter-title h4 {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -0.8px;
	font-family: 'Kumbh Sans', sans-serif;
	color: #fff;
}
.process-counter-title p{
  font-size: 18px;
  font-family: 'Jost', sans-serif;;
  color: #fff;
}
.process-thmumb-wrapper {
	position: relative;
	margin-left: 10px;
}

.process-trusted{
  position:absolute;
  top: 45px;
  right: 95px;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  width: 202px;
  height: 202px;
  line-height: 202px;
  color:#fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 2;
}
@-webkit-keyframes tp-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes tp-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.process-trusted::before {
	position: absolute;
	content: "";
	top: 14px;
	left: 14px;
	height: 173px;
	width: 173px;
	border: 1px #fff dashed;
	border-radius: 50%;
	animation: tp-spin 10s cubic-bezier(.68,-0.55,.27,1.55) infinite;
}
.process-trusted span{
  display: inline-block;
}
.process-trusted p {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-top: -16px;
}
.process-trusted span {
	position: absolute;
	top: 12%;
	left: 0;
	right: 0%;
	font-size: 42px;
	font-weight: 700;
  color:#fff;
}

/*===== Trusted =====*/
.hero-thumb-2 {
  position: relative;
}
.process-trusted-inner{
  position:absolute;
  top: 55%;
  right: 25%;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  width: 165px;
  height: 165px;
  color:#fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 2;
}
.process-trusted-inner:before{
	position: absolute;
	content: "";
	top: 14px;
	left: 14px;
	height: 137px;
	width: 137px;
	border: 1px #fff dashed;
	border-radius: 50%;
	animation: tp-spin 10s cubic-bezier(.68,-0.55,.27,1.55) infinite;
}
@-webkit-keyframes tp-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes tp-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.process-trusted-2 span{
  display: inline-block;
}
.process-trusted-2 h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 25px;
  margin-top: 0;
}

.process-trusted-2 span {
	font-size: 13px;
	font-weight: 700;
}
.process-trusted-content span {
	color: #fff;
	font-size: 28px;
}
/*------ Process Section-2 css ---------*/
.process-wrapper-2{
  position: relative;
}
.process-arrows .shape-1 {
	position: absolute;
	top: 30px;
	left: 18%;
}
.process-arrows .shape-2 {
	position: absolute;
	top: 30px;
	left: 44%;
}
.process-arrows .shape-3 {
	position: absolute;
	top: 30px;
	left: 69%;
}
.process-item-2-icon{
  margin-bottom: 40px;
}
.process-item-2-content h4{
  margin-bottom: 20px;
}
.process-item-2-icon span {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 80px;
	background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
	line-height: 80px;
	text-align: center;
	border-radius: 5px;
}
.process-item-2-icon span i {
	position: absolute;
	width: 30px;
	height: 30px;
	background:#ffbf00;
	line-height: 30px;
	color: #fff;
	text-align: center;
	left: -8px;
	top: -13px;
	border-radius: 3px;
}



/*----- team-vedio-section ------*/
.team-video-area{
  position: relative;
}

.team-video-bg::before {
	position: absolute;
  content: "";
  height: 47%;
  width: 100%;
  bottom: 0;
  left: 0;
  background:#f26122;
  z-index: -1;
}
.team-video img {
	border-radius: 5px;
}
.team-video{
  position: relative;
}
.team-video .play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.play-btn {
  position: relative;
  width: 140px;
  height: 140px;
  line-height: 140px;
  background: transparent;
  text-align: center;
  font-size: 32px;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #fff;
}
.play-btn:hover{
  background:#ffbf00;
  border: 2px solid #ffbf00;
}
.team-video::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	height: 100%;
	width: 100%;
	border-radius: 5px;
	background:linear-gradient(3.65deg, #ffbf00 5.86%, rgba(14, 30, 42, 0) 82.23%);
}

/*====================================================
      <--	spro Faq Section Css -->
======================================================*/
.faq-section-area{
  background: url(../images/faq/bg-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.faq-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 76%;
  z-index: -1;
  background-color: #f26122;
}
.faq-section-title {
	padding-right: 42px;
}
.faq-section-title span{
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffbf00;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: -4px;
}
.faq-section-title h3 {
	color: #fff;
	font-weight: 600;
	font-size: 48px;
	letter-spacing: -0.92px;
	line-height: 1.2;
	margin-bottom: 20px;
	text-transform: capitalize;
}
.faq-section-title p{
  color:#fff;
  margin-bottom: 35px;
}
.faq-counter-title{
  margin-left: 15px;
}
.faq-counter-icon span{
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background:#ffbf00;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.faq-counter{
  background:#fff;
  margin-right: 50px;
  padding: 0px 24px 0px 24px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.faq-counter-title h4 span{
  color:#0E1E2A;
}
/*----	spro Faq Section Css -----*/
.accordion-item{
  border: none;
}
.faq-tab-content{
  background: #fff;
  padding: 80px 60px 60px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.accordion{
  border: none;
}
.fa-accordion .accordion-item{
  font-size: 20px;
  font-weight: 500;
  border:1px solid #e3e3e3;
  margin-bottom: 20px;
}
.accordion-item.faq-active .accordion-header {
  background: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
}
.fa-accordion .accordion-button:not(.collapsed){
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color:#16243E;
}
.accordion-item h2 button:focus{
  outline: 0;
  border: none;
  box-shadow: none;
}
.accordion-item h2{
  margin: 0;
}
.accordion .accordion-button{
  font-size: 20px;
  font-weight: 600;
}
.accordion-body p {
	font-size: 16px;
}
/*====================================================
      <--	spro 0ur Team Section Css -->
======================================================*/
.our-team-box{
  position: relative;
}
.our-team-img::before{
  position: absolute;
  content:"";
  background: linear-gradient(3.65deg, #f26122 5.86%, rgba(0, 77, 110, 0) 82.23%);
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.our-team-box.mt {
  margin-top: -42px;
}
.our-team-img{
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.our-team-img img{
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.our-team-box:hover .our-team-img img{
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transition: all 0.3s 0s ease-out;
}
.our-team-social a{
  position: relative;
  content:"";
  background:#fff;
  display: block;
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color:#0E1E2A;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.our-team-social a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.our-team-social a:hover {
  color: #fff;
}
.our-team-social {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
}
.our-team-social a:hover::after {
  opacity: 1;
}
.our-team-social .icon-1 {
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}
.our-team-social .icon-2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.4s ease-in-out;
}
.our-team-social .icon-3 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.5s ease-in-out;
}
.our-team-social .icon-4 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.6s ease-in-out;
}
.our-team-box:hover .our-team-social .icon-1 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.our-team-box:hover .our-team-social .icon-2 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.our-team-box:hover .our-team-social .icon-3 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.our-team-box:hover .our-team-social .icon-4 {
  visibility: visible;
  transform: translateX(-30px);
  opacity: 1;
}
.our-team-info {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}

.our-team-title a {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}
/*
.our-team-title a {
	background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
	background-size: 0% 1, 0 1px;
	background-position: 100% 100%, 0 100%;
	background: no-repeat;
	transition: background-size 0.3s linear;
}
.our-team-title a:hover{
  background-size: 0 1px, 100% 1px;
}*/
.our-team-title p{
  color:#fff;
}





/*------- Team Section-2-------*/
.p-relative{
  position: relative;
}
.team-overlay-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 600px;
	background: #f26122;
	z-index: -1;
}
.team-bg img {
	max-width: 100%;
}
.team-bg-2 {
	position: absolute;
	top: -27%;
	left: 0;
	background-repeat: no-repeat;
	z-index: -1;
}
.team-title{
  color:#fff;
}
.team-item-2{
  position: relative;
}
.team-item-thumb-2 img{
  overflow: hidden;
  border-radius: 5px;
}
.team-item-thumb-2 img {
  border-radius: 5px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.team-item-2:hover .team-item-thumb-2 img {
  transform: scale(1.08);
}
.team-item-thumb-2 .shape {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 0;
}
.team-item-2:hover .team-social-2 .icon-1 {
  visibility: visible;
  transform: translateY(-40px);
  opacity: 1;
}
.team-item-2:hover .team-social-2 .icon-2 {
  visibility: visible;
  transform: translateY(-40px);
  opacity: 1;
}
.team-item-2:hover .team-social-2 .icon-3 {
  visibility: visible;
  transform: translateY(-40px);
  opacity: 1;
}
.team-item-2:hover .team-social-2 .icon-4 {
  visibility: visible;
  transform: translateY(-40px);
  opacity: 1;
}
.team-item-thumb-2::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	width: 100%;
	height: 100%;
	z-index: 1;
	border-radius: 5px;
	background: linear-gradient(3.65deg, #f26122 5.86%, rgba(0, 77, 110, 0) 82.23%);
}
.team-item-thumb-2 .shape {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius:0;
  -webkit-border-radius:0;
  -moz-border-radius:0;
  -ms-border-radius:0;
  -o-border-radius:0;
}
.team-item-thumb-2 {
	overflow: hidden;
	border-radius: 5px;
}
.team-item-thumb-2 a img {
  width: 100%;
}
.team-social-2 a {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	display: inline-block;
	text-align: center;
	margin-right: 5px;
	border-radius: 5px;
  color:#16243E;
}
.team-social-2 a:hover {
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color:#fff;
}
.team-social-2 {
	position: absolute;
	bottom: 21%;
	left: 50%;
	transform: translateX(-50%);
  z-index: 1;
}
.team-social-2 .icon-1 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}
.team-social-2 .icon-2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.4s ease-in-out;
}
.team-social-2 .icon-3 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.5s ease-in-out;
}
.team-social-2 .icon-4 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.6s ease-in-out;
}
.team-info-title a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.team-info-title a {
	background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s linear;
}
.team-info-title a:hover {
  background-size: 0 1px, 100% 1px;
}
.team-info-2 {
	position: absolute;
	bottom: 26px;
	left: 33%;
	margin: 0 auto;
	z-index: 1;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out;
}
.team-info-2 p {
  color: #fff;
  text-align: center;
}
/*====================================================
      <--	spro Testimonial Section Css -->
======================================================*/
.testimonial-area-section{
  position: relative;
}
.testimonial-bg {
	position: absolute;
	right: 0;
	top: 20%;
  z-index: 1;
}
.testimonial-bg-color::after{
  position: absolute;
  content:"";
  background: #f26122;
  top: 0;
  right: 0;
  width: 49%;
  height: 100%;
  z-index: 0;
  clip-path: polygon(42% 1%, 100% -159%, 100% 100%, 0% 100%);
}
.testimonial-item{
  padding: 34px 40px 39px 30px;
  position: relative;
  z-index: 1;
}
.testimonial-img img{
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.testimonial-rating span.color i {
	color: #FFA800;;
}
.testimonial-rating{
  margin-bottom: 15px;
}
.testimonial-title span{
  color:#16243E;
}
.testimonial-box {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
  margin-right: 20px;
  margin-top: 30px;
}
.testimonial-content{
  position: relative;
  margin-left: 20px;
}

.testimonial-quote {
	position: absolute;
	right: 40px;
	bottom: -40px;
  
}
.testimonial-quote i{
  font-size: 50px;
  color:#f26122;
}


/*-----testimonial_list Nav Button -----*/
.testimonial_list.owl-nav{
  opacity: 0;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.testimonial_list .owl-prev{
  left: -10%;
}
.testimonial_list .owl-next{
  right: -10%;
}
.testimonial_list:hover .owl-nav{
  opacity: 1;
}
.testimonial_list .owl-nav {
	position: relative;
	bottom: 220px;
	display: flex;
}
.owl-nav div {
  margin: 0 10px;
  font-size: 18px;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  color: #fff;
}
.owl-prev {
  position: absolute;
  left: -13%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.owl-next {
  position: absolute;
  right: -13%;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.owl-nav div:hover{
  background-image:linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  color:#fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}



/*----- Testimonial Sectioon-2 -----*/
.testimonial-box-2 {
	margin-top: 45px;
}
.testimonial-box-2 {
  position: relative;
  background: #fff;
  border-radius: 0px 5px 5px 0px;
  margin: 16px 15px 27px 15px;
  border: 1px solid #efeff1;
  padding: 52px 29px 0;
  text-align: center;
}
.testimonial-content-2 {
  padding: 28px 3px;
  text-align: center;
}
.testimonial-title-2 {
	margin-bottom: 20px;
}
.testimonial-img-2 img {
  margin: auto;
}
.testimonial-quote-2 {
  position: absolute;
  right: 45%;
  top: 47%;
}
.testimonial-quote-2 i {
  font-size: 50px;
  color: #ffbf00;
}
.testimonial_list_two.owl-nav{
  opacity: 0;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.testimonial_list_two .owl-prev{
  left: 88%;
}
.testimonial_list_two .owl-next{
  right: 0%;
}

.testimonial_list_two:hover .owl-nav{
  opacity: 1;
}
.testimonial_list_two .owl-nav {
  position: absolute;
  top: -20%;
  right: 7%;
  display: flex;
}

/*====================================================
      <--	spro Blog Section Css -->
======================================================*/
.blog-item-box{
  background:#fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  margin-top: 30px;
}
.blog-item-img img {
	width: 100%;
}
.blog-item-date h4 {
	font-size: 20px;
	font-weight: 600;
  color:#f26122;
	margin-bottom: -10px;
}
.blog-item-date p{
  color:#f26122;

}
.blog-item-date {
	position: absolute;
	top: 45%;
	right: 24px;
  background:#fff;
  padding: 0px 25px;
	text-align: center;
  border-bottom: 2px solid #f26122;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.blog-item-content{
  padding: 40px;
}
.blog-item-info span i {
	color: #f26122;
	font-size: 19px;
}
.blog-item-info a {
	text-decoration: none;
  margin-right: 25px;
}
.blog-item-info a:hover{
  color:#16243E;
}
.blog-item-title {
	margin-top: 20px;
}
.blog-item-title a {
	text-decoration: none;
	font-size: 23px;
	color:#16243E;
  font-weight: 700;
  background-image: linear-gradient(#03041C, #03041C), linear-gradient(#03041C, #03041C);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  -webkit-transition: background-size 0.4s linear;
  -moz-transition: background-size 0.4s linear;
  -ms-transition: background-size 0.4s linear;
  -o-transition: background-size 0.4s linear;
}
.blog-item-title a:hover {
  background-size: 0 1px, 100% 1px;
}
.bolg-item-btn {
	margin-top: 25px;
  position: relative;
}
.bolg-item-btn::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	height: 1px;
	width: 185px;
	background: #f26122;
}
.bolg-item-btn a {
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
.bolg-item-btn a i {
	font-size: 13px;
  margin-right: 8px;
}
.bolg-item-btn a:hover {
	color: #f26122;
}
/*---------- Blog-2 Section ----------*/
.blog-item-date-2 {
	position: absolute;
	top: 40%;
	right: 0px;
	font-size: 18px;
	color: #fff;
	background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
	text-align: center;
	display: inline-block;
	padding: 15px 30px 15px 30px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
  z-index: 1;
}
.blog-item-date-2 span {
	color: #fff;
}
.blog-item-title p {
	margin-top: 15px;
  color:#0E1E2A;
}
.bolg-item-btn-2 a {
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}
.blog-item-btn-2 a  {
  transform: translateY(1px);
  display: inline-block;
  margin-left: 3px;
}
.bolg-item-btn-2 a i {
	font-size: 13px;
  margin-right: 8px;
}
.bolg-item-btn-2 a:hover {
	color: #f26122;
}
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  100% {
    opacity: 1;
  }
}
.blog-item-btn-2 a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.blog-item-box{
  position: relative;
}

.blog-item-img {
  position: relative;
  overflow: hidden;
}
.blog-item-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.blog-item-box:hover .blog-item-img::after {
	left: 70%;
}
/*====================================================
      <--	spro CTA Section Css -->
======================================================*/
.cta-section-area {
  position: relative;
  z-index: 2;
}
.cta-bg-wrapper {
  padding: 82px 60px;
  position: relative;
}
.cta-bg-wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  border-radius: 5px;
  z-index: -1;
}
.cta-bg::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #f26122;
  z-index: -1;
}
.cta-email input {
  border: none;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  height: 70px;
  padding-left: 25px;
}
.cta-email input::placeholder{
  font-weight: 400;
  font-size: 16px;
  color: #636363;
}
.cta-eamil{
  position: relative;
}
/***----*/
.cta-email button {
	position: absolute;
	top: 12px;
	right: 7px;
	padding: 13px 30px;
	border-radius: 10px;
	background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
	border: none;
}
.cta-email {
  position: relative;
}
.cta-email input:focus {
  border: none;
  outline: 0;
}
.cta-email button span {
  font-family: 'Jost', sans-serif;;
  font-weight: 600;
  font-size: 16px;
  display: inline;
  letter-spacing: 0.8px;
  color: #fff;
}
.cta-email button:hover {
  background-image: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
}
.cta-email button span:hover{
  color:#16243e;
}

.cta-title {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.54px;
  color: #fff;
  margin-bottom: 0;
}

/*------- Cta Section-02 css --------*/
.cta-section-area-2 {
  background:url(../images/cta/home-2/bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.bg-overlay{
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
}
.cta-title-2 h3{
	font-weight: 600;
	font-size: 48px;
	letter-spacing: -1.92px;
	color: #fff;
	margin-bottom: 20px;
}

.cta-title-2 span {
	color: #fff;
}

.cta-title-2 p, span {
  color: #333F4D;
}
.cta-title-2 span a{
  color:#fff;
  font-size: 22px;
  text-decoration: none;
}
.cta-title-2 p {
  color: #fff;
}


.cta-email-2 input {
	border: none;
	height: 80px;
	padding-right: 37%;
	border-radius: 5px;
	font-size: 16px;
	padding-left: 25px;
  width: 100%;
}
.cta-email-2 {
	margin-top: 35px;
  position: relative;
}
.cta-email-2 input::placeholder, .cta-email-2 input:focus {
  font-weight: 400;
  font-size: 18px;
  color: #636363;
}
.cta-email-2 button {
	position: absolute;
	padding: 15px 47px;
	top: 11px;
	right: 10px;
	border-radius: 5px;
	border: none;
  background-image:linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color:#fff;
}
.cta-email-2 button:hover{
  background:#ffbf00;
  color:#0E1E2A;
  transition: .05s;
  -webkit-transition: .05s;
  -moz-transition: .05s;
  -ms-transition: .05s;
  -o-transition: .05s;
}
/*====================================================
      <--	spro counter Section Css -->
======================================================*/
.counter-overlay::before {
  position: absolute;
  content: "";
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #F4F5FA;
  z-index: -2;
}
.counter-bg::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 85%;
	background: #f26122;
	top: 0;
	left: 0;
	z-index: -1;
}
.counter-shape .shape-1 {
	position: absolute;
	top: 30px;
	left: 30px;
}
.counter-shape .shape-2 {
	position: absolute;
	left: 10%;
	bottom: 20px;
}
.counter-shape .shape-3 {
	position: absolute;
	right: 17%;
	top: 20px;
}
.counter-shape .shape-4 {
	position: absolute;
	right: 15%;
	bottom: 20px;
}
.counter-icon span {
	width: 80px;
	height: 80px;
	line-height: 80px;
	background: rgba(255, 255, 255, 0.1);
	margin-right: 20px;
	display: inline-block;
	text-align: center;
	border-radius: 50px;
}
.counter-title h4 {
	font-weight: 600;
	font-size: 48px;
	letter-spacing: -1.92px;
	color: #fff;
  margin-bottom: 10px;
}
.counter-content p{
  color:#fff;
}
.counter-title h4 span {
	color: #fff;
}
/*====================================================
      <--	spro Contact Section Area Css -->
======================================================*/
.contact-overlay::before {
	position: absolute;
	content: "";
	background: #F4F5FA;
	height: 80%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.contact-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80%;
	z-index: -1;
	background-repeat: no-repeat;
}
.contact-wrapper {
	padding: 47px 60px 28px 60px;
	background: #fff;
	box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
	margin-bottom: 30px;
	margin-right: 30px;
}
.contact-title {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 35px;
}
.contact-form .form-input {
	position: relative;
}
.contact-form .form-input:focus{
  border: none;
}
.contact-form input::placeholder {
	font-size: 16px;
	font-weight: 400;
}
.contact-form .form-input span i{
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 18px;
	font-weight: 900;
  color:#ffbf00;
}
.contact-form input {
	border: none;
	font-size: 16px;
	font-weight: 900;
	border-radius: 0;
	border-bottom: 1px solid #f26122;
	margin-top: 20px;
}
input.form-control:focus {
  border-bottom: 1px solid #ffbf00 !important;
  box-shadow: none;
  outline: 0;
  border-color: #ffbf00;
}
.form-input textarea:focus {
  border: 1px solid #ffbf00;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="url"], textarea {
  outline: none;
  background-color: #fff;
  height: 85px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: #16243E;
  padding-left: 26px;
  padding-right: 26px;
  border-bottom: 1px solid #E0E2E3;
}
.contact-form .wide {
  height: 56px;
  border: none;
  margin-bottom: 40px;
  border-radius: 0;
  padding-left: 26px;
  line-height: 52px;
  font-size: 16px;
  font-weight: 400;
  color: #95999D;
  border-bottom: 1px solid #E3E3E3;
}
.nice-select.wide {
	width: 100%;
}
.wide {
	border-bottom: 1px solid #ffbf00;
	width: 100%;
	border: none;
	background: none;
}
.contact-form .wide::after {
  right: 36px;
  background: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /*text-fill-color: transparent;*/
}
.contact-form textarea {
  height: 150px;
  resize: none;
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  font-size: 16px;
  font-weight: 400;
}
.contact-form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
}
.contact-form textarea:focus {
  border: 1px solid #ffbf00;
}
.contact-form .form-input .form-input-btn {
  width: 100%;
  border-radius: 5px;
  padding: 22px 0;
  margin-top: 30px;
}
.contact-input input:focus{
  border: 1px solid #ffbf00;
}
.contact-breadcumb-content textarea:focus{
  border: 1px solid #ffbf00;
}
.form-input-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff;
  padding: 16px 44px;
  border-radius: 45px;
  transition: all 0.4s ease-in;
  background-size: 200% auto;
  overflow: hidden;
  border:none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.contact-form-img img{
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
/*====================================================
      <--	spro Contact Breadcumb Section Area Css -->
======================================================*/
.contact-breadcumb-box{
  position: relative;
  padding: 80px 80px 75px;
  background: #fff;
  box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
}
.contact-breadcumb-social {
	position: absolute;
	bottom: 11%;
	right: 0%;
	background: #f26122;
	padding: 20px 16px 18px 20px;
}
.contact-breadcumb-social a {
	display: block;
  font-size: 16px;
  color:#fff;
}
.contact-breadcumb-social a:not(:last-of-type) {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-breadcumb-title h3 {
	font-size: 48px;
	font-weight: 600;
  margin-bottom: 20px;
}
.contact-breadcumb-title p{
  margin-bottom: 40px;
}
.contact-breadcumb-item-title h3 {
	font-size: 20px;
}
.contact-breadcumb-content input::placeholder, .contact-breadcumb-content textarea::placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #16243E;
}
.contact-breadcumb-content .contact-input input, .contact-breadcumb-content .contact-input textarea {
	height: 80px;
	margin-bottom: 30px;
	border-radius: 5px;
	resize: none;
	font-size: 16px;
}
/***----*/
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="url"], textarea {
	outline: none;
	background-color: #fff;
	height: 77px;
	width: 100%;
	line-height: 56px;
	font-size: 14px;
	color: #16243E;
	padding-left: 26px;
	padding-right: 26px;
	border: 1px solid #e3e0e0;
}
.contact-breadcumb-content textarea {
	height: 220px;
}
.contact-breadcumb-btn {
	margin-top: 37px;
}
.contact-breadcumb-btn:hover button{
  background: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.contact-breadcumb-btn .contact-btn {
	width: 100%;
	padding: 22px 44px;
	border-radius: 5px;
}
.contact-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
  color: #fff;
  padding: 16px 44px;
  border-radius: 45px;
  transition: all 0.4s ease-in;
  background-size: 200% auto;
  overflow: hidden;
  outline: none;
  border:none;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.contact-breadcumb-wrapper {
	padding-top: 136px;
	padding-left: 40px;
}
.contact-breadcumb-item {
	padding: 30px 105px 30px 30px;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 5px;
}
.contact-breadcumb-item-icon {
	margin-right: 30px;
}
.contact-breadcumb-item-icon span {
	color: #f26122;
	font-size: 26px;
}
.contact-breadcumb-item-icon span i {
	margin-top: 20px;
}
.contact-breadcumb-item-title {
	font-size: 20px;
	margin-bottom: 12px;
}
.contact-breadcumb-item-content a {
	font-size: 16px;
	font-weight: 400;
	color: #0E1E2A;
	display: block;
  text-decoration: none;
}
/*====================================================
      <--	spro Footer Section Area Css -->
======================================================*/
.footer-section-area {
  background: url(../images/footer/bg-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f26122;
  padding-bottom: 40px;
}
.footer-main-area{
  margin-bottom: 90px;
  display: block;
}
.footer-widget-log {
	padding-top: 10px;
	margin-bottom: 20px;
}
.footer-widget-content p {
  color: #fff;
  margin-bottom: 20px;
  width: 84%;
}
.footer-widget-social{
  padding-top: 10px;
}
.footer-widget-logo {
  margin-bottom: 20px;
}
.footer-widget-social a {
  margin-right: 25px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.footer-widget-social a i{
  font-size: 20px;
  color:#fff;
}
.footer-widget-social a:hover{
  background:#ffbf00;
  color:#fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.footer-widget-title h3{
  color:#fff;
  margin-bottom: 20px;
  font-size: 25px;
}
.footer-widget-content a {
	text-decoration: none;
}
.footer-widget-content ul {
  margin-left: 18px;
}
.footer-widget-content ul li {
  margin-bottom: 15px;
}
.footer-widget-content ul li::marker{
  color: #fff;
  font-size: 14px;
}
.footer-widget-content ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.footer-widget-content ul li a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.footer-widget-content ul li a:hover:before{
  width: 100%;
}
.footer-widget-item{
  position: relative;
}
.footer-widget-item a:before{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}

.footer-widget-item a:hover:before{
  width: 100%;
}
.footer-item-title {
	margin-bottom: 15px;
}
.footer-item-title a{
  color:#fff;
  font-size: 20px;
  text-decoration: none;
  display: block;
}
.footer-item-title a {
	background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
	background-size: 0% 1px, 0 1px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	position: relative;
	-webkit-transition: background-size 0.4s linear;
	-moz-transition: background-size 0.4s linear;
	-ms-transition: background-size 0.4s linear;
	-o-transition: background-size 0.4s linear;
  display: inline-block;
}
.footer-item-title span {
  color: #fff;
  font-size: 15px;
  display: block;
}
.footer-item-title span i{
  color:#fff;
  margin-right: 5px;
  font-size: 14px;
}
.footer-widget-contact {
  border: 1px solid #333F4D;
  padding: 28px 30px 4px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.footer-widget-contact-inner i{
  color:#fff;
  margin-right: 5px;
}
.footer-widget-contact-inner a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

.footer-widget-copyright-inner p{
  color:#fff;
  
}
.footer-widget-copyright-inner a{
  color:#fff;
  text-decoration: none;
  margin-right: 35px;
}
/*========= Footer Copyright Area =========*/
.footer-copyright-area {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copyright-inner p {
	color: #fff;
	margin-bottom: -28px;
}
.footer-copyright-inner a {
	color: #fff;
	text-decoration: none;
	margin-right: 30px;
	font-size: 18px;
}
.footer-copyright-inner a:hover{
  color:#ffbf00;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}


/*--- =============== Scroll Top ============ ---*/
.scroll-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 30px;
  color: #ffffff;
  background-image: -moz-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  background-image: -webkit-linear-gradient(0deg, #d1651a 0%, #c1282a 100%);
  z-index: 9999;
  width: 45px;
  text-align: center;
  height: 45px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  border-radius: 10px; 
}
.scroll-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
}
.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%; 
}
.scroll-area .go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  background-image: -ms-linear-gradient(0deg, #f26122 0%, #ffbf00 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}
.scroll-area .go-top:focus, .scroll-area .go-top:hover {
  color: #fff; 
}
.scroll-area .go-top:focus::before, .scroll-area .go-top:hover::before {
      opacity: 1;
      visibility: visible; 
}
.scroll-area .go-top:focus i:first-child, .scroll-area .go-top:hover i:first-child {
      opacity: 0;
      top: 0;
      visibility: hidden;
}
.scroll-area .go-top:focus i:last-child, .scroll-area .go-top:hover i:last-child {
      opacity: 1;
      visibility: visible;
      top: 50%; 
}
.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 30px;
  border-radius:100%;
}
.top-wrap {
position: relative; 
}
.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #ffbf00;
}
.top-wrap .go-top-button i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}
.top-wrap .go-top-button::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  border-radius: 100%;
}
.top-wrap .go-top-button:hover {
  background-image: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
  color: #fff; 
}

/*-------------- Details All Page CSS ------------------- */


/* --------------- Service Details CSS --------------------- */
.breadcurmb-area{
  background-color: #f26122;
}
.p-relative{
  position: relative;
}
.breadcurmb-bg{
  position: absolute;
  background-image: url(../images/breadcrumb/bg.png);
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.breadcurmb-content {
  z-index: 2;
  position: relative;
}
.breadcurmb-title h3 {
	font-size: 48px;
	color: #fff;
	font-weight: 600;
}
.breadcurmb-list span a {
  font-size: 20px;
  font-weight: 500;
	color: #fff;
	text-decoration: none;
}
.breadcurmb-list span {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}
.services-details-thumb {
	margin-bottom: 40px;
}
.services-details-thumb img {
	border-radius: 5px;
	width: 100%;
}
.services-details-title h3 {
	position: relative;
	font-size: 48px;
	font-weight: 600;
	margin-left: 20px;
	margin-bottom: 35px;
}
.services-details-title h3::before {
	position: absolute;
	content: "";
	background: #ffbf00;
	width: 2px;
	height: 60px;
	top: -8px;
	left: -20px;
}
.services-details-box {
	margin-top: 60px;
}
.services-details-item{
  position: relative;
  padding: 60px 30px 16px;
  border-radius: 5px;
  background: #F6F6F9;
}
.services-details-subtitle h4 {
  font-size: 25px;
	font-weight: 600;
	margin-bottom: 12px;
}
.services-details-icon{
  position: absolute;
  top: -20px;
  right: 30px;
}
.services-details-icon img {
	height: 65px;
	width: 65px;
	display: inline-block;
	border: 1px solid #ffbf00;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
}
.services-details-subtitle-2 h4 {
	position: relative;
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 35px;
}
.services-details-subtitle-2 h4::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 2px;
	background: #ffbf00;
	left: 0;
	bottom: -11px;
}
.services-details-quote{
  box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
  padding: 40px;
  margin-top: 40px;
}
.services-details-quote span {
	font-size: 19px;
	font-weight: 500;
}
.services-widget-title h3 {
	margin-bottom: 22px;
}
.services-widget-tab ul li {
	list-style: none;
	margin-bottom: 10px;
}
.services-widget-item {
	box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
	padding: 30px;
	border-radius: 5px;
}
.services-widget-tab ul li a {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px;
	display: inline-block;
	width: 100%;
	padding: 8px 16px;
	background: #F6F6F9;
  text-decoration: none;
}
.services-widget-tab ul li.active a{
  background:#ffde94;
  color:#fff;

}
.services-widget-tab ul li a:hover{
  background:#ffbf00;
  color:#fff;
}
.services-widget-tab ul li.active a::before {
	position: absolute;
	content: "";
	height: 42px;
	width: 2px;
	background: #ffbf00;
	top: 0;
	left: -30px;
	z-index: 1;
}
.services-widget-tab ul li a:hover::before{
  position: absolute;
	content: "";
	height: 42px;
	width: 2px;
	background: #ffbf00;
	top: 0;
	left: -30px;
	z-index: 1;
  transition: all 0.3s 0s ease-out;
}
.services-widget-contact{
  background-image: url(../images/service/service-details/img-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}
.services-widget-contact-content {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}
.services-widget-contact-icon span {
	font-size: 20px;
	font-weight: 900;
	line-height: 47px;
	text-align: center;
}
.services-widget-contact-icon span {
	position: relative;
	font-size: 20px;
	font-weight: 900;
	height: 47px;
	width: 47px;
	line-height: 47px;
	display: inline-block;
	text-align: center;
	background: #fff;
	border-radius: 50%;
	z-index: 1;
}
.services-widget-contact-icon {
	margin-bottom: 40px;
}
.services-widget-contact-icon span::after {
	position: absolute;
	content: "";
	width: 67px;
	height: 67px;
	background: #ffbf00;
	border-radius: 50%;
	left: -10px;
	top: -10px;
  z-index: -1;
}
.services-widget-contact-content::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.8;
	background: linear-gradient(90deg, #f26122 0%, #ffbf00 100%);
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
	border-radius: 5px;
	z-index: 0;
}
.services-widget-contact-content p {
	color: #fff;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}
.services-widget-contact-content a {
	font-weight: 700;
	font-size: 27px;
	letter-spacing: -0.54px;
	color: #fff;
	position: relative;
	z-index: 1;
  text-decoration: none;
}
.services-widget-download a {
	text-decoration: none;
}
.services-widget-download span {
	position: relative;
	font-weight: 500;
	font-size: 20px;
	border-radius: 5px;
	width: 100%;
	padding: 17px 30px 17px 44px;
	display: flex;
	justify-content: space-between;
	background: #F6F6F9;
  margin-bottom: 30px;
}
.services-widget-download span::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 34px;
	background: #ffbf00;
	top: 15px;
	left: 0;
}
.services-widget-list {
	padding: 36px 30px;
	box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
	border-radius: 5px;
}

.services-widget-list-content ul li {
	list-style: none;
	font-size: 17px;
	margin-bottom: 10px;
	margin-left: 30px;
}
.services-widget-list-content ul li i{
  margin-right: 15px;
}
.services-widget-list-content ul li i{
  color:#ffbf00;
}

/*------------------ Blog Details CSS ---------------------------*/
.postbox-item-box {
	border-radius: 5px;
	background: #fff;
	box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
}
.postbox-item-img img {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  -webkit-border-radius:5px ;
  -moz-border-radius:5px ;
  -ms-border-radius:5px ;
  -o-border-radius:5px ;
}

.postbox-item-img{
  position: relative;
}
.postbox-item-date {
	position: absolute;
	top: 20px;
	left: 20px;
	background: #fff;
	padding: 7px 22px;
	border-radius: 5px;
	border-top: 2px solid #ffbf00;
	z-index: 1;
}
.postbox-item-date span {
	font-size: 20px;
	font-weight: 500;
	display: block;
  color:#ffbf00;
	margin: 0;
}
.postbox-item-date p {
	font-size: 20px;
	font-weight: 500;
  color:#0E1E2A;
}
.postbox-item-content {
	padding: 20px 40px 30px;
}
.postbox-item-meta span a {
	text-decoration: none;
}
.postbox-item-meta span {
	margin-right: 40px;
}
.postbox-item-meta span i {
  color:#ffbf00;
	margin-right: 6px;
}
.postbox-item-meta {
	margin-bottom: 25px;
}
.postbox-item-title a {
	text-decoration: none;
	font-size: 43px;
	font-weight: 700;
	line-height: 1.2;
}
.postbox-item-title {
	margin-bottom: 15px;
}
.postbox-item-title a:hover{
  color:#ffbf00;
}
.post-item-text p{
  color:#0E1E2A;
}
.postbox-item-text {
	margin-bottom: 25px;
}
.postbox-item-btn a {
	text-decoration: none;
  color:#ffbf00;
}
.postbox-item-btn a:hover{
  color:#0E1E2A;
}
.postbox-item-btn a i {
	margin-right: 8px;
}

.postbox-pagination ul li {
	list-style: none;
	display: inline-block;
	margin-right: 20px;
}
.postbox-pagination ul li a{
  text-decoration: none;
}
.postbox-pagination ul li a {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: #ffbf00;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid;
	border-color: #e3e3e3;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
}
.postbox-pagination ul li .current {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	background: #ffbf00;
  color:#fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid;
	border-color: #e3e3e3;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
}
.postbox-pagination ul li a:hover{
  background:#ffbf00;
  color:#fff;
}
.sidebar-search-input input {
	font-size: 20px;
	font-weight: 600;
	height: 100%;
	width: 100%;
	line-height: 60px;
	border-radius: 5px;
	border: 1px solid transparent;
	background: #f6f6f6;
	padding: 0 25px;
	padding-right: 60px;
}
.sidebar-search-input{
  position: relative;
}
.sidebar-search-input .search-icon {
	position: absolute;
	top: 15px;
	right: 30px;
}
.sidebar-search-input .search-icon i {
	font-size: 20px;
	font-weight: 900;
	background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.sidebar-widget {
	padding: 30px;
	border-radius: 5px;
	background:#fff;
	box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
}
.sidebar-widget-title h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}
.sidebar-widget-content ul li {
	list-style: none;
	margin-bottom: 19px;
}
.sidebar-widget-content ul li a {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.8px;
	display: block;
}
.sidebar-widget-content a {
	text-decoration: none;
}
.sidebar-widget-content ul li:not(:last-of-type) {
	border-bottom: 1px solid #E3E3E3;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.sidebar-widget-content ul li a i {
	font-size: 14px;
	margin-right: 2px;
	transform: translateY(0px);
	background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.sidebar-widget-content ul li a:hover i {
  animation: tfLeftToRight 0.5s forwards;
  transition:.5s ;
  -webkit-transition:.5s ;
  -moz-transition:.5s ;
  -ms-transition:.5s ;
  -o-transition:.5s ;
}
.recent-post-thumb {
	margin-right: 20px;
}
.recent-post-title h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 10px;
}
.recent-post-meta span {
	font-size: 14px;
	font-weight: 500;
}
.recent-post-meta span i {
	color: #ffbf00;
}
.recent-post:not(:last-of-type) {
	border-bottom: 1px solid #E3E3E3;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.sidebar-work{
  position: relative;
  background-image: url(../images/blog/postbox/img-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}
.sidebar-work::after{
  position: absolute;
  content:"";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#f26122;
  z-index: 0;
  opacity: 0.8;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.sidebar-work-title h3{
	position: relative;
	font-size: 24px;
	font-weight: 600;
	padding: 11px;
	margin: 0;
	z-index: 1;
	letter-spacing: -0.96px;
	border-radius: 5px 5px 0 0;
	color: #fff;
	background: #ffbf00;
}
.sidebar-work-content {
	padding: 40px 30px;
}
.sidebar-work-icon span {
	display: inline-block;
	width: 65px;
	height: 65px;
	line-height: 65px;
	background: #fff;
	text-align: center;
  position: relative;
	z-index: 1;
	margin-bottom: 20px;
	border-radius: 5px;
}
.sidebar-work-content p {
	position: relative;
	z-index: 1;
	color: #fff;
}
.tagcloud a {
	font-size: 16px;
	background: #f6f6f6;
	padding: 8px 26px;
  display: inline-block;
	margin-right: 12px;
	margin-bottom: 19px;
}

.tagcloud a:hover{
  color:#ffbf00;
}
.postbox-item-thumb {
	position: relative;
}
.postbox-meta-2 {
	position: absolute;
	padding: 16px 40px;
	background: #ffbf00;
  box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
	bottom: -20px;
	margin: 0 14%;
}
.postbox-meta-2 span {
  color:#0E1E2A;
	margin-right: 20px;
}

.postbox-list-title i {
	background: #ffbf00;
	font-size: 13px;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	margin-right: 3px;
}
blockquote {
	position: relative;
	padding: 25px 115px 25px 40px;
	margin-bottom: 35px;
	background: #fff;
	box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8000001907px 24.3999996185px -6px rgba(19, 16, 34, 0.1);
	z-index: 1;
}
blockquote::after {
	position: absolute;
	content: "";
	height: 100px;
	width: 2px;
	background: #ffbf00;
	left: 0;
	top: 25px;
}


.postbox-blockquote img {
	position: absolute;
	top: 42%;
	right: 30px;
}

.postbox-share-wrapper {
	margin-top: 60px;
	padding: 30px 30px 10px 30px;
	border-top: 1px solid #ffbf00;
	border-bottom: 1px solid #ffbf00;
}
.postbox-share-tags a {
	text-decoration: none;
}
.postbox-share-social .footer-widget-social a i {
	color: #ffbf00;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out;
}
.postbox-widget-social a {
  position: relative;
	display: inline-block;
  font-size: 20px;
  font-weight: 400;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #f6f6f6;
	text-align: center;
	margin-right: 10px;
	border-radius: 5px;
}
.postbox-widget-social a:hover{
  background:#ffbf00;
  color:#fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.postbox-comment ul li {
	list-style: none;
}
.postbox-comment ul li .postbox-comment-box.border-mr {
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid #ffbf00;
}
.postbox-comment-avator {
	margin-right: 32px;
}
.postbox-comment-date {
	margin-top: 10px;
}
.postbox-comment ul li .postbox-comment-name {
	font-size: 24px;
	margin-right: 30px;
	margin-bottom: 20px;
}
.postbox-comment ul li .postbox-comment-date {
	font-size: 14px;
  color:#0E1E2A;
	margin-bottom: 18px;
}
.children {
	margin-left: 110px;
}

.postbox-comment ul li .postbox-comment-reply a {
  font-size: 16px;
  font-weight: 500;
  color:#ffbf00;
	text-decoration: none;
	text-transform: uppercase;
  background: #f6f6f6;
  display: inline-block;
  padding: 7px 23px;
  border-radius: 5px;
}
.postbox-comment ul li .postbox-comment-reply a i {
	margin-left: 8px;
}
.postbox-comment-box {
	position: relative;
}
.postbox-comment ul li .postbox-comment-reply {
	position: absolute;
  top: 0;
	right: 0;
  
}
.postbox-comment ul li .postbox-comment-reply a:hover i {
	animation: tfLeftToRight 0.5s forwards;
}
/*------------------- Portfolio Details Css ------------------*/
.project-details-thumb img {
	width: 100%;
}
.project-details-title h3 {
	position: relative;
	font-size: 48px;
	font-weight: 600;
	margin-left: 15px;
	margin-bottom: 50px;
}
.project-details-title h3::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 50px;
	background: #ffbf00;
	left: -17px;
	top: -7px;
}
.project-details-title-wrapper {
	position: relative;
	margin-right: 34%;
	border-bottom: 1px solid #ffbf00;
	padding-bottom: 50px;
	margin-bottom: 30px;
}
.project-details-box {
	position: absolute;
	top: -32%;
	right: -46%;
	border-radius: 5px;
	padding: 30px 30px 0px;
	background: #fff;
	box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}
.project-details-box-title h4 {
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}
.project-details-box-1 {
	margin-right: 43px;
}
.project-detalis-list ul li {
	list-style: none;
	float: left;
	width: 50%;
}
.project-details-list-title i {
	background: #ffbf00;
  color:#fff;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-radius: 50px;
	font-size: 14px;
  font-weight: 500;
}
.project-detalis-list {
	border-bottom: 1px solid #ffbf00;
	display: flow-root;
}
.project-details-list-title {
	font-size: 24px;
	font-weight: 600;
	color: #16243E;
	margin-bottom: 20px;
	display: block;
}
.project-details-subtitle h3 {
	margin-bottom: 18px;
}
.project-details-subtitle p {
	margin-bottom: 30px;
}
.project-details-list-thumb img {
	border-radius: 5px;
	width: 100%;
}
.project-detalis-list p {
	margin-bottom: 40px;
}

/*-------------- Team-Details CSSS --------------------*/
.team-details-wrapper {
	padding: 60px 77px;
	background:#FFF;
	box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
}
.team-details-thumb {
	margin-bottom: 75px;
}
.team-details-name {
	font-weight: 700;
	font-size: 27px;
	letter-spacing: -0.54px;
}
.team-details-description {
	font-weight: 500;
	font-size: 20px;
	background: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.8px;
	display: block;
	margin-bottom: 10px;
}
.team-details-wrapper p {
	width: 500px;
}
.team-details-information h4 {
	position: relative;
	margin-bottom: 20px;
}
.team-details-information span {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	left: 0;
	top: 1px;
}
.team-details-information a {
  text-decoration: none;
	margin-left: 100px;
	font-size: 16px;
	font-weight: 400;
  color:#16243E;
}
.team-details-social a i {
	background: #f6f6f6;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	border-radius: 50%;
	margin-right: 15px;
}
.team-details-social a i:hover{
  background:#ffbf00;
  color:#fff;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.team-details-progress-item {
	margin-bottom: 30px;
}
.team-details-progress-title h5 {
	font-size: 20px;
}
.team-details-title h3 {
	margin-bottom: 20px;
}
.team-details-skills p {
  margin-bottom: 40px;
  width: 83%;
}
.fix{
  overflow: hidden;
}
.team-details-progress-title {
	position: relative;
}
.team-details-progress-title .pursent-1 {
	position: absolute;
	right: 32%;
	top: 0;
}
.team-details-progress-title .pursent-2 {
	position: absolute;
	right: 28%;
	top: 0;
}
.team-details-progress-title .pursent-3 {
	position: absolute;
	right: 35%;
	top: 0;
}
.team-details-progress-item .progress .progress-bar {
	background: #ffbf00;
}
.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: #0d00c3;
	text-align: center;
	white-space: nowrap;
	transition:.5s;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	-ms-transition:.5s;
	-o-transition:.5s;
}
.team-details-progress-item .progress {
	background: #ffbf00;
	width: 630px;
	height: 10px;
}
.team-details-title ul li {
	list-style: none;
  margin-bottom: 15px;
}
.team-details-title i {
	background: #ffbf00;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 50px;
	color: #fff;
	font-size: 13px;
}
.team-details-title ul {
	margin-bottom: 65px;
}

.team-details-thumb img {
	width: 100%;
}

.accordion-item {
	margin-bottom: 20px;
}
.accordion .accordion-button {
	
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -0.8px;
	background: var(--tp-common-white);
	border: 1px solid #E3E3E3;
	border-radius: 5px;
	padding-top: 22px;
	padding-bottom: 22px;
	padding-right: 65px;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out;
}
.accordion .accordion-button:not(.collapsed) {
	background-image: linear-gradient(90deg, #ffbf00 0%, #f26122 100%);
	border-radius: 5px;
	color: #fff;
	box-shadow: none;
	border: none;
	margin-bottom: 20px;
}

/*============= Sticky CSS ===============*/
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 10000;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  padding: 18px 0;
}
.header-area.transparent .sticky-logo {
  display: none;
}
.header-area.transparent .is-sticky .sticky-logo {
  display: block;
}
.header-area.transparent .is-sticky .main-logo {
  display: none;
}
.header-area.transparent .is-sticky .header-main-menu ul li a{
  color:#000;
}
/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
