@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700;900&display=swap');


/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

:root {
  /* Primary Color */
  /*--primary-color: #3C0753;*/
  --primary-color: #910A67;

  --background-color : #000000 ;

  /* Background */
  --white-color: #ffffff; 

  /* Accent Gray */
  --heading-text: #000;

  /* Text and Secondary Elements */
  --text-color: #333;

  /* Divider Lines */
}



*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body{
  font-family: 'Lato', sans-serif;
  color: #333;
  font-size: 1.8rem;
   line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.bg-header{
  background-color: var(--background-color);
}


nav{
  height: 9rem;
}

.navbar-brand{
  font-size: 2.4rem;
}


.nav-link:link , .nav-link:visited {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
}


.nav-link:hover , .nav-link:active{
  color: var(--primary-color);
}


.nav-link.cta {
  background-color: var(--primary-color);
  display: inline-block;
  padding: 0.5rem 2rem !important;
  border-radius: 4px;
}

.nav-link.cta:hover{
 background-color: #000000;
 color: #fff;
}

.btn{
  color: #fff;
}
.btn:hover{
  color: #fff;
}
.btn2:hover{
  color: #000;
}


h1 {
  font-size: 5.2rem;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

h2{
  font-size: 4.4rem;
  line-height: 1.3;
}

.hero-section{
  padding: 3.2rem 0;
}
 .hero-section p{
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
}


.btn{
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 24px;
  font-size: 1.8rem;
  border-radius: 4px;
}

.hero-img{
  width: 90%;
}

.card-title{
  font-size: 1.8rem;
  font-weight: bold;
}

.card-text{
  font-size: 1.6rem;
  color: #777;
}

.how-it-works-title{
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.how-it-works-text{
  font-size: 1.8rem;
  color: #333;
  line-height: 1.7;
}

.icon{
  width: 1.8rem;
  height: 1.8rem;
  padding: 1.2rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  margin-bottom: 1.6rem;
}

.how-it-works{
  padding: 2.4rem 0;
}

.testimonials{
  padding: 5rem 0;
  background-color: var(--background-color);
}

.testimonial-text {
  color: #fff;
}

.testimonials-name{
  color: #fff;
}

.testimonial-card{
  width: 50%;
}

h3{
  font-size: 2.4rem;
}



 span.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  color: white;
}

/* change hamburger button border color */
 button.navbar-toggler {
  border-color: #fff;
}

/* change navbar background on collapse */
@media (max-width: 982px) {
  nav .navbar-nav {
    background-color: #048e7c74;
    padding: 2rem;
    backdrop-filter: blur(5px);
  }

  .hero-section{
    text-align: center;
  }
  h1{
    font-size: 4rem;
    margin-bottom: 1rem;
  }
}

.navbar-brand:hover{
  color: #048E7B ;
}

.copyright{
  font-size: 1.4rem;
  color: #777;
}

.f-label{
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.form-control {
  height: 52px;
  background: #fff;
  color: #000;
  font-size: 2.4rem;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about{
  width: 100%;
  min-height: 70vh;
  display: grid;
  place-items: center;
  margin-bottom: 2.2rem;
} 

.about-row{
  width: 80%;
  max-width: 1170px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 50px 30px;
}

.about-row .left{
  overflow: hidden;
}

.about-row .left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.about-row .right{
  display: flex;
  align-items: center;
}

.about-row .right .content{
  padding-left: 20px;
}

.about-row .right .content p{
  font-size: 1.8rem;
  line-height: 1.7;
  padding-bottom: 15px;
}

@media (max-width: 991px){
  .about-row .right .content{
    padding-left: 0px;
  }  
}
@media (max-width: 768px){
  .about-row{
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.alert{
  width: 100%;
  background-color: black;
  color: white;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  display: none;
}





.animated-text{
  font-size: 22px;
  font-weight: 500;
  min-width: 280px;
  color: #fff;
}

.about-row.right{
  display: flex;
  align-items: center;
}

.about-row.right .content{
  padding-left: 20px;
}


.animated-text span{
  position: relative;
}

.animated-text span::before{
  content: "Youtuber";
  color: #fff;
  animation: words 20s infinite;
}

.animated-text span::after{
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: 120%;
  background-color: #000;
  border-left: 2px solid #ff7f50;
  right: -8px;
  animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
  to{
      border-left: 2px solid #ff7f5000;
  }
}

@keyframes words {
  0%,20%{
      content: "Convert clicks into clients.";
  }
  21%,40%{
      content: "Drive results and sales.";
  }
  41%,60%{
      content: "Turn visitors into leads.";
  }
  61%,80%{
      content: "Fuel your business growth.";
  }
  81%,100%{
      content: "Maximize your ROI.";
  }
}

@keyframes typing {
  10%,15%,30%,35%,50%,55%,70%,75%,90%,95%{
      width: 0;
  }
  5%,20%,25%,40%,45%,60%,65%,80%,85%{
      width: calc(100% + 8px);
  }
}