/********** Template CSS **********/
:root {
 
  --primary: #260062;
  --primary1: #4f08a1;
  --primary2: #710f80;
  --orange: #F9240A;
  --secondary: rgb(254, 192, 7);
  --light: #f7faff;
  --dark: #1d1d27;
}
*{
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}
html,
body {
  overflow-x: hidden;
  color: #000;
}

::-webkit-scrollbar {
  width: 5px;
 background-color: rgb(0, 0, 0);
}
::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  height: 10px;
  width: 5px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
  background-color: #000;
  border-radius: 5px;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
  background: var(--dark);
}
#spinner img{
  width: 200px;
}
#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
  
}




@keyframes whatsapp-animation {
  from {
      opacity: 0%;
  }

  to {
      opacity: 100%
  }
}



.back-to-top {
  font-size: 1.5rem;
  position: fixed;
  display: none;
  right: 25px;
  bottom: 30px;
  z-index: 999;
  color: var(--secondary);
  background: var(--orange);
}
.back-to-top:hover {

  color: var(--light);

}



/*** Heading ***/
.stroke-text{
  color: transparent;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: var(--secondary);

}



h1,
h2,
h3,
.fw-bold {
  font-weight: 700 !important;
  color: var(--orange);
}

h4,
h6,
.fw-medium {
  font-weight: 500 !important;
  z-index: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.mega-content .card{
 background-color: rgb(255, 255, 255);
 padding: 8px;
 transition: 0.1s;
}
.mega-content .card:hover{
  background-color: var(--secondary);
  transition: 0.1s;
 }
.dropdown-menu{
  background-color: rgb(241, 241, 241);
  transition: 0.1s;
 
}
.list-group .list-group-item:hover{
  background-color: var(--orange);
  color: #fff;
  transition: 0.1s;
}
.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.1s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: var(--light) !important;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--light) !important;
}
.sticky-top.navbar-light {
  background: #000000 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
  color: #ffffff;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .stroke-text{

    -webkit-text-stroke-width: 1px;
 
  
  }
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #ffffff;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--light) !important;
  }

  .navbar-light .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar-light .navbar-brand img {
    max-height: 40px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--secondary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    color: #000;
  }
}

.nav-btn{
  background: var(--orange);
  color: rgb(255, 255, 255);
  border-radius: 50px
}
.nav-btn:hover{
 
  background: var(--secondary);
  color: rgb(0, 0, 0);

}
.btnoutline
{
  border: 1px solid;
}


/*** Hero Header ***/
.primary-color{
background: var(--primary);
}
.bg {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  
}
.bg .bg-vid {
  bottom: 0;
  position: absolute;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  

}
.bg .banner {
  width: 80%;
  padding-top: 10rem;

}
.banner-text h1{
  font-size: 4rem;
  padding-top: 10rem;
}


.animated-text{
  font-size: 24px;
}
.one-line{
  font-size: 24px;


}


.page-title{
  
  position: relative;
  overflow-y: hidden;
  background: #000;
  height: 50vh;
  margin-bottom: 100px;


}
.page-title .solutions-img{
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0.2;


  

}
.page-title-text{
  color: var(--secondary);
  font-size: 3.5rem;
  padding-top: 5rem;
}
.scrollbar-bg{
  background: #000;
}

@media screen and (max-width: 992px) {
  .page-title{
    height: 25vh;
    margin-bottom: 80px;
  }
  .page-title-text{
    font-size: 1.8rem;
    padding-top: 0.3rem;
  }
  .bg {
    min-height: 100vh;

    
  }
  .bg .banner {
    width: 130px;
    padding-top: 25px;
  }
  .banner-text h1{
    font-size: 2rem;
    padding-top: 0;
  }
  .animated-text{
    font-size: 18px;
  }
  .one-line{
    font-size: 18px;
  }
  
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--dark);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 3px;
  bottom: 0;
  left: 50px;
  background: var(--dark);
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -25px;
}

.section-title.text-center::after {
  left: 50%;
  margin-left: 25px;
}
.section-title h1{
  margin-top: 60px;
}

.section-title h6::before,
.section-title h6::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;

  background: rgba(254, 192, 7, 0.5);
}

.section-title h6::after {
  top: 5px;
  left: 3px;
}
@media screen and (max-width: 992px) {
  .section-title h1{
    margin-top: 5px;
  }
}

/* pointers */
.pointers .text-center::before {
  left: 100%;

}

