/* General CSS */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@400;500;700;800;900&display=swap');

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {

    /* Text Colors */
    --primary-color: #008AFC;
    --secondary-color: #014EBC;
    --light-pink-color: #FFFCF8;
    --light-color: #CCCCCC;
    --black-color: #000;
    --white-color: #fff;
    --box-shadow: 0.1rem -0.07rem 1.5rem 0.3rem rgb(0 0 0 / 26%);

    /* font-family */
    --primary-font: 'Lato', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
}

body,
html {
    font-size: 10px;
    font-weight: 400;
    font-family: var(--primary-font);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.5;
}

h1 {
    color: var(--black-color);
    font-size: 5.5rem;
    font-weight: 800;
    font-family: var(--secondary-font);
    display: inline-block;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 2rem;
}

h2 {
    color: var(--white-color);
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--secondary-font);
    display: inline-block;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 2rem;
}

h2 span {
    color: var(--primary-color);
}

h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--secondary-font);
    color: var(--white-color);
    margin-bottom: 1rem;
}

h4 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    font-family: var(--secondary-font);
    color: var(--black-color);
    margin-bottom: 2rem;
}

h5 {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--white-color);
    font-family: var(--secondary-font);
    margin-bottom: 0.9375rem;
    font-weight: 300;
    text-transform: uppercase;
}

p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-top: 1rem;
    color: var(--white-color);
}

a,
a:active,
a:focus,
a:hover,
.btn:focus {
    text-decoration: none;
    box-shadow: none;
    outline: 0;
}

.bg-black {
    background-color: var(--black-color);
}

