*{
  margin: 0;
  padding: 0;
  outline: 0;
}
a{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
ul,ol{
  list-style-type: none;
}
img{
  vertical-align: middle;
  border: 0;
}
h1,h2,h3,h4,h5,h6,.nav-link{
  font-family: 'Quicksand', sans-serif
}
p,ul,ol,a,.btn,.form-control,label{
  font-family: 'Work Sans', sans-serif;
}

/* ==========================================Navbar Part Css=========================================== */
.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}
.navbar-light .navbar-nav .nav-link::before{
  position: absolute;
  content: '';
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #f9c847;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
}
.navbar-light .navbar-nav .nav-link:hover::before{
  opacity: 1;
  top: 0;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #f9c847;
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding-left: 15px;
  padding-right: 15px;
}
.trial-btn a{
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  background: #f9c847;
  padding: 12px 30px;
  margin-left: 10px;
  border-radius: 5px;
}
.navbar{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.menu-bg{
  background: #222222;
  position: fixed;
  animation: bg 1s;
  width: 100%;
  top: 0;
  z-index: 99999;
  box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}
@keyframes bg{
  from{top: -50px;}
  to{top: 0px;}
}

/* ===========================================Banner Part Css ===========================================*/
#banner{
  background: #222222;
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner-img img{
  position: absolute;
  top: 100px;
  right: 0;
  transition: .3s;
}
.banner-bg{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
.banner-content h1{
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
}
.banner-content p{
  color: #f9c847;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
}
.banner-content .btn{
  color: #ffffff;
  background: #ff5e78;
  border: 0;
  padding: 14px 30px;
}

/* =========================================Animation Part Css====================================== */
.slider-dotted {
	position: absolute;
	z-index: 1;
}
.sd-one{
	left: 8%;
	top: 38%;
	animation: moveShape 20s linear 2s infinite alternate;
	-webkit-animation: moveShape 20s linear 2s infinite alternate;
}
@keyframes moveShape {
  0% {
    left: 10%;
    top: 37%;
  }

  25% {
    left: 12%;
    top: 50%;
  }

  50% {
    left: 8%;
    top: 45%;
  }

  75% {
    left: 6%;
    top: 30%;
  }

  100% {
    left: 10%;
    top: 20%;
  }
}
.sd-two {
	left: 46%;
	top: 24%;
	animation: moveShape2 20s linear 2s infinite alternate;
}
@keyframes moveShape2 {
  0% {
    left: 46%;
    top: 24%;
  }

  25% {
    left: 50%;
    top: 30%;
  }

  50% {
    left: 40%;
    top: 35%;
  }

  75% {
    left: 45%;
    top: 30%;
  }

  100% {
    left: 30%;
    top: 25%;
  }
}
.sd-three {
	left: 5%;
	top: 80%;
	animation: moveShape3 20s linear 2s infinite alternate;
}
@keyframes moveShape3 {
  0% {
    left: 5%;
    top: 80%;
  }

  25% {
    left: 10%;
    top: 90%;
  }

  50% {
    left: 8%;
    top: 95%;
  }

  75% {
    left: 3%;
    top: 80%;
  }

  100% {
    left: 15%;
    top: 90%;
  }
}
.sd-four {
	left: 22%;
	top: 94%;
	animation: moveShape4 20s linear 2s infinite alternate;
}
@keyframes moveShape4 {
  0% {
    left: 22%;
    top: 94%;
  }

  25% {
    left: 30%;
    top: 90%;
  }

  50% {
    left: 35%;
    top: 100%;
  }

  75% {
    left: 40%;
    top: 94%;
  }

  100% {
    left: 22%;
    top: 94%;
  }
}

/* bounce-animate */
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }

@keyframes float-bob {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }

/* ======================================Feature Part Css============================================ */
#cmn-title{
  padding-top: 100px;
}
.title{
  text-align: center;
}
.title h2{
  color: #f9c847;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}
.title h2::before{
  position: absolute;
  content: '';
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: #845ec2;
}
.title h2::after{
  position: absolute;
  content: '';
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: #845ec2;
}
.title p{
  color: #ff5e78;
  font-size: 18px;
  font-weight: 400;
  padding-top: 15px;
  padding-bottom: 40px;
}

.feature-items{
  text-align: center;
  padding: 25px;
  border: 1px solid rgb(255, 94, 120,.6);
  border-radius: 5px;
  height: 100%;
}
.feature-items i{
  color: #fff;
  background: #f9c847!important;
  width: 70px!important;
  height: 70px!important;
  line-height: 70px!important;
  font-size: 30px!important;
  border-radius: 50%;
}
.feature-items h6{
  color: #845ec2;
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-items p{
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.slick-bg{
  position: relative;
}
.slick-bg i{
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background: #34495e;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.left{
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  z-index: 99;
}
.right{
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  z-index: 99;
}

/* ========================================Nav-tabs Part Css========================================== */
#feature{
  padding-top: 100px;
}
#feature .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background: #f9c847;
  color:#ffffff;
}
#feature .nav-pills .nav-link{
  font-size: 18px;
  color: #222222;
  font-weight: 600;
}
.audit-details{
  background: rgb(244, 249, 249,.5);
  padding: 20px;
  border-radius: 5px;
  border: 1px solid rgb(221, 221, 221,.5);
  transition: all linear .3s;
}
.audit-details:hover{
  box-shadow: 2px 2px 6px 1px rgba(249,200,71,0.21);
  -webkit-box-shadow: 2px 2px 6px 1px rgba(249,200,71,0.21);
  -moz-box-shadow: 2px 2px 6px 1px rgba(249,200,71,0.21);
}
.audit-details h6{
  color: #845ec2;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 10px;
}
.audit-details p{
  color: #34495e;
  font-size: 18px;
  font-weight: 500;
}
.audit-details ul{
  margin-top: 20px;
}
.audit-details ul li{
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.audit-details ul li i{
  color: #f9c847;
  margin-right: 5px;
}

/* =====================================Why Serpwizz Part Css======================================== */
#why{
  padding-top: 100px;
}
.offer-content h6{
  color: #f9c847;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 15px;
}
.offer-content p{
  color: #333;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-align: justify;
}
.offer-content span{
  color: #845ec2;
  font-weight: 500;
}
#offer{
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ==================================Funfact Part Css============================================= */
#funfact{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #34495e;
}
.funfact-content h6{
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}
.funfact-content p{
  color: #f9c847;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}
.funfact-btn{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.funfact-btn a{
  color: #fff;
  background: #ff5e78;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
}

/* ==========================================Footer Part Css=========================================== */
#footer{
  padding-top: 25px;
  padding-bottom: 25px;
  background: #333;
}
.footer-content{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.footer-content h6{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.footer-icon{
  text-align: right;
}
.footer-icon i{
  color: #fff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #f9c847;
  margin-left: 8px;
  transition: all linear .3s;
}
.footer-icon i:hover{
  background: #f9c847;
}

/* ===============================================================================================
                                           Back to Top Part Css
=================================================================================================== */
.back-to-top{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  display: none;
}
.back-to-top i{
  color: #f5f5f5;
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #f9c847;
  border: 1px solid #f9c847;
  border-radius: 50%;
}

/* ======================================Preloader Part Css========================================== */
.loader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: 99999;
  transition: 1s;
  background: #222;
}
.span{
  position: absolute;
  transform: translate(-50%, 50%);
  width: 120px; 
  height: 120px;
  top: 35%;
  border: 5px solid #f9c847;
  z-index: 1;
  animation: animar 2.5s linear infinite;
}
.span:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f9c847;
  animation: animarbg 2.5s linear infinite;
}

@keyframes animar {
    0% {
        transform: translate(-50%, 50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, 50%) rotate(180deg);
    }
    50% {
        transform: translate(-50%, 50%) rotate(180deg);
    }
    75% {
        transform: translate(-50%, 50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, 50%) rotate(360deg);
    }
}
@keyframes animarbg {
    0% {
        height: 0;
    }
    25% {
        height: 0;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0;
    }
}