body{
  font-family: Montserrat;
}

html {
  scroll-behavior: smooth;
}

p{
  color: #8f8f8f;
}

h2{
  font-family: Montserrat-Bold;
  font-size: 3.5rem;
  line-height: 1.5;
}

h3{
  font-size: 1.5rem;
  font-family: Montserrat-Bold;
}

#title{
  color: #fff;
  background-image: linear-gradient(to right top, #ffffff, #ddd7dd, #c1aeb5, #a68888, #856659, #886449, #846436, #7a6724, #9a8723, #b8aa20, #d3cf18, #ecf609);
}


.container-fluid{
  padding: 3% 15% 7%;
}
.row h1{
  font: Montserrat-Black;
  size=3.5rem;
  line-height: 1.5;
}

/* Navbar */

.navbar{
  padding: 0 0 4.5rem;
}

.nav-item{
  padding: 0px 18px;
}

.navbar-brand{
  font-family: Ubuntu;
  font-weight: bold;
  font-size: 3rem;
}

.nav-link{
  font-size: 1.2rem;
  font-family: Montserrat-Light;
}

/* download-btn */

.download-btn{
  margin: 5% 3% 5% 0%;
}

/* title-image */
.title-image{
  width: 90%;
  transform: rotate(0deg);
  /* right: 10%; */
  position: absolute;
}

/* Features Section */
#about{
  padding: 7% 15%;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.feature-box{
  text-align: center;
  padding: 5%;
}

.icon{
  color: #ef8172;
  margin-bottom: 1rem;
}

.icon:hover{
  color: #ff4c68;
}

/* About */
.about{
  text-decoration: underline solid rgba(179, 133, 9, 0.712);
  color: dark;
  font-weight: bold;
  font-size: 20px;
}

/* testimonials Featurse */


#founders{
  padding: 7% 15%;
  text-align: center;
  background-color: #ef8172;
  color: #fff;
}

.testimonials-img{
  width: 20%;
  border-radius: 100%;
  margin: 2px;
}

#press{
  text-align: center;
  background-color: #ef8172;
  padding-bottom: 3%;
}

.logo{
  width: 15%;
  margin: 20px 20px 50px;

}

.carousel-item{
  padding: 7% 15%;
}

/* pricing section */

#pricing{
  padding: 100px;
  text-align: center;
}

.pricing-column{
  padding: 3% 2%;
}

@media (max-width: 1000px){

  #title{
    text-align: center;
  }
  .title-image{
    position: static;
    transform: rotate(0);
  }
}

/* CTA Section */
#cta{
  padding: 2%;
  text-align: center;
  background-color: #eee3e5;
  color: rgb(12, 11, 11);
}

.cta-heading{
  font-family: Montserrat-Black;
  font-size: 3.5rem;
  line-height: 1.5;
}
/* Footer Section */
#footer{
  padding: 7% 15%;
  text-align: center;
}

.social-icon{
  margin: 20px 10px;
  font-size: 30px;
  
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffee10;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

.social-icon:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ffee10;
}

.social-icon:hover {
  color: #0aa2fa;
  box-shadow: 0 0 5px #ffee10;
  text-shadow: 0 0 5px #ffee10;
}

/* Animate Logo */
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #b85c116c 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 40px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/* Nav bar Links Hover */
.example_d {
border: none;
background: #404040;
color: #ffffff !important;
font-size: 20px;
padding: 10px 10px !important;
margin: 2px;
/* text-transform: uppercase; */
border-radius: 6px;
display: inline-block;
transition: all 0.3s ease 0s;
}
.example_d:hover {
color: #404040 !important;
font-weight: 700 !important;
letter-spacing: 3px;
background: none;
-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
transition: all 0.3s ease 0s;
}

/* About */
.card-size{
  width: 1200px;
}

.element {
  display: inline-block;
  background: linear-gradient(180deg,#ff8a00,#e52e71);
  /* height: 100px; */
  /* width: 100px; */
  float: right !important;
  font-size: 1px;
  padding: 1px;
  color: white;
  margin-right: 5px;
  margin-left: 5px;
  animation: skew 5s infinite;
  transform: skew(0deg);
  animation-direction: alternate;
  opacity: .7;
}

@keyframes skew {
  0% {
    transform: skew(10deg, 20deg);
  }
  100% {
    transform: skew(-20deg, -10deg);
  }
}