.main-btn {
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 5rem;
    text-transform: capitalize;
    padding: 0.9rem 3rem;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    transition: all .3s linear;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.main-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.view-link {
    font-size: 1.4rem;
    margin-top: 1rem;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.view-link:hover {
    color: var(--white-color);
    font-size: 1.6rem;
}


.wrapper {
    padding: 7rem 0;
}

.sec-title h1 {
    position: relative;
}

.sec-title h1::after {
    position: absolute;
    content: '';
   
    width: 50%;
    height: 50%;
    right: -4px;
    bottom: 0%;
    opacity: 0.5;
}

/* 01 navbar css */

.header {
   
    padding: 1rem 0;
    height: 11rem;
}

.header .navbar-brand img {
    width: 20rem;
    height: auto;
    object-fit: cover;
}


.header .navbar-nav .nav-link {
    color: var(--white-color);
    font-family: var(--secondary-font);
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0.5rem 2rem;
    margin: 0px 0.2rem;
}

/* dropdown menu */
.header .dropdown-menu {
    min-width: 13rem;
    padding: 1.5rem 0;
    background-color: var(--black-color);
    border: 0.2rem solid var(--primary-color);
}

.header .dropdown-item {
    line-height: 1.3;
    padding: 1rem;
    font-size: 1.3rem;
    color: var(--white-color);
    font-weight: 600;
    font-family: var(--secondary-font);
}

.dropdown-toggle::after {
    content: "+";
    border: none;
    vertical-align: middle;
    font-size: 1.6rem;
}

.nav-item:hover>.dropdown-toggle::after,
.nav-link.dropdown-toggle.show {
    color: var(--primary-color);
}

.dropdown-item:focus,
.dropdown-item:hover,
.header .navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.navbar-nav li:hover>ul.dropdown-menu {
    display: block;
}

.header .navbar-toggler {
    color: var(--white-color);
    font-size: 2rem;
    height: 2.7rem;
    padding: 0;
}

.header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.py-5{
    text-align: center;
}
.title{
    text-align: center;
    font-weight: bold;
}

/*  Banner Section */
.banner-wrapper {
    margin-top: 8rem;
     background-image: url('/assets/images/Services/advertising.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-bottom: 5rem;

}


/* parallax-effetct */

.parallax {
    position: relative;
    background-position: left;
    background-size: 48%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.parallax-1 {
    position: relative;
    background-position: right;
    background-size: 48%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.parallax-main {
    position: relative;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: inline-block;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.parallax.img1 {
    background-image: url('../images/banner/Banner-1.jpg');
    height: 100%;
}

.parallax.img2 {
    background-image: url('../images/Services/web-designing.webp');
    height: 608px;
}

.parallax.img3 {
    background-image: url('../images/Services/branding.webp');
    height: 608px;
}

.parallax.img4 {
    background-image: url('../images/Services/advertising.webp');
    height: 608px;
}

.parallax.img5 {
    background-image: url('../images/Services/seo.webp');
    height: 608px;
}

/* About CSS */
.main-wrapper {
    margin-top: 80vh;
    background-color: var(--white-color);
    width: 100%;
}

.main-wrapper .black-card {
    position: absolute;
    top: 25%;
    left: -400px;
    width: calc(100% - 20%);
    box-shadow: var(--box-shadow);
    border-radius: 2.5rem;
    background-color: var(--black-color);
    padding: 2.5rem;
    text-align: left;
    z-index: 1;
}

.main-wrapper .black-card.right {
    right: -400px;
    left: unset;
}
.vision{
    font-size: 2rem;
    font-weight: bold;
}
.vision-para{
    padding: 5%;
}
.vh{
    text-align: center;
}
#ov{
  margin-left: 10rem;
}
#vm{
    padding-right: 0;
}
/* services css */
.services-heading{
    background-color: rgb(78, 8, 78);
    text-align: center;
    color: white;
}
.img-size{
    width: 20%;
    margin-left: 40%;
}


/* sercices css Ends */


/* Process Css  */

.process-wrapper {
    background-color: var(--black-color);
}

.process-wrapper h1,
.work-wrapper h1 {
    color: var(--white-color);
}

.process-wrapper .process-content {
    padding: 4rem 6rem;
    position: relative;
}

.process-wrapper .process-content::after {
    position: absolute;
    content: '';
    width: 40%;
    margin: auto;
    bottom: 0;
    border-bottom: 1px solid var(--white-color);
}

.process-wrapper .process-content span {
    color: var(--primary-color);
    font-size: 7rem;
    font-weight: 800;
    margin-right: 2rem;
}

/* Work CSS */
.work-wrapper {
    background: var(--black-color);
    margin-top: 5%;
}

/* Testimonial CSS */
.testimonial-wrapper h2 {
    color: var(--black-color);
}

.testimonial-wrapper .card {
    border: none;
    background-color: var(--light-pink-color);
    box-shadow: var(--box-shadow);
    border-radius: 1rem;
    margin: 2rem;
    /* padding: 4rem 2rem; */
}

.testimonial-wrapper .card i {
    color: rgb(255, 191, 0);
    font-size: 1.4rem;
}

.testimonial-wrapper .card p {
    color: var(--black-color);
}

.testimonial-wrapper .card h5 {
    color: var(--black-color);
    font-weight: 700;
}

.testimonial-wrapper .carousel-indicators {
    margin-bottom: -3rem;
}

.testimonial-wrapper .carousel-indicators button {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--black-color);
}

/* Footer CSS */

.footer_wrapper {
    background-color: var(--black-color);
    padding-bottom: 0rem;
}

.footer_wrapper .footer-logo img {
    width: 25rem;
    height: auto;
    object-fit: cover;
}

.footer_wrapper h5 {
    color: var(--white-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 2rem;
}

.footer_wrapper h5 a {
    color: var(--white-color);
}

.footer_wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
}


.footer_wrapper ul li {
    margin-right: 1.5rem;
}

.footer_wrapper .copyright-section p {
    margin: 0;
    padding: 3rem 0;
    text-align: center;
}


/* whatsapp intgration */
.whatsapp-icon {
    position: relative;
}

.whatsapp-icon .whatsapp {
    position: fixed;
    width: 6rem;
    z-index: 1;
    bottom: 1rem;
    right: 0.5rem;
}

.whatsapp-icon .whatsapp img {
    width: 5.5rem;

}

/* =====================================
About Page CSS 
=======================================*/

.about .abilities-wrapper ul {
    list-style: none;
    padding: 20px;
}

.about .abilities-wrapper h3 {
    color: var(--black-color);
}

.about .abilities-wrapper ul li p {
    color: var(--black-color)
}

/* Team CSS */
.about .team-wrapper .card .team-img {
    width: 15rem;
    height: 15rem;
    margin: 0 auto;
    border-radius: 50%;
    border: 0.5rem solid var(--primary-color);
}

.about .team-wrapper .card .team-img img {
    border-radius: 50%;
}

.about .team-wrapper .card .team-detail h5 {
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 0;
    padding-top: 1.5rem;
}

.about .team-wrapper .card .team-detail p {
    color: var(--black-color);
    margin: 0;
}

/* ====================================
Portfolio Page CSS
====================================== */

.portfolio-services .card-detail {
    box-shadow: var(--box-shadow);
    background-color: var(--black-color);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: -2rem;
}

.portfolio-services .card-detail h5 {
    font-weight: 800;
    font-family: var(--secondary-font);
}

/* ====================================
Contact Page CSS
====================================== */
.contact-back{
    margin-top: 8rem;
    background-image: url('../images/banner/contact-us.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-bottom: 5rem;
}
.contact .get-in-touch .card {
    background-color: var(--white-color);
    min-height: 36rem;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact .card i {
    font-size: 8rem;
    margin-bottom: 3rem;
}

.contact .card h4 {
    font-weight: 800;
}

.contact .card p {
    color: var(--black-color);
}

.contact .card p:last-child {
    font-family: var(--secondary-font);
    font-weight: 700;
}

.form-section {
    padding: 10rem;
    background-color: var(--black-color);
    box-shadow: var(--box-shadow);
    border-radius: 2rem;
}

.form-section .form-control:focus {
    box-shadow: none;
    border-color: var(--light-color);

}

.form-section input.form-control {
    height: 4.5rem;
    border: 0.1rem solid var(--light-color);
    font-size: 1.5rem;
}

.form-section textarea {
    border: 0.1rem solid var(--light-color);
    font-size: 1.5rem;
}
/* website developmnt */
.img7 {
    background-image: url('../images/banner/we.jpg');
    
    position: absolute;
    top: -7%;
    right: -1%;
    width: 100%;
    height: min-content;
    background-position-x: center;
}

#car{
    position: relative;
    top: 67rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.sec-title{
    margin-top: 10rem;
}
.card-text{
    color: #000;
}
#trp li{
    background-color: #000;
}
#trp li a{
    /* background-color: #000; */
    color: white;
    font-size: medium;
}
#car1{
    position: relative;
    top: 120rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.card-body1{
    font-size: xx-large;
     color: black;
     position: absolute; 
     top: 125rem;
    text-align: center;
}
.card-text{
    
     color: black;
    font-size: 2rem;
     
}

.card-body2{
    font-size: xx-large;
     color: black;
     position: absolute; 
     top: -8rem;
    text-align: center;
}
.card-text1{
    
    color: black;
   font-size: 2rem;
   margin-left: 1%;
   position: relative;
   top: 20rem;
   text-align: left;    
}
#body2{
    font-size: xx-large;
    font-weight: bold;
     color:rgb(135, 13, 135);
     position: absolute; 
     top: 10rem;
     left: 30rem;
    text-align: center;
}
#car2{
    position: relative;
    top: 120rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.card-text2{
    
    color: black;
   font-size: 2rem;
   margin-left: 1rem;
   margin-top: 12%;
   text-align: left;    
}
#car3{
    position: relative;
    top: 140rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
#love-us{
    background-image: url('../images/banner/back.jpg');
    width:100%;
    height: 55%;
    position: absolute;
    top: 350rem;
    
}
.dev-services{
    position: absolute;
    top: 400rem;
}

.card-text10{
    text-align:center;
    color: black;
    font-weight: bold;
}
.card-text11{
    color: #000;
    font-weight: bold;
    margin-top: 3rem;
    margin-left: 15rem;
}
.card-text12{
    color: #000;
    font-weight: bold;
    margin-top: 5rem;
    margin-left: 25rem;
}
.card-text13{
    color: #000;
    font-weight: bold;
    margin-top: 7rem;
    margin-left: 1rem;
}
.card-text14{
    color: #000;
    font-weight: bold;
    margin-top: 8rem;
    margin-left: 8rem;
}
.card-text15{
    color: #000;
    font-weight: bold;
    margin-top: 6rem;
    margin-left: 15rem;
}
.img8 {
    background-image: url('../images/banner/social.webp');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5%;
    right: -1%;
    width: 100%;
    height: 80%;
    background-position-x: center;
    font-size: 3rem;
}
.card-texta{
    
    color: black;
   font-size: 2rem;
   margin-left: 1%;
   position: relative;
   top: -110rem;
   text-align: left;    
}
.bg{
    background-color: rgb(145, 137, 137);
  height: 35rem;
  font-weight: bold;
}
#car7{
    position: relative;
    top: 10rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.img9 {
    background-image: url('../images/banner/ppc.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5%;
    right: -1%;
    width: 100%;
    height: 80%;
    background-position-x: center;
    font-size: 3rem;
}
.ab{
    background-color: purple;
    margin-left: 10rem;
}
#car8{
    position: relative;
    top: 20rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.card-textb{
    
    color: black;
   font-size: 2rem;
   margin-left: 1%;
   position: relative;
   top: 10rem;
   text-align: left;    
}
.img11 {
    background-image: url('../images/banner/sd.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5%;
    right: -1%;
    width: 100%;
    height: 80%;
    background-position-x: center;
    font-size: 3rem;
}
#car1A{
    position: relative;
    top: 80rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.card-body2A{
    font-size: xx-large;
     color: black;
     position: absolute; 
     top: -2rem;
    text-align: center;
}
.card-textq{
    
    color: black;
   font-size: 2rem;
   margin-left: 1%;
   position: relative;
   top: 5rem;
   text-align: left;    
}
.pq{
    position: absolute;
    top: 200%;
    margin-left: 15rem;
    border: none;
}
.we{
    color: black;
    position: absolute;
    top: 260rem;
    left: 15rem;
    font-weight: bold;
    font-size: 2rem;
}
.we1{
    color: black;
    position: absolute;
    top: 270rem;
    left: 15rem;
    font-size: 1.9rem;
}
.wea{
    color: black;
    position: absolute;
    top: 265rem;
    left: 15rem;
    font-size: 1.9rem;
}
.we3{
    color: black;
    position: absolute;
    top: 290rem;
    left: 15rem;
    font-weight: bold;
    font-size: 2rem;
}
.we4{
    color: black;
    position: absolute;
    top: 300rem;
    left: 15rem;
    font-size: 1.9rem;
}
.web{
    color: black;
    position: absolute;
    top: 295rem;
    left: 15rem;
    font-size: 1.9rem;
}

.we5{
    color: black;
    position: absolute;
    top: 320rem;
    left: 15rem;
    font-weight: bold;
    font-size: 2rem;
}
.we6{
    color: black;
    position: absolute;
    top: 331rem;
    left: 15rem;
    font-size: 1.9rem;
}
.wec{
    color: black;
    position: absolute;
    top: 325rem;
    left: 15rem;
    font-size: 1.9rem;
}
.img12 {
    background-image: url('../images/banner/e\ commerse.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5%;
    right: -1%;
    width: 100%;
    height: 80%;
    background-position-x: center;
    font-size: 3rem;
}
.e1{
    color: black;
    position: absolute;
    top: 90rem;
    left: 15rem;
    font-size: 1.9rem;
    font-weight: bold;
    color: purple;
}

.e2{
    color: black;
    position: absolute;
    top: 100rem;
    left: 15rem;
    font-size: 2rem;
}
.e3{
    color: black;
    position: absolute;
    top: 130rem;
    left: 15rem;
    font-size: 1.9rem;
    font-weight: bold;
    color: purple;
}

.e4{
    color: black;
    position: absolute;
    top: 140rem;
    left: 15rem;
    font-size: 1.9rem;
   
}
.cardmar{
    position: absolute;
    top: 200rem;
}
.cardmar1{
    position: absolute;
    top: 230rem;
}
.card-titlex{
    font-size: 2rem;
    margin-left: 5rem;
}
.imga {
    background-image: url('../images/Services/mail_marketing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -5%;
    right: -1%;
    width: 100%;
    height: 80%;
    background-position-x: center;
    font-size: 3rem;
}
#car1a{
    position: relative;
    top: 70rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
#car2a{
    position: relative;
    top: 85rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
#car3a{
    position: relative;
    top: 90rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
#car4a{
    position: relative;
    top: 110rem;
    margin-left: 10rem;
    margin-right: 10rem;
    width: 100%;
    border: none;
}
.card-textm{
    
    color: black;
   font-size: 2rem;
   margin-left: 1%;
   position: relative;
   top: 13rem;
   text-align: left;    
}

/* pricing  */
#dol-img{
    
    height: 7rem;
    width: 7rem;
    border-radius: 85%;
    
}
#dol-back{
    margin-top: 12rem;
    margin-bottom: 1.2rem;
    margin-left: 46.5%;
    padding-left: 2rem;
    background-color: #C9EEFF;
    height: 55%;
    width: 7%;
    border-radius: 4%;
}
#blue-line{
    margin-left: 49%;
    width: 2%;
    border: rgb(6, 6, 86) 2px solid;
    border-radius: 40%;
    margin-top: 1%;
    margin-bottom: 1%;
}
#row{
    margin-top: 4%;
    margin-left: 10%;
    margin-right: 10%;
}

ul {
    list-style: none;
    padding-left: 0;
  }
  li {
    position: relative;
    text-align: left;
    
  }
  li:before {
    content: '';  /* placeholder for the SVG */
    position: absolute;
    left: 0;  /* place the SVG at the start of the padding */
    width: 1em;
    height: 1em;
    margin-top: 0.2rem;
    
    
     }
.list-group{
    
    margin: 2.5rem;
    margin-top: 0.4rem;
}
.card-sub-body{
    margin: 1rem;
    background-color: #6fb9dc;
    border-radius: 1rem;
    padding: 2rem;
}
#btn{
    margin: top 1%;;
}








@keyframes popBackground {
    0% {
        height: 20px;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%
    }

    50% {
        height: 80px;
        border-top-left-radius: 75%;
        border-top-right-radius: 75%
    }

    75% {
        height: 160px;
        border-top-left-radius: 85%;
        border-top-right-radius: 85%
    }

    100% {
        height: 320px;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%
    }
}
.card-header{
    background-color: rgb(5, 5, 89);
}






