body {
    margin: 0;
}
.topDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 3px solid rgba(0, 134, 213, 1);
}

.Logo {
    width: 160px;
}
  
.topDiv #topMenu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    color: black;
}
.topDiv #topMenu a:hover {
    color: white;
    background: #00a4f1;
    border-radius: 39px;
}
@media only screen and (min-width: 764px) {
    #dropDown {
        display: none;
    }
}

@media only screen and (max-width: 764px) {
    #topMenu {
      display: none;
    }
    #dropDown {
        display: block;
        margin-right: 10%;
    }
}
#dropDownBtn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
#dropDownContent {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
#dropDownContent a{
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
#dropDownContent a:hover {
    background-color: #00a4f1;
    color: white;
}
#dropDown.open #dropDownContent {
    display: block;
    
}
.carousel {
    position: relative;
    width: 100%;
    height: 93vh;
}
  
.carousel-container{
    width: 100%;
    height: 90vh;
    padding: 0 80px 0 80px;
    color:rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-around;
}
#brs {
    width: 400px;
    align-self: center;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
#x2 {
    width: 400px;
    align-self: center;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
#cash {
    width: 350px;
    align-self: center;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
#refer {
    width: 400px;
    align-self: center;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

#brsImage{
    height: 60%;
    width: 65%;
    align-self: center;
    display: flex;
    border-radius: .6%;
}

#x2Image{
    height: 90%;
    width: 25%;
    align-self: center;
    display: flex;
    border-radius: 10px;
}
#cashImage{
    height: 90%;
    width: 25%;
    align-self: center;
    display: flex;
    border-radius: 10px;
}
#referralImage{
    height: 90%;
    width: 25%;
    align-self: center;
    display: flex;
    border-radius: 10px;
}
.carousel-container p {
    font-size: 13px;
    width: 450px;
    margin-bottom: 30px;
}
.getStarted {
    font-size: 13px;
    font-weight: 700;
    color: #00a4f1;
    background-color: white;
    font-family: 'poppins';
    padding: 12px 30px 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

@keyframes tonext {
    75% {
      left: 0;
    }
    95% {
      left: 100%;
    }
    98% {
      left: 100%;
    }
    99% {
      left: 0;
    }
  }
  
  @keyframes tostart {
    75% {
      left: 0;
    }
    95% {
      left: -300%;
    }
    98% {
      left: -300%;
    }
    99% {
      left: 0;
    }
  }
  
  @keyframes snap {
    96% {
      scroll-snap-align: center;
    }
    97% {
      scroll-snap-align: none;
    }
    99% {
      scroll-snap-align: none;
    }
    100% {
      scroll-snap-align: center;
    }
  }
  
* {
    box-sizing: border-box;
    scrollbar-color: transparent transparent;
    scrollbar-width: 0px;
  }
  
  *::-webkit-scrollbar {
    width: 0;
  }
  
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  
  *::-webkit-scrollbar-thumb {
    background: transparent;
    border: none;
  }
  
  * {
    -ms-overflow-style: none;
  }
  
  ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .carousel__viewport {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    overflow-x: scroll;
    counter-reset: item;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  
  .carousel__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    background-color: rgba(0, 134, 213, 1);
    counter-increment: item;
    outline: 0;
  }
  
  .carousel__slide:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-40%,70px);
    color: #fff;
    font-size: 2em;
  }
  
  .carousel__snapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    z-index: -1;
  }
  
  @media (hover: hover) {
    .carousel__snapper {
      animation-name: tonext, snap;
      animation-timing-function: ease;
      animation-duration: 5s;
      animation-iteration-count: infinite;
    }
  
    .carousel__slide:last-child .carousel__snapper {
      animation-name: tostart, snap;

    }
  }
  
  .carousel__navigation {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    text-align: center;

  }
  
  .carousel__navigation-list,
  .carousel__navigation-item {
    display: inline-block;
  }
  
  .carousel__navigation-button {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background-color: white;
    background-clip: content-box;
    border: 0.25rem solid transparent;
    border-radius: 50%;
    font-size: 0;
    transition: transform 0.5s;
    margin-bottom: 15px;
  }
  

  .carousel__prev,
  .carousel__next {
    position: absolute;
    top: 0;
    margin-top: 3%;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
  }