.pointers .text-center::after {
  left: 50%;
  margin-left: 25px;
}

.pointers h6::before,
.pointers h6::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 2px;
  left: 0;

  background: rgba(33, 66, 177, 0.5);
}

.pointers h6::after {
  top: 5px;
  left: 3px;
}

/* About */

.about{
  max-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
}
.about-box{
    
  position: relative;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  color: #fff;
  align-items: center;

  
}
.about-box h4{
  color: var(--light);
}
.about-box:hover h4{
  font-size: 1.7rem;
  transition: 0.5s;
}
.about-box img{
  position: absolute;
  opacity: 0.2;

}
.about-box:hover img{
width: 680px;
opacity: 0.6;
transition: 0.5s;
}

.whychooseus{
  position: relative;
  height: 100px;
  align-items: center;
  border: rgb(167, 167, 167) 1.5px solid;
  padding: 5px;
  transition: 0.5s;

}

.whychooseus:hover{
  background: var(--secondary);
  color: #000;
  
}
.whychooseus:hover p{
  font-size: 1.1rem;
}
.whychooseus h6{
  align-items: center;
  justify-content: center;
}
.fa-square-facebook:hover{
 color: #4267B2;
 font-size: 3.15rem;
}
.fa-square-twitter:hover{
  color: 	#1DA1F2;
  font-size: 3.15rem;
}
.fa-square-instagram:hover{
  color:#af0639;
  font-size: 3.15rem;
}
.fa-square-whatsapp:hover{
  color: #05720e;
  font-size: 3.15rem;
}
.fa-square-phone:hover{
  color:#031d8e;
  font-size: 3.15rem;
}
.fa-linkedin:hover{
  color: #0A66C2;
  font-size: 3.15rem;
}

@media screen and (max-width: 992px) {
  .about{
    max-height: 280vh;
    min-height: 100vh !important;
 
  }
  .about-box{
    
 
    height: 100px;

  
  }
}
/*** Service ***/

.service-item {
  
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #1A1E2A;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  align-items: center;
  border-radius: 5px;
}


.service-item img {
  width: 395px;
  position: absolute;
  opacity: 0.1;
  transition: 0.5s;
  
  
}
.service-item:hover img {
  width: 420px;
 opacity: 0.4;


}

.service-item .service-icon {

  color: var(--secondary);

  transition: 0.5s;
  z-index: 1;
}
.service-item .service-icon i{
  font-size: 2.2rem;
 
}
.service-item h5{
 z-index: 1;
 padding-top: 2rem;
 color: var(--light);
}


.service-item:hover .service-icon {
  color: var(--light);
  
}

.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover h5,
.service-item:hover p {

  color: var(--secondary);
}

.service-item a.btn {
  position: relative;
  display: flex;
  color: var(--primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover a.btn {
  color: var(--primary);
}

.service-item a.btn::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 0;
  left: 0;
  border-radius: 35px;
  background: #dddddd;
  transition: 0.5s;
  z-index: -1;
}

.service-item:hover a.btn::before {
  width: 100%;
  background: var(--light);
}



/*** Team ***/

#team {
  padding: 30px 0;
}

.single-box {
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.info-area {
  padding: 0 20px 45px;
}
.img-area {
  overflow: hidden;
  padding: 12px 0 12px;
}
.img-area img {
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-width: 200px;
}
.single-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.info-area i {
  display: inline-block;
  color: #ffb400;
  margin: 0 4px;
}
.info-area h4 {
  font-weight: 600;
}
.info-area h5 {
  color: #260062;
  margin: 10px 0 0;
  font-weight: 600;
}
.info-area a {
  display: inline-block;
  margin: 25px 0 0;
  background-color: darkorange;
  color: #fff;
  padding: 10px 35px;
  border-radius: 4px;
}
.team-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  text-align: center;
  width: 100%;
}
.team-slider button.owl-dot {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 6px;
  text-align: center;
  border-radius: 50%;
  background-color: #262626;
}
.team-slider .owl-dot.active {
  background-color: #ffb400;
}
.move-animation {
  position: relative;
  -webkit-animation: move-animation 2s ease-in-out infinite;
  animation: move-animation 2s ease-in-out infinite;
}

@keyframes move-animation {
  0% {
    top: 3px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 3px;
  }
}

