Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../front/./css
الملفات الموجودة في هذا الـ Path:
.
..
responsive.css
style.css

مشاهدة ملف: style.css

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

:root{
  --color:#6C5CE7;
}
body{
  background-color: #F7F8FB !important;
}
*{
  font-family: 'Poppins', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  text-decoration: none;
}

html{
  font-size: 62.5%;
}

body{
  overflow-x: hidden;
}

.heading{
  margin:2rem;
  padding-top: 6rem;
  display: inline-block;
  font-size: 3.5rem;
  color:var(--color);
  position: relative;
  letter-spacing: .2rem;
}

.heading::before, .heading::after{
  content: '';
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top:.4rem solid var(--color);
  border-left:.4rem solid var(--color);
}

.heading::before{
  top:5.8rem; left: -2rem;
}

.heading::after{
  bottom:-.5rem; right: -2rem;
  transform: rotate(180deg);
}

.btn{
  outline: none;
  border: none;
  border-radius: 5rem;
  background: var(--color);
  color:#fff;
  cursor: pointer;
  height:3.5rem;
  width: 15rem;
  font-size: 1.7rem;
  box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.btn:hover{
  letter-spacing: .1rem;
  opacity: .8;
}







a:hover{
  text-decoration: none;
}






.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding:2rem 2rem;
  position: fixed;
  top:0; left: 0;
  z-index: 100;
}

.header .logo{
  font-size: 2.5rem;
  color:#fff;
}

.header .logo i{
  padding:0 .5rem;
}