.running-numbers {
    width: 80%;
    height: 140px;
    background: rgba(249, 249, 249, 1);
    border-radius: 30px;
    margin-top: 3%;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    margin: auto;
}
.run-num-inner{
    width: 90%;
    display: flex; 
    flex-direction: column;     
    justify-content: center; 
    align-items: center;
    align-self: center;
}
#running-number{
    font-family: 'Nunito';
    font-size: 40px;
    font-weight: 900;
    line-height: 83px;
}
#running-header{
    font-family: 'Poppins';
    display: flex; 
    flex-direction: column;
}
.rectangle{
    width: 100%;
    height: 100%;
    padding: 0 50px 0 50px;
}
.rectangle-inside {
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.rectangle-inside h2 {
    font-family: 'Poppins';
    font-size: 30px;
    font-weight: 700;
    line-height: 63px;
    letter-spacing: 0em;
}
.rectangle-inside p {
    color: rgba(144, 144, 167, 1);
    width: 600px;
}
.rectangle-inside span {
    color: rgba(0, 134, 213, 1);
}
#searchPersinImg{
    width: 40%;   
    height: 35%;
    
}
.map {
    height: 100%;
    padding: 3%;
    background-color: rgba(0, 134, 213, 1);
    display: flex;
    justify-content: center; 
    
}
.map img {
    width: 70%;
    height: 90%;
    align-self: center; 
}
.weareon {
    margin-top: 3%;
    height: 100%;
    padding: 2% 2%;
}
#weareon-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#weareon-content span {
    font-size: 30px;
    font-weight: 900;
}