/*** Project Portfolio ***/
#portfolio-flters .btn {
  position: relative;
  display: inline-block;
  margin: 10px 4px 0 4px;
  transition: 0.5s;
}

#portfolio-flters .btn::after {
  position: absolute;
  content: "";
  right: -1px;
  bottom: -1px;
  border-left: 20px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 50px solid #ffffff;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
  color: var(--light);
  background: #260062;
}

.portfolio-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  top: 0;
  left: 0;
  background: var(--primary);
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item .btn {
  position: absolute;
  border-radius: 10x;
  top: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  border: none;
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
}

.portfolio-item:hover .btn {
  opacity: 1;
  transition-delay: 0.15s;
}
/* Location */
.location {
  background-color: #ffb400;
  border-radius: 5px;
  height: 82%;

}
.location iframe {
 
  padding: 2px;
  border-radius: 5px;


}

/* Building Brands */
.solutions-icon{
  position: relative;
  overflow: hidden;
  height: 150px;
  width: auto;
  border: 1px #ababab solid;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  align-items: center;
  margin-top: 40px;
  cursor: pointer;
  border-radius: 5px;
}
.solutions-icon img{
  width: 60px;
  position: absolute;
  transition: 0.5s;

}
.solutions-icon:hover img{
  width: 80px;
  transition: 0.5s;

}
.solutions-icon:hover {
background-color: var(--secondary);
}
.building-brands h5{
  font-weight: 550;
  margin-top: 10px;

  font-size: 1.2rem;
}
.building-brands .solutions-image-right{
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 1px #898989 solid;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  background-color: rgb(0, 0, 0);
  transition: 0.5s;
  align-items: center;
  margin-top: 40px;
  border-radius: 5px;
}
.solutions-image-right img{
  width: 600px;
  position: absolute;
  opacity: 0.6;
  transition: 0.5s;

}
.solutions-image-right:hover img{
  width: 640px;
  opacity: 1;
  transition: 0.5s;
  
  }
  @media screen and (max-width: 992px) {
    .building-brands .solutions-image-right{
      height: 180px;
    }
    .solutions-image-right img{
      width: 320px;
   
      }
      .solutions-image-right:hover img{
        width: 340px;
        
        }
  }
  /* testimonial */
  
#testim,
#testim:after,
#testim:before {

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: default;
    width: 100%;
	height: auto;
	font-size: 15px;

	background-color: var(--dark);
}

.testim {
	width: 100%;

	top: 50%;
	-webkit-transform: translatey(-0%);
	-moz-transform: translatey(-0%);
	-ms-transform: translatey(-0%);
	-o-transform: translatey(-0%);
	transform: translatey(-0%);
  overflow: hidden;
}

.testim .qoute{
  position: absolute;
  width: 150px;
  padding: 20px;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.testim .qoute_{
  position: absolute;
  width: 150px;
  padding: 20px;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}
.testim .testimonial_bg{
  position: absolute;
  width: 100%;
  opacity: 0.1;


}

.testim .wrap {
	position: relative;
	width: 100%;
	max-width: 1020px;
	padding: 40px 20px;
	margin: auto;

  
}

.testim .arrow {
	display: block;
	position: absolute;
	color: var(--secondary);
	cursor: pointer;
	font-size: 3em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%)m: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 5px;
	z-index: 22222222;
}

.testim .arrow:before {
	cursor: pointer;
}

.testim .arrow:hover {
	color: var(--orange)
}

.testim .arrow.left {
	left: 10px;
}

.testim .arrow.right {
	right: 10px;
}

.testim .dots {
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 60px;
	left: 0;
	display: block;
	z-index: 3333;
	height: 12px;
}

.testim .dots .dot {
	list-style-type: none;
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid #eee;
	margin: 0 10px;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
	background: var(--orange);
}

.testim .dots .dot.active {
	-webkit-animation: testim-scale 0.5s ease-in-out forwards;
	-moz-animation: testim-scale 0.5s ease-in-out forwards;
	-ms-animation: testim-scale 0.5s ease-in-out forwards;
	-o-animation: testim-scale 0.5s ease-in-out forwards;
	animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
	position: relative;
	overflow: hidden;
}

.testim .cont > div {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 0 70px 0;
	opacity: 0;
}

.testim .cont > div.inactive {
	opacity: 1;
}

.testim .cont > div.active {
	position: relative;
	opacity: 1;
}

.testim .cont div .img img {
	display: block;
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 50%;
}

