.theme-btn-one {
  color: #fff;
  text-align: center;
  box-shadow: 0px 15px 20px 0px #35524748;
  background: #1c1d4b;
}

.theme-btn-one:hover {
  background: transparent;
  border: 2px #1c1d4b solid ;
  color: #000;
}


.theme-btn-two  {
  color: #3f403e;
  text-align: center;
  box-shadow: 0px 15px 20px 0px #c1b39150;
  border: 1px solid #e55528;
  
}

.theme-btn-two:hover {
  background: transparent;
  background: #e55528;
  color: #fff;
}


.theme-btn-three {
  color: #fff;
  text-align: center;
  box-shadow: 0px 15px 20px 0px #35524748;
  background: #e55528;
}

.theme-btn-three:hover {
  background: transparent;
  border: 2px #e55528 solid ;
  color: #fff;
}



.testimonials {
  position: relative;
  padding: 50px 0px;

}

.testimonials:before {
  position: absolute;
  top: 210px;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 30%;
  background-color: #1c1d4b;
  content: '';

}



/* .testimonials-foot{
  position: relative;
} */

.testimonials-foot:before {
  position: absolute;
  top: 390px;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 25%;
  background-color: #1c1d4b;
  content: '';


}

 /* marquee */

 .marquee {
  width:100%;
  margin: 15px auto;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 35s linear infinite;
  color:#fff;
  padding-left: 70%;
  }
  
  .marquee:hover {animation-play-state: paused}
  
  /* Make it move */
  
  @keyframes marquee {0%   { text-indent: 27.5em }100% { text-indent: -120em }}
  
   /* marquee */


.path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: dash 3s linear forwards infinite; animation-delay: 1s;}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.dashed{
  stroke-dasharray: 5,12;
  
}
#arrow{animation: arrow 2s linear forwards; opacity:0;}
@keyframes arrow {
  to {
    opacity: 1;
  }
}




.box{
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 15px;
  margin: 0 auto;
}
.card{
  position: relative;
  width: 300px;
  height: 350px;
  background: #fff;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow:0 2px 10px rgba(0,0,0,.2);
}
.card:before,
.card:after
{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #fff;
  transition: 0.5s;
  z-index:-1;
}
.card:hover:before{
transform: rotate(20deg);
box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.card:hover:after{
transform: rotate(10deg);
box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.card .imgBx{
position: absolute;
top: 10px;
left: 10px;
bottom: 10px;
right: 10px;
background: #222;
transition: 0.5s;
z-index: 1;
}

.card:hover .imgBx
{
  bottom: 80px;
}

.card .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .details{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 60px;
    text-align: center;
}

.card .details h2{
 margin: 0;
 padding: 0;
 font-weight: 600;
 font-size: 20px;
 color: #777;
 text-transform: uppercase;
} 

.card .details h2 span{
font-weight: 500;
font-size: 16px;
color: #e55528;
display: block;
margin-top: 5px;
 } 


 /* -------------------- */
 .left{
  margin-right: -70px;
  animation: myAnim 2s ease 0s 1 normal forwards;
  z-index: -1;
 }



 @keyframes myAnim {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateX(-250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateX(-68px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateX(-28px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateX(-8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}
}

.right{
  margin-left: -70px;
   z-index: -1;
   animation: myAnimr 2s ease 0s 1 normal forwards;
}


@keyframes myAnimr {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: translateX(250px);
	}

	38% {
		animation-timing-function: ease-out;
		opacity: 1;
		transform: translateX(0);
	}

	55% {
		animation-timing-function: ease-in;
		transform: translateX(68px);
	}

	72% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	81% {
		animation-timing-function: ease-in;
		transform: translateX(32px);
	}

	90% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}

	95% {
		animation-timing-function: ease-in;
		transform: translateX(8px);
	}

	100% {
		animation-timing-function: ease-out;
		transform: translateX(0);
	}
}


.arrow{
  width:315px;
   height:107px;
}


@media (max-width:965px) {
  .arrow{
  width: 315px;
  height: 87px;
  left: 50px;
  position: absolute;
  }
}

@media (max-width:610px) {
  .arrow {
    width: 314px;
    height: 66px;
    position: absolute;
    margin-top: 30px;
  }
}

@media (max-width:423px) {
  .arrow {
    width: 180px;
    height: 90px;
    position: absolute;
    margin-top: 30px;
  }
}

@media (max-width:990px) {
  .left{
    margin-right: 0px;

   }
  
.right{
  margin-left: 0px;

}
}



/* ------------------- */
 .form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #1c1d4b;
	background-color: transparent;
	background-clip: padding-box;
	border: none;
	border-bottom: 1.5px #acacac solid;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

.form-control:focus {
background-color: transparent;
	border: #e55528 px solid;
	border-bottom-color: #e55528;
	outline: 0;
	box-shadow: none;
}

.form-label{
	color: #1c1d4b;
}
.form-control::placeholder{
	color: #636262b9;
}


textarea {
	resize: none;
	margin-bottom: 20px;
}


.userselect {
	user-select: none;
}

.spam {
	display: none;
}


.Locations a {
	width: 30%;
	color: #fff;
}


.Locations a:hover {
	background-color: #e55528;
  color: #fff;
}


.userselect {
  user-select: none;
}

.social-links {
  display: inline-block;
  height: 35px;
  width: 35px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 8px 0px 0;
  padding: 8px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.social-links:hover {
  color: #1c1d4b;
  background-color: #ffffff;
}