#weareon-content p {
    font-size: small;
    width: 500px;
    color: rgba(144, 144, 167, 1);
    text-align: center;
}
.platforms {
    display: flex;
    justify-content: space-around;
    align-items: center;  
    margin: 2%;
}
.platforms img {
    width: 70px;
    float: left;
}
.platforms span {
    font-size: 18px;
    font-weight: 900;
    margin-left: 10px;
    width: 260px;
    
}
.platforms p {
    font-size: small;
    color: rgba(121, 121, 121, 1);
    float: left;
}
.platforms a {
    font-size: small;
}
.ux-design {
    width: 25%; 
    background-color: rgba(249, 249, 249, 1);
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.app-dev {
    width: 25%;
    background-color: rgba(249, 249, 249, 1);
    padding: 20px;
    border-radius: 10px;
}

.web-dev {
    width: 25%;
    background-color: rgba(249, 249, 249, 1);
    padding: 20px;
    border-radius: 10px;
}

.data-visual {
    width: 25%; 
    background-color: rgba(249, 249, 249, 1);
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.data-analytics {
    width: 25%;
    background-color: rgba(249, 249, 249, 1);
    padding: 20px;
    border-radius: 10px;
}

.e-commerce {
    width: 25%;
    background-color: rgba(249, 249, 249, 1);
    padding: 20px;
    border-radius: 10px;
}

.adsense {
    width: 100%;
    height: 100%;
    background: rgba(0, 134, 213, 1);
    color: white;
    padding: 50px 150px;
}
.adsense-inner{
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;    
}
#adsense-mobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.adsense h3 {
    font-size: xx-large;
    
}
.adsense p {
    font-size: 16px;
    width: 400px;
}
.adsense-inner img {
    width: 450px;
    height: 360px;  
}
.learn-more {
    width: 100%;
    height: 100%;
    margin-top: 4%;
    margin-bottom: 4%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.features-column{
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}
.features-row{
    display: flex; 
    flex-direction: row; 
    justify-content: center;
}
.learn-more a {
    margin: auto;
    margin-bottom: 15px;
    width: 128px;
    padding: 10px;
    text-decoration: none;
    font-size: 10px;
    color: rgba(0, 134, 213, 1);
    background-color: rgba(239, 236, 255, 1);
    border-radius: 20px;
    display: block; 
    pointer-events: none;
}
.learn-more h3 {
    font-size: 30px;
    margin: auto;
    display: block;
    text-align: center;
    padding: 0;
}
.features {
    width: 400px;
    display: flex;
    flex-direction: row;
    background-color: rgba(249, 249, 249, 1);
    border-radius: 15px;
    padding: 15px;
}
.features img {
    width: 70px;
    height: 90px;
    align-self: center;
}
.features span {
    font-size: 17px;
    font-weight: 700;
}
.features p {
    font-size: 12px;
    color: rgba(121, 121, 121, 1);
    padding: 0;
    margin: 0;
}
.pricing {
    margin-top: 10px;
    width: 100%;
    height: 100%;
}
.pricing li {
   margin: 15px 0;
   color: rgba(121, 121, 121, 1);
   font-size: 14px;
}
.priceView{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 2%
}
.plan-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.plan-content span {
    font-size: 30px;
    font-weight: 900;
}
.plan-content p {
    font-size: small;
    width: 350px;
    color: rgba(144, 144, 167, 1);
    text-align: center;
    margin-bottom: 30px;
}
.keyword-plan {
    font-size: 16px;
    font-weight: 800;
    font-family: 'poppins';
    color: white;
    padding: 8px 45px;
    background-color: #00a4f1;
    

}
.traffic-plan {
    font-size: 16px;
    font-weight: 800;
    padding: 8px 50px;
    font-family: 'poppins';
    color: black;
    background-color: lightgrey;
    border: transparent;
    cursor: pointer;
    text-decoration: none;
}

.plans {
    width: auto;
    height: 550px;
    display: flex;
    flex-direction: row;
    border-radius: 15px;
    padding: 15px;
}
.plans-left {
    height: 480px;
    padding: 20px 60px;
    background-color: rgba(249, 249, 249, 1);
}
.plans-middle {
    padding-right: 50px;
    padding-left: 50px;
    color: white;
    background-color: #0086D5;
}
.plans-middle li {
    color: white;
}

.plans-right {
    height: 480px;
    padding: 20px 45px;
    background-color: rgba(249, 249, 249, 1);
}
.per-month {
    font-size: 26px;
    font-weight: 900;
}
.per-year {
    font-size: 13px;
    color: rgba(198, 138, 21, 1);
    padding: 5px;
    background-color: rgba(255, 238, 204, 1);
    border-radius: 20px;
}
.title {
    font-size: 22px;
    font-weight: 700;
    align-self: center;
}
.offer {
    background-color: rgba(255, 255, 255, 1);
    padding: 4px 9px;
    border-radius: 20px;
}
.popular {
    background: linear-gradient(90deg,#0b5cff 2.83%,#00ff91 97.64%);
    color: white;
    font-weight: 700;
}
.plans a {
    color: white;
    background-color:#00a4f1;
    padding: 7px;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    
}
.team-reviews{
    width: 100%;
    height: 80%;
    padding: 3% 7%;
    background-color: #00a4f1;
    margin-top: 2%;
}
.review-top h3 {
    font-size: 33px;
    font-weight: 900;
    width: 200px;
    margin: auto;
    text-align: center;
    color: white;
}
.review-top img {
    margin: auto;
    display: block;
    width: 30px;
    margin-top: 20px;
}
.review-content{
    display: flex; 
    justify-content: 
    space-around;
}

.said-by-who {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.review-content em {
    text-align: center;
    width: 60%;
    margin: 0 10px 10px;
}
.review-content em, .said-by-who span {
    color: white;
}
.team-member-pic {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    margin-top: 13px;
}
.team-member {
    font-size: 22px;
    font-weight: 800;
}



.footer {
    width: 100%;
    height: 100%;
    padding:0px 100px;
    margin-top: 2%; 
}

.footer-logo{
    width: 160px;
}
.footer a, .footer span{
    font-size: 15px;
}
.company-details {
    width: 250px;
}
.company-details span, .company-details p {
    font-size: 15px;
    color: rgba(121, 121, 121, 1);
    margin: 0;
}

.footer a {
    text-decoration: none;
    color: rgba(121, 121, 121, 1);
}
.footer li {
    margin: 10px 0;
    
}
.pages ul, .utility-pages ul, .address ul{
    color: rgba(121, 121, 121, 1);
}
.address span {
    color: rgba(121, 121, 121, 1);
}
.address img {
    width: 13px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    bottom: 0;
    margin: 0 45px 0 45px;
}
.social-media button{
    background-color: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    margin: 0 8px;
}

.innerFooter{
    display: flex; 
    justify-content: space-between;
    overflow: scroll;
}

.clientsec{
    margin: 2.5%;
    display: flex; 
    flex-direction: row;
    justify-content: center;
    background-color: #f2fbff;
    height: 150px;
}

.clientInfoLogo{
   height: 50px;
}

.clientInfoName{
    font-weight: 600;
    margin: 10px;
 }

.clientInfo{
    display: flex; 
    flex-direction: column;
    justify-content: center;
}

/* Mobile Resolution */
@media only screen and (max-width: 767px) and (orientation: portrait) {
    body {
        zoom:80%;
    }
    .carousel{
        height: 60vh;
    }
    .carousel-container{
        height: 60vh;
        zoom: 80%;
    }
    #brsImage,#x2Image,#cashImage,#referralImage{
        display:none;
    }
    .running-numbers{
        width: 90%;
        zoom: 70%;
        margin-top: 3%;
    }
    #searchPersinImg{
        display: none;
    }
    .rectangle{
        height: 100%;
        
    }
    .rectangle-inside{
        margin-top: 35px;
    }
    #searchTitleContent{
        zoom: 70%;
        text-align: center;
        margin: 0;
    }
    #searchDescContent{
        zoom: 85%;
        width: 100%;
        text-align: center;
        margin: 0;
        margin: auto;
    }
    .map{
        height: 40vh;
        margin-top: 5%;
    }
    .map img{
        
    }
    .weareon{
        height: 100%;
        margin-top: 10%;
    }
    #weareon-content p{
        width: 90%;
    }
    .platforms{
        flex-direction: column;
        justify-content: space-around;
    }
    .platforms div{
        margin-top: 10px;
    }
    .ux-design, .app-dev, .web-dev, .data-visual, .data-analytics, .e-commerce{
        width: 80%;
    }
    .adsense{
        zoom: 120%;
        height: 35vh;
        padding: 10px;
        margin-top: 5%;
        display: flex;
        justify-content: center;
        text-align: center;
  
    }
    .adsense-inner{
        
    }
    #adsense-mobile{
        display: flex;
        flex-direction: column;
        justify-content: center;
        
    }
    .adsense img{
        display: none;
    }
    #adsenseTitle{
        zoom: 65%;
    }
    #adsenseDesc{
        zoom: 78%;
        margin-left: 0px;
    }
    .learn-more{
        margin-top: 5%;
        height: 100%;
        align-items: center;
    }
    .features {
        width: 360px;
        padding: 15px;
    }
    .features-column{
        margin-top: 4%;
        display: flex; 
        flex-direction: column; 
        justify-content: center;
    }
    .features-row{
        display: flex; 
        flex-direction: column; 
        justify-content: center;
    }
     .pricing{
        height: 100%;
        margin-top: 7%;
        zoom: 82%;
     }
    .priceView{
        flex-direction: column;
        align-items: center;
    }
    .team-reviews{
        height: 100%;
        padding: 5%;
        zoom: 80%;
    }
    .footer{
        flex-direction: column;
        padding: 50px;
    }
    .innerFooter{
        display: flex; 
        justify-content: space-between;
        flex-direction: column;
    }
    .copyright{
        zoom: 80%;
        margin: 0 10px 0 10px;
        width: 100%;
    }
    .clientsec{
        margin: 2.5%;
        padding: 5px;
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        background-color: #f2fbff;
        height: 150px;
    }
}