.testim .cont div h2 {
	color: var(--secondary);
	font-size: 1.2em;
	margin: 15px 0;
}

.testim .cont div p {
	font-size: 1em;
	color: #eee;
	width: 80%;
	margin: auto;
}

.testim .cont div.active .img img {
	-webkit-animation: testim-show 0.5s ease-in-out forwards;
	-moz-animation: testim-show 0.5s ease-in-out forwards;
	-ms-animation: testim-show 0.5s ease-in-out forwards;
	-o-animation: testim-show 0.5s ease-in-out forwards;
	animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active h2 {
	-webkit-animation: testim-content-in 0.4s ease-in-out forwards;
	-moz-animation: testim-content-in 0.4s ease-in-out forwards;
	-ms-animation: testim-content-in 0.4s ease-in-out forwards;
	-o-animation: testim-content-in 0.4s ease-in-out forwards;
	animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
	-webkit-animation: testim-content-in 0.5s ease-in-out forwards;
	-moz-animation: testim-content-in 0.5s ease-in-out forwards;
	-ms-animation: testim-content-in 0.5s ease-in-out forwards;
	-o-animation: testim-content-in 0.5s ease-in-out forwards;
	animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
	-webkit-animation: testim-hide 0.5s ease-in-out forwards;
	-moz-animation: testim-hide 0.5s ease-in-out forwards;
	-ms-animation: testim-hide 0.5s ease-in-out forwards;
	-o-animation: testim-hide 0.5s ease-in-out forwards;
	animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
	-webkit-animation: testim-content-out 0.4s ease-in-out forwards;
	-moz-animation: testim-content-out 0.4s ease-in-out forwards;
	-ms-animation: testim-content-out 0.4s ease-in-out forwards;
	-o-animation: testim-content-out 0.4s ease-in-out forwards;
	animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
	-webkit-animation: testim-content-out 0.5s ease-in-out forwards;
	-moz-animation: testim-content-out 0.5s ease-in-out forwards;
	-ms-animation: testim-content-out 0.5s ease-in-out forwards;
	-o-animation: testim-content-out 0.5s ease-in-out forwards;
	animation: testim-content-out 0.5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px #eee;
		box-shadow: 0px 0px 0px 0px #eee;
	}

	35% {
		-webkit-box-shadow: 0px 0px 10px 5px #eee;
		box-shadow: 0px 0px 10px 5px #eee;
	}

	70% {
		-webkit-box-shadow: 0px 0px 10px 5px #ea830e;
		box-shadow: 0px 0px 10px 5px #ea830e;
	}

	100% {
		-webkit-box-shadow: 0px 0px 0px 0px #ea830e;
		box-shadow: 0px 0px 0px 0px #ea830e;
	}
}

@-moz-keyframes testim-scale {
	0% {
		-moz-box-shadow: 0px 0px 0px 0px #eee;
		box-shadow: 0px 0px 0px 0px #eee;
	}

	35% {
		-moz-box-shadow: 0px 0px 10px 5px #eee;
		box-shadow: 0px 0px 10px 5px #eee;
	}

	70% {
		-moz-box-shadow: 0px 0px 10px 5px #ea830e;
		box-shadow: 0px 0px 10px 5px #ea830e;
	}

	100% {
		-moz-box-shadow: 0px 0px 0px 0px #ea830e;
		box-shadow: 0px 0px 0px 0px #ea830e;
	}
}

@-ms-keyframes testim-scale {
	0% {
		-ms-box-shadow: 0px 0px 0px 0px #eee;
		box-shadow: 0px 0px 0px 0px #eee;
	}

	35% {
		-ms-box-shadow: 0px 0px 10px 5px #eee;
		box-shadow: 0px 0px 10px 5px #eee;
	}

	70% {
		-ms-box-shadow: 0px 0px 10px 5px #ea830e;
		box-shadow: 0px 0px 10px 5px #ea830e;
	}

	100% {
		-ms-box-shadow: 0px 0px 0px 0px #ea830e;
		box-shadow: 0px 0px 0px 0px #ea830e;
	}
}