.header .navbar ul{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .navbar ul li{
  margin:0 1.5rem;
}

.header .navbar ul li a{
  font-size: 2rem;
  color:#fff;
    font: 700 1rem/1rem "Open Sans", sans-serif;
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
}

.header .navbar ul li a:hover{
  color:#ccc;
}

.header .fa-bars{
  color:#fff;
  cursor: pointer;
  font-size: 3rem;
  display: none;
}







.home{
  min-height: 100vh;
  width: 100vw;
  background:linear-gradient(purple, var(--color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  padding:0 1rem;
  position: relative;
  overflow: hidden !important;
}

.home .banner{
  color:#fff;
  font-size: 5rem;
  text-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.home .slogan{
  color:#eee;
  font-size: 2.5rem;
  font-weight: 400;
}

.home button{
  height: 4rem;
  width: 18rem;
  background:#fff;
  color: #444;
  cursor: pointer;
  border:none;
  outline: none;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 400;
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.home button:hover{
  letter-spacing: .1rem;
}

.home .wave{
  position: absolute;
  bottom: -.5rem;
  left: 0;
  height:11rem;
  width: 100%;
  background: url(../images/wave.png);
  background-size: 100rem 11rem;
  background-repeat: repeat-x;
  animation:waves 15s linear infinite;
}

.home .wave2{
  animation-direction: reverse;
  opacity: .2;
}

.home .wave3{
  animation-duration: 4s;
  opacity: .5;
}

@keyframes waves{
  0%{
    background-position-x: 0;
  }
  100%{
    background-position-x: 100rem;
  }
}

.home .fa-cog{
  position: absolute;
  font-size: 30rem;
  opacity: .15;
  color:#fff;
  animation: rotate 10s linear infinite;
}

.home .nut1{
  top:10%; left: -15rem;
}

.home .nut2{
  bottom:23%; right: -13rem;
  animation-direction: reverse;
}

@keyframes rotate{
  100%{
    transform: rotate(360deg);
  }
}

.about{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about .row{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding:0 4rem;
}

.about .row .content{
  text-align: left;
}

.about .row .image img{
  width: 50vw;
}

.about .row .content h3{
  font-size: 3rem;
  color: var(--color);
}

.about .row .content p{
  font-size: 1.5rem;
  color: #333;
  padding:1rem 0;
}

.about::before, .about::after{
  content: '';
  position: absolute;
  z-index: -1;
  opacity:.2;
  border-radius: 50%;
}

.about::before{
  height:50rem;
  width:50rem;
  background:#ccc;
  bottom:-10rem; left:-10rem;
}

.about::after{
  height:60rem;
  width:60rem;
  background:var(--color);
  top:-10rem; right:-10rem;
}

.service{
  width: 100vw;
  text-align: center;
}

.service .row{
  margin:2rem 0;
  padding:0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service .row .image img{
  width:50vw;
  height:55vh;
}

.service .row .content{
  text-align: left;
  padding:0 3rem;
}

.service .row .content h3{
  font-size: 3rem;
  color:var(--color);
}

.service .row .content p{
  font-size: 1.5rem;
  color:#333;
  padding:1rem 0;
}

.team{
  min-height: 75vh;
  width:100vw;
  text-align: center;
  background-color: #222;;
}

.team .heading{
  color:#fff;
}

.team .heading::before, .team .heading::after{
  border-color:#fff;
}

.team .row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.team .row .card{
  /*height:35rem;*/
  width:25rem;
  background:#fff;
  text-align: center;
  margin:2rem 2rem;
  position: relative;
  overflow: hidden;
}

.team .row .card .image{
  margin:1rem 0;
  padding-top: 4rem;
}

.team .row .card .image img{
  height:13rem;
  width:13rem;
  border-radius: 50%;
  border:.5rem solid #fff;
  box-shadow: 0 0 .5rem rgba(0,0,0,.3);
  object-fit: cover;
}

.team .row .card .info h3{
  font-size: 2rem;
  color:#333;
}

.team .row .card .info span{
  font-size: 1.8rem;
  color:var(--color);
}

.team .row .card .info .icons a{
  margin-top: 4rem;
  padding:0 1rem;
  font-size: 2rem;
  color:#333;
}

.team .row .card .info .icons a:hover{
  color:var(--color);
}

.team .row .card::before, .team .row .card::after{
  content: '';
  position: absolute;
  border-radius: 50%;
  height:15rem;
  width:15rem;
  z-index: -1;
}

.team .row .card::before{
  background:var(--color);
  top:-3rem; right: -4rem;
}

.team .row .card::after{
  background:#ccc;
  bottom:-3rem; left: -4rem;
}

.contact{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
}

.contact .row{
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .row .image img{
  height: 70vh;
  width:50vw;
}

.contact .row .form-container{
  width: 50%;
  text-align: left;
  padding:0 5rem;
}

.contact .row .form-container input, textarea{
  outline: none;
  border:none;
  height:4rem;
  background: none;
  border-radius: .5rem;
  box-shadow: .2rem .2rem .5rem rgba(0,0,0,.2);
  padding:0 1rem;
  margin:1rem 0;
  font-size: 1.6rem;
}

.contact .row .form-container .inputBox{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contact .row .form-container .inputBox input[type="text"]{
  width: 49%;
}

.contact .row .form-container input[type="email"]{
  width: 100%;
}

.contact .row .form-container textarea{
  width: 100%;
  height:20rem;
  padding:1rem;
  resize: none;
}

.contact .row .form-container input[type="submit"]{
  background-color: var(--color);
  color:#fff;
  cursor: pointer;
  height:4rem;
  width: 10rem;;
}

.contact .row .form-container input[type="submit"]:hover{
  opacity: .8;
}

.faq{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  padding:0 2rem;
}

.faq .row{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 2rem;
}

.faq .row .image img{
  height:70vh;
  width:50vw;
}

.faq .row .accordion-container{
  width: 50%;
  text-align: left;
}

.faq .row .accordion-container .accordion .accordion-header{
  background-color: var(--color);
  margin:1rem 0;
  box-shadow: .1rem .1rem .3rem rgba(0,0,0,.3);
  cursor: pointer;
}

.faq .row .accordion-container .accordion .accordion-header span{
  display: inline-block;
  text-align: center;
  height:4rem;
  width:5rem;
  line-height: 4rem;
  font-size: 2rem;
  background:#fff;
  color:#333;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.faq .row .accordion-container .accordion .accordion-header h3{
  display: inline;
  color: #fff;
  font-weight: 400;
  padding-left: .5rem;
  font-size: 1.5rem;
}

.faq .row .accordion-container .accordion .accordion-body{
  padding:1rem;
  color:#444;
  box-shadow: .1rem .1rem .3rem rgba(0,0,0,.3);
  font-size: 1.3rem;
  display: none;
}

.faq .row .accordion-container .accordion:nth-child(1) .accordion-body{
  display: block;
}

.footer{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:1rem 2rem;
  margin-top: 1rem;
  background:var(--color);
}

.footer h1{
  color:#fff;
  letter-spacing: .1rem;
  font-weight: 400;
}

.footer .icons a{
  color:#fff;
  font-size: 1.8rem;
  padding:0 1rem;
}














/* media queries  */

@media (max-width:768px){

  html{
    font-size: 50%;
  }

  .header .fa-bars{
    display: block;
  }

  .header .navbar{
    position: fixed;
    top:-120%; left: 0;
    height: auto;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    border-top: .1rem solid rgba(0,0,0,.3);
  }

  .header .navbar ul{
    height: 100%;
    width: 100%;
    flex-flow: column;
  }

  .header .navbar ul li{
    margin:1rem 0;
  }

  .header .navbar ul li a{
    color: #444;
    font-size: 2.4rem;
  }

  .header .fa-times{
    transform: rotate(180deg);
  }

  .header .nav-toggle{
    top:5.8rem;
  }

  .home .banner{
    font-size: 4rem;
  }

  .home .slogan{
    font-size: 1.7rem;
  }

  .about .row{
    flex-flow: column-reverse;
    padding:0 2rem;
  }

  .about .row .image img{
    width: 100vw;
  }

  .service .row{
    flex-flow: column-reverse;
  }

  .service .row:nth-child(even){
    flex-flow: column;
  }

  .service .row .image img{
    width: 100vw;
  }

  .service .row .content{
    padding:0;
  }

  .contact .row{
    flex-flow: column;
  }

  .contact .row .image img{
    width: 100vw;
  }

  .contact .row .form-container{
    width: 100%;
    padding:0 1.5rem;
  }

  .faq{
    padding:0;
  }

  .faq .row{
    padding:0 1rem;
    flex-flow: column;
  }

  .faq .row .image img{
    width:100vw;
  }

  .faq .row .accordion-container{
    width:100%;
  }

}

@media (max-width:550px){
  .footer{
    flex-flow: column;
  }
  .footer h1{
    text-align: center;
  }
  .footer .icons{
    padding:2rem 0;
  }
}

img.home-img-main {
 width: 100%;
}
.home-section-img-one {
  width: 21%;
  position: absolute;
  top: 31%;
  left: 21%;
}
img.home-img-one {
 width: 100%;
}
.home-section-img-two {
  width: 23%;
  position: absolute;
  top: 46%;
  left: 28%;
}

.home-section-img-three {
  width: 20%;
  position: absolute;
  top: 25%;
  right: 25%;
}
.home-section-img-four {
  width: 25%;
  position: absolute;
  top: 30%;
  right: 25%;
}

.home-images-section {
  width: 100%;
  height: 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 70px;
  display: flex;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.home-all-images {
  width: 100%;
  margin: 0 auto;
  padding: 185px 0px;
}

.home-shadow-image {
  width: 100%;
  height: 100%;
}
/* .home-shadow-img-sec{

} */
.home-shadow-img {
  width: 100%;
  height: 640px;
  max-width: 992px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  overflow: hidden;
}
.home-sec-end-content {
  z-index: 3;
  width: 100%;
  height: 280px;
  background-image: linear-gradient(rgba(255,255,255,0),#f6f8fb 50%);
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.home-end-content {
  font-size: 30px;
  font-weight: 800;
  width: 30%;
}
.home-see-more {
  /* font-size: 20px;
  border: 1px solid #3667F4;
  padding: 10px 0px 10px 0px;
  border-radius: 36px;
  width: 200px; */
  text-align: center;
}
a.home-sec-see-more-btn {
  color: #3667F4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  border: 1px solid #3667F4;
  padding: 10px 30px 10px 30px;
  border-radius: 36px;
  text-align: center;
}
a.home-sec-see-more-btn:hover{
  background-color: #A568CA;
  color: #fff;
  border: none;
}
img.reach-first-img {
  width: 100%;
  height: auto;
}
.reach-first-img-sec {
  width: 500px;
  margin: 0 auto;
}
.reach-first-content {
  font-size: 35px;
  font-weight: 800;
}
.reach-section-wrapper {
  padding: 60px;
}
.reach-first-section {
  background-color: #fff;
  padding: 40px;
}
.reach-first-contnet-sub-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(171deg,#1179fc,#dc82fc);
  -webkit-background-clip: text;
  background-clip: text;
  padding-right: 10px;
}
a.start-for-free-btn {
  font-size: 20px;
  padding: 10px 40px;
  background: white;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 1px;
  border: 1px solid #1179FC;
  text-transform: uppercase;
  font-weight: 900;
}
a.start-for-free-btn:hover{
  text-decoration: none;
  background-color: #DC82FC;
  color: #fff;
  border: none;
}
.start-for-free-button {
  margin: 20px 0px;
}
.reach-first-des {
  font-size: 20px;
  padding: 20px 0px;
}
/* .faq-heading.active::after {
  content: "\2212";
} */
/* .faq-heading::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
} */
.faq-heading {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  margin: 10px 0px;
}

/* .accordion-box-link::before{
  content: "\2212";
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  color: #000;
  top: 0;
}
.collapse.show::before{
    content: "\2212";
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    color: #000;
    top: 0;
} */
.faq-heading-content {
  font-size: 23px;
  color: #000;
  font-weight: 700;
}
.faq-title-first-part {
  color: #b9bcbf;
}
a.accordion-box-link:hover {
  text-decoration: none;
}
.faq-content-devider {
  width: 100%;
  height: 1px;
  opacity: .25;
  background-image: radial-gradient(circle closest-corner,#050917,#050917 50%,#fff);
  margin-bottom: 40px;
}
.faq-content-text {
  font-size: 14px;
}
a.faq-start-for-free-btn {
  font-size: 15px;
  padding: 10px 24px;
  background: #1179fc;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 1px;
  border: 1px solid #1179fc;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
a.faq-start-for-free-btn:hover{
  text-decoration: none;
  background-color: #DC82FC;
  color: #fff;
  border: none;
}
.faq-img-sec {
  max-width: 500px;
  height: auto;
}
.faq-img{
  width: 100%;
  height: 100%;
}
.faq-text-content {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg,#1179fc,#dc82fc);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 13px;
  padding: 12px 15px;
}
.unibox-main-banner-sec {
  padding: 0px 100px;
}
.unibox-main-banner-title {
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.unibox-main-banner-sub-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(156deg,#1179fc,#dc82fc 60%);
  -webkit-background-clip: text;
  background-clip: text;
}
.unibox-main-banner-des {
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding-top: 20px;
}
.unibox-btn-section{
  margin-top: 80px;
}
.unibox-description-sec-img {
  max-width: 850px;
  margin: 0 auto;
  padding-top: 40px;
}
.unibox-main-img{
  width: 100%;
  height: 100%;
}
.unibox-icon{
  width: 100%;
}
.unibox-des-sec-icon {
  position: absolute;
  top: 20%;
  left: 8%;
  background: #f9c304;
  padding: 16px;
  border-radius: 11px;
  width: 7%;
}
img.unibox-like-img {
  width: 100%;
}
.unibox-like-img-sec {
  position: absolute;
  top: 31%;
  right: 9%;
  background: #f6f6f6;
  padding: 15px;
  border-radius: 13px;
  width: 16%;
}
.analytics-sec-content-title {
  font-size: 40px;
  font-weight: 700;
}
.analytics-sec-des {
  font-size: 20px;
  padding: 20px 0px;
}
.analytics-sec-content-sub-title {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg,#1179fc,#dc82fc);
  -webkit-background-clip: text;
  background-clip: text;
}
.analytics-main-img-sec {
  width: 450px;
  margin: 0 auto;
}
.analytics-main-img{
  width: 100%;
}
.analytics-one-img-sec {
  width: 190px;
  position: absolute;
  top: 65px;
  left: 40px;
}
img.analytics-one-img {
  width: 100%;
}
.analytics-filter-img-sec {
  width: 200px;
  position: absolute;
  top: 30px;
  right: 0;
}
.analytics-filter-img{
  width: 100%;
}
.analytics-filter-img-sec {
  width: 130px;
  position: absolute;
  top: 120px;
  right: 80px;
}
.analytics-two-play-img-sec {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 35%;
}
img.analytics-two-play-img {
  width: 100%;
}
img.analytics-two-img {
  width: 100%;
}
.analytics-two-img-sec {
  width: 70%;
}
.analytics-settings-img{
  width: 100%;
}
.analytics-settings-img-sec {
  width: 10%;
  position: absolute;
  left: 13%;
}
img.analytics-video-img {
  width: 100%;
}
.analytics-video-img-sec {
  width: 7%;
  position: absolute;
  top: 20%;
  right: 10%;
}
.analytics-sec-wrapper-content-part-two {
  padding: 90px 0px;
}
.learner-sec-main-banner {
  background: #000;
  padding: 50px;
  border-radius: 20px;
}
.learner-sec-des {
  margin: 40px 0px;
  font-size: 20px;
  color: #fff;
}
.learner-sec-content-title {
  font-size: 50px;
  color: #fff;
  font-weight: 800;
}
.learner-man-img-sec {
  width: 70%;
  position: absolute;
  top: 2%;
  right: 46%;
}
.learner-man-img{
  width: 100%;
}
.learner-sec-img {
  width: 100%;
}
img.learner-main-img {
  width: 100%;
}
.learner-women-img-sec {
  width: 61%;
  position: absolute;
  top: 41%;
  left: 45%;
}
img.learner-women-img {
  width: 100%;
}
.testimonial-heading-content {
  font-weight: 500;
  padding-top:50px;
  padding-bottom:40px;
}
span.testimonial-heading-first-part {
  color: #737373;
}
.testimonial-content-sec {
  background-color: #fff;
  padding: 24px;
  font-size: 20px;
}
.testimonial-person-details {
  display: flex;
  align-items: center;
}
img.testimonial-person-img {
  width: 100%;
}
.person-image-sec {
  width: 75px;
  height: 100%;
}

.testimonial-person-name {
  font-size: 18px;
  font-weight: 500;
}
.testimonial-person-designation {
  font-size: 16px;
  color: #5a5555;
}
.testimonial-person-text-sec {
  margin-left: 30px;
}
.testimonial-content-des {
  margin-bottom: 24px;
}
.see-more-testimonial-btn{
  text-align: center;
  margin: 70px 0px;
}
.footer-banner-title {
  font-size: 65px;
  font-weight: 700;
  color: #030303;
  text-align: center;
}
.footer-banner-section {
  background-color: #FCFCFC;
  padding: 50px 30px;
  border-radius: 25px;
}
.footer-banner-sub-title {
  text-align: center;
  font-size: 20px;
  margin: 40px 0px;
}
.footer-img-icon{
  width: 100%;
}

.footer-img-icon-one-section {
  width: 6%;
  position: absolute;
  top: 24%;
  left: 10%;
}
.footer-img-icon-four-section {
  width: 6%;
  position: absolute;
  top: 24%;
  right: 9%;
}
.footer-img-icon-two-section {
  width: 6%;
  position: absolute;
  top: 38%;
  left: 23%;
}
.footer-img-icon-three-section {
  width: 6%;
  position: absolute;
  top: 38%;
  right: 22%;
}
.footer-btn-section{
  margin-top: 70px;
}
.footer-img-sec{
  width: 100%;
  height: auto;
}
.footer-image-sec{
  width: 300px;
}
.footer-banner-content-sec {
  margin-bottom: 100px;
}
.footer-part{
  margin: 40px 0px;
}
.footer-item-name {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
a.footer-link-text {
  color: #d1cfcf;
  font-size: 18px;
}
.footer-link-text-sec {
  padding: 7px 0px;
}
a.footer-link-text:hover{
  text-decoration: none;
  color: #d1cfcf;
}
.footer-item-name {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-copy-right-text {
  font-size: 20px;
  color: #fff;
  padding: 20px 0px;
}
.testimonial-slider-content-sec {
  padding: 30px;
  background: #fff;
}
img.testimonial-slider-img {
  width: 100%;
  height: 100%;
}
.testimonial-img-slider-sec {
  width: 100%;
  height: auto;
}
.testimonial-slider-title-sec {
  font-size: 24px;
  margin: 20px;
}
.testimonial-slider-first-title {
  color: #8f8f8f;
}
.testimonial-person-info-sec {
  padding: 20px;
  font-size: 24px;
}
.testimonial-person-name-text {
  color: #2c2b2b;
}
.testimonial-designation-sec {
  color: #878787;
}
.testimonial-invert-img{
  width: 100%;
}
.testimonial-invert-img-sec {
  width: 80px;
}
.testimonial-person-info-sec {
  padding: 20px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.testimonial-slider-btn-sec {
  display: flex;
}
.testimonial-arrow-icon {
  font-size: 22px;
  padding: 12px;
  background: white;
  margin: 10px;
  border: 1px solid #1179fc;
  border-radius: 50%;
}
.testimonial-arrow-icon:hover{
  background-color: #1179fc;
  color: #fff;
}
.testimonial-ratting-img{
  width: 100%;
}
.testimonial-ratting-icon-sec {
  padding: 60px 0px;
}
.testimonial-ratting-text-sec {
  font-size: 15px;
  font-weight: 600;
  margin-top: 30px;
}
.testimonial-ratting-img-sec {
  width: 100px;
  height: 100%;
}
.testimonial-ratting-title {
  font-size: 15px;
  font-weight: 600;
}
.testimonial-ratting-text-section {
  margin: 25px 0px;
}
.testimonial-ratting-sub-title {
  font-size: 14px;
  margin: 15px 0px;
}
.home-section-main-img {
  width: 500px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 150px;
}
.home-section {
  padding-top: 60px;
}

.home-section-title {
  font-size: 80px;
  color: linear-gradient(to right, #30CFD0 0%, #330867 100%);
  text-align: center;
  font-weight: 900;
  background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
}
.home-section-title {
  background: linear-gradient(90deg, #1179fc 25%, #dc82fc);
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}

.home-section-des {
  color: #fff;
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
}

.home-btn-section {
  text-align: center;
  margin: 75px 0px;
}

a.start-home-btn {
  font-size: 17px;
  background: #1179fc;
  padding: 10px 35px;
  border-radius: 24px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

a.start-home-btn:hover {
  background: #dc82fc;
  text-decoration: none;
  color: #fff;
}

.home-require-sec {
  color: #fff;
  display: flex;
  justify-content: space-evenly;
}

.home-require-content {
  display: flex;
  justify-content: center;
  align-items: center;
}



.require-check-icon {
  font-size: 15px;
  color: #ffffff;
  background-color: #1179fc;
  padding: 10px;
  border-radius: 50px;
}

.home-require-text {
  font-size: 17px;
  margin-left: 25px;
  font-weight: 500;
}
.monthly-growth-content {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
}
i.fa.fa-plane.monthly-icon {
  transform: rotate(313deg);
  background: #4360f2;
  padding: 20px 21px 23px 20px;
  font-size: 20px;
  color: #fff;
  border-radius: 12px;
}
.monthly-growth-title {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 40px;
}
.mothly-price-sec {
  font-size: 50px;
  font-weight: 600;
}
span.mothly-price-range {
  font-size: 20px;
  font-weight: 400;
}
i.fa.fa-check.groth-check-icon {
  font-size: 13px;
  background: #4760f4;
  color: #fff;
  padding: 6px 8px 7px 8px;
  border-radius: 50px;
}
.monthly-growth-feature-content {
  display: flex;
  align-items: center;
}
.monthly-growth-feature-name {
  font-size: 16px;
  margin-left: 25px;
}
.monthly-growth-feature-content {
  display: flex;
  align-items: center;
  margin: 20px 0px;
}
.monthly-growth-feature-sec {
  margin: 40px 0px;
}
.monthly-and-yearly-tab-content {
  width: 50%;
  margin: 0 auto;
  padding: 40px 0px;
  text-align: center;
}
.pricing-nav-tab-sec {
  padding: 1px 0px;
  background: white;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 130px;
  width: 50%;
}
li.nav-item.price-nav-tab-item {
  font-size: 18px;
  font-weight: 800;
}
.nav.nav-pills.mb-3 {
  justify-content: center !important;
}
.nav.price-nav-pills.nav-pills.mb-3{
  justify-content: space-around !important;
}
.price-nav-pills {
  display: flex !important;
  justify-content: space-evenly !important;
  margin-top: 12px;
}

.pricing-title {
  color: #fff;
  font-size: 60px;
  text-align: center;
  font-weight: 500;
  padding: 30px 0px;
}

.pricing-des {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
span.email-warmup {
  color: #d17bef;
  border: 1px solid #d17bef;
  padding: 10px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.warmup-sec-content-title {
  font-size: 50px;
  font-weight: 500;
  padding: 40px 0px;
  color: #fff;
  letter-spacing: 0px;
  line-height: 66px;
}
.warmup-section-des {
  color: #fff;
  font-size: 20px;
  margin-bottom: 50px;
}
.warmup-content-img-sec {
  width: 100%;
  height: auto;
  padding: 15px;
  background: #333333;
  border-radius: 15px;
}
.warmup-banner-img {
  width: 100%;
  height: 100%;
}
.warmup-testimonial-main-title {
  color: #c7c5c5;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  padding: 90px 100px 90px 100px;
}
.leads-testimonial-main-title{
  color: #c7c5c5;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  padding: 140px 100px 140px 100px;
}
.leads-testimonial-sub-title{
  color: #ffffff;
}
.warmup-testimonial-sub-title{
  color: #000000;
}
.growing-warmup-title {
  font-size: 50px;
  font-weight: 500;
  padding: 40px 0px;
  color: #fff;
  letter-spacing: 0px;
  line-height: 66px;
  text-align: center;
}
.growing-warmup-des {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 60px;
}
.about-title-sec {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
}
.about-sub-title{
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg,#1179fc,#dc82fc);
  -webkit-background-clip: text;
  background-clip: text;
}
.about-us-des {
  color: #fff;
  font-size: 20px;
  margin: 20px 0px;
}
img.about-us-img {
  width: 100%;
  height: 100%;
}
.about-us-banner-img-sec {
  width: 100%;
  height: auto;
}
.about-us-client-sec-content {
  background: #3C4CC4;
  color: #fff;
}
.total-numbers {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
.total-user-type {
  text-align: center;
  font-size: 30px;
  color: #ebe8d5;
}
.about-us-client-sec-content {
  background: #3C4CC4;
  color: #fff;
  padding: 40px 0px;
  border-radius: 20px;
}
.about-us-banner-content{
  padding: 30px 0px;
}
.about-us-client-content{
  padding-top: 150px;
}
.empowering-title-sec {
  color: #000000;
  font-size: 35px;
}
.empowering-des {
  color: #000000;
  font-size: 20px;
}
.empowerin-content-sec{
  padding: 150px 0px;
}
.warmup-banner-content-sec {
  padding: 80px 0px;
}
.verified-lead-section{
  padding: 100px 0px;
}
.reach-buyers-img-sec {
  width: 100%;
  height: 100%;
}
img.reach-buyers-img {
  width: 100%;
  height: auto;
}
.reach-buyers-sec-wrapper{
  padding: 60px 0px;
}
.reach-buyers-title {
  font-size: 40px;
  font-weight: 500;
}
.reach-buyers-des {
  font-size: 20px;
  padding: 20px 0px;
}
section.faq-section {
  padding: 30px 0px;
}
.about-us-text-sec {
  font-size: 15px;
  color: #fff;
  margin: 10px 0px;
}
.f-23{
  font-size: 23px !important;
}
.f-13{
  font-size: 13px !important;
}
img.analysis-img {
  width: 100%;
  height: 100%;
}
.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  color: #fff;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 99999999999999 !important;
}
section.analytics-sec-wrapper-content {
  padding-bottom: 70px;
}