@media only screen and (max-height: 432px) and (orientation: landscape) {
    body{
        zoom: 70%;
    }
    .carousel{
        height: 140vh;
    }
    .carousel-container{
        height: 140vh;
        zoom: 85%;
    }
    #brsImage{
        height: 40%;
    }
    #x2Image, #cashImage, #referralImage{
        height: 95%;
        width: 23%;
    }

    .running-numbers{
        zoom: 70%;
        margin-top: 3%;
    }
    .rectangle{
        zoom: 80%;
        height: 100%; 
    }
    #searchPersinImg{
        zoom: 70%;
    }
    .map{
        height: 100%;
    }
    .map img{
        zoom: 50%;
        
    }
    .weareon{
        height: 100%;
    }
    .platforms{
        zoom: 80%;
    }
    .adsense{
        height: 80vh;
        padding:5%;
        margin-top: 2%;
    }
    .adsense-inner{
        zoom: 80%;
        display: flex;
        justify-content: space-around;

    }
    .adsense img{
        zoom: 80%;
    }
    .learn-more{
        height: 100%;
        margin-top: 2%;
        align-items: center;
    }
    .pricing{
        height: 100%;
        margin-top: 5%;
        zoom: 75%;
     }
     .priceView{
        margin-top: 3%;
    }
    .team-reviews{
        height: 100%;
        padding: 5%;
        zoom: 85%;
    }
    .footer{
        padding: 20px;
        height: 100%;
    }
    .clientsec{
        margin: 2.5%;
        display: flex; 
        flex-direction: column;
        justify-content: center;
        background-color: #f2fbff;
        height: 150px;
    }
}