@-o-keyframes testim-scale {
	0% {
		-o-box-shadow: 0px 0px 0px 0px #eee;
		box-shadow: 0px 0px 0px 0px #eee;
	}

	35% {
		-o-box-shadow: 0px 0px 10px 5px #eee;
		box-shadow: 0px 0px 10px 5px #eee;
	}

	70% {
		-o-box-shadow: 0px 0px 10px 5px #ea830e;
		box-shadow: 0px 0px 10px 5px #ea830e;
	}

	100% {
		-o-box-shadow: 0px 0px 0px 0px #ea830e;
		box-shadow: 0px 0px 0px 0px #ea830e;
	}
}

@keyframes testim-scale {
	0% {
		box-shadow: 0px 0px 0px 0px #eee;
	}

	35% {
		box-shadow: 0px 0px 10px 5px #eee;
	}

	70% {
		box-shadow: 0px 0px 10px 5px #ea830e;
	}

	100% {
		box-shadow: 0px 0px 0px 0px #ea830e;
	}
}

@-webkit-keyframes testim-content-in {
	from {
		opacity: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-moz-keyframes testim-content-in {
	from {
		opacity: 0;
		-moz-transform: translateY(100%);
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

@-ms-keyframes testim-content-in {
	from {
		opacity: 0;
		-ms-transform: translateY(100%);
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

@-o-keyframes testim-content-in {
	from {
		opacity: 0;
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes testim-content-in {
	from {
		opacity: 0;
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes testim-content-out {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	to {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@-moz-keyframes testim-content-out {
	from {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	to {
		opacity: 0;
		-moz-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@-ms-keyframes testim-content-out {
	from {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	to {
		opacity: 0;
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@-o-keyframes testim-content-out {
	from {
		opacity: 1;
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@keyframes testim-content-out {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-100%);
	}
}

@-webkit-keyframes testim-show {
	from {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes testim-show {
	from {
		opacity: 0;
		-moz-transform: scale(0);
		transform: scale(0);
	}

	to {
		opacity: 1;
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-ms-keyframes testim-show {
	from {
		opacity: 0;
		-ms-transform: scale(0);
		transform: scale(0);
	}

	to {
		opacity: 1;
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@-o-keyframes testim-show {
	from {
		opacity: 0;
		-o-transform: scale(0);
		transform: scale(0);
	}

	to {
		opacity: 1;
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes testim-show {
	from {
		opacity: 0;
		transform: scale(0);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@-webkit-keyframes testim-hide {
	from {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
}

@-moz-keyframes testim-hide {
	from {
		opacity: 1;
		-moz-transform: scale(1);
		transform: scale(1);
	}

	to {
		opacity: 0;
		-moz-transform: scale(0);
		transform: scale(0);
	}
}

@-ms-keyframes testim-hide {
	from {
		opacity: 1;
		-ms-transform: scale(1);
		transform: scale(1);
	}

	to {
		opacity: 0;
		-ms-transform: scale(0);
		transform: scale(0);
	}
}

@-o-keyframes testim-hide {
	from {
		opacity: 1;
		-o-transform: scale(1);
		transform: scale(1);
	}

	to {
		opacity: 0;
		-o-transform: scale(0);
		transform: scale(0);
	}
}

@keyframes testim-hide {
	from {
		opacity: 1;
		transform: scale(1);
	}

	to {
		opacity: 0;
		transform: scale(0);
	}
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}

.testim .qoute{

  width: 100px;

}
.testim .qoute_{

  width: 100px;

}

	.testim .cont div p {
		line-height: 25px;
	}
}

/*** Footer ***/
.bg-footer{
  background: #000;
}
.bg-call-to-action{
  background: #5E04D0;
}


.call-to-action{
  position: relative;
  height: 60px;
  align-items: center;

  border-radius: 5px;
  padding: 10px;
  transition: 0.5s;


}
.call-to-action i{
 
  font-size: 1.5rem;
  padding: 8px;
  border-radius: 5px;
  position: absolute;
  color: var(--secondary); 
  align-items: center;
}
.call-to-action h3{

  color: rgb(255, 255, 255);
margin-left: 60px;


}
.call-to-action h4{
  color: rgb(255, 255, 255);
margin-left: 60px;
font-size: 18px;

  }
  .call-to-action h6{
    margin-top: 8px;
    color: rgb(255, 255, 255);
  margin-left: 60px;
  
    }
.footer {
  background: url(../img/elements/footer.png) center center no-repeat;
  background-size: contain;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  
}

.footer .copyright a {
  color: var(--light);
   text-decoration: none;

}
.footer .copyright a:hover {
  color: rgb(254, 192, 7);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
   text-decoration: none;
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
  text-decoration: none;
}