/* Tablet resolution */
@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    body{
        zoom: 80%;
    }
    .carousel{
        zoom: 100%;
        height: 55vh;
    }
    .carousel-container{
        height: 55vh;
        zoom: 100%;
    }
    #brsImage{
        height: 50%;
        width: 65%;
    }
    #x2Image,#cashImage,#referralImage{
        height: 65%;
    }
    .running-numbers{
        height: 100%;
        zoom: 90%;
        margin-top: 3%;
    }
    .rectangle{
        zoom: 85%;
        height: 100%;
        display: flex;
        justify-content: center;
        
    }
    .rectangle-inside{
        
    }
    #searchPersinImg{
        height: 100%;
        
    }
    .map{
        height: 100%;
        width: 100%;
        margin: 0;
    }   
    .map img{
        width: 80%;
        height: 85%;
        align-self: center;
        
    }
    .weareon{
        height: 100%
    }
    .platforms{
        zoom: 80%;
    }
    .adsense{
        height: 100%;
        padding:5%;
        margin-top: 5%;
    }
    .adsense-inner{
        zoom: 90%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .adsense img{
       
    }
    .learn-more{
        zoom: 110%;
        height: 100%;
        margin-top: 3%;
    }
    .pricing{
        height: 100%;
    }
    .priceView{
        margin-top: 30px;
        zoom: 90%;
    }
    .team-reviews{
        height: 100%;
        margin-top: 2%;
    }
    .footer{
        background-color: #0086D5;
        zoom: 110%;
        height: 100%;
        padding: 50px;
        margin: 0;
    }
    
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    body{
        zoom: 90%;
    }
    .carousel{
        height: 90vh;
    }
    .carousel-container{
        height: 90vh;
        zoom: 95%;
    }
    .rectangle{
        height: 100%;
        zoom: 80%;
    }
    #searchPersinImg{
        zoom: 70%;
    }
    .map{
        height: 100%;
    }
    .weareon{
        height: 100%;
        zoom: 75%;
    }
    .adsense{
        height: 100%;
        padding: 50px;
        zoom: 80%;
        margin-top: 3%;
    }
    .learn-more{
        height: 100%;
    }
    .pricing{
        height: 100%;
    }
    .team-reviews{
        height: 100%;
    }
    .footer{
        padding: 30px;
    }
}

@media only screen and (min-width: 1025) and (max-width: 1450px) {
    
    
}
