* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    background-color: #000000;
}
 
.nav-main{
    border: 1px solid rgb(60, 60, 60);
    border-radius: 80px;
    padding: 10px;
    margin-top: 10px;
}

.nav-main .nav-brand{
    display: flex;
    text-decoration: none;
}

.nav-main .nav-brand h2{
    font-size: 18px;
    display: flex;
    align-items: center;
    color: white;
    margin: 0;
    font-weight: 700;
}

.nav-main .nav-brand .logo{
    height: 60px;
}

.nav-main .nav-brand .logo img{
    height: 100%;
    width: 100%;
}

.nav-main ul{
    display: flex;
    margin: 0;
}

.nav-main ul li{
    list-style: none;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-main ul li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 18px;
}

.nav-main .get-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-main .get-btn .bttn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 120px;
    background: linear-gradient(#9750E6,#531699);
    text-decoration: none;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.nav-bar .get-btn-res .bttn{
    display: none;
}

nav .nav-active-item .active{
    color: #C27AFF;
}
nav .nav-main .nav-show-btn{
    display: none;
}
nav .nav-bar .nav-hide-btn{
    display: none;
}


@media only screen and (max-width: 992px){
    .nav-main{
        padding: 5px 10px;
    }
    nav .nav-bar{
        display: block;
        position: absolute;
        top: -100%;
        right: 0;
        opacity: 0.5;
        height: 260px;
        width: 100%;
        background-color: #383838;
        border-radius: 20px;
        padding: 0 30px;
        z-index: 999;
        transition: 0.4s ease-in-out;
    }
    .nav-main ul li{
        display: flex;
        justify-content: start;
        margin: 15px 0;
    }
    .nav-main ul li a{
        font-size: 14px;
    }
    .nav-bar .get-btn-res .bttn{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 100%;
        background: linear-gradient(#9750E6, #531699);
        text-decoration: none;
        color: white;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
    }
    .nav-main .get-btn .bttn{
        display: none;
    }
    .nav-main .nav-show-btn{
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .nav-main .nav-show-btn .nav-show{
        text-decoration: none;
        background: linear-gradient(#9750E6, #531699);
        height: 40px;
        width: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }
    .nav-main .nav-show-btn .nav-show i{
        color: white;
        font-size: 20px;
    }
    .nav-main .nav-hide-btn {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 10px 0 0 auto;
        height: 40px;
        width: 40px;
        background: linear-gradient(#9750E6, #531699);
        border-radius: 10px;
    }
    .nav-main .nav-hide-btn i{
        color: white;
        font-size: 20px;
    }
}


/* BANNER----------------STARTS---------------HERE */

.banner{
    padding: 100px;
}

.banner .all-in-one .all{
    border: 1px solid white;
    height: 35px;
    width: 200px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .all-in-one .all .circle{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #7BF1A8;
}
.banner .all-in-one .all h6{
    color: white;
    margin: 0;
    padding-left: 10px;
    font-size: 14px;
}

.banner .content .txt{
    margin-top: 10px;
}

.banner .content .txt h1{
    font-size: 62px;
    color: white;
    font-weight: 800;
}

.banner .content .txt span{
    background: linear-gradient(to right, #4B2A6D , black);
}

.banner .content .para{
    width: 600px;
    margin-top: 20px;
}
.banner .content .para p{
    color: rgb(218, 218, 218);
}

.glow-box{
    display: flex;
    justify-content: end;
    align-items: end;
    height: 300px;
}

.glow-box .box{
    background: radial-gradient(circle at 50% center, #47276A, transparent 70%), rgba(144, 10, 233, 0.715);
    height: 5px;
    width: 5px;
    -webkit-box-shadow:0px 0px 238px 166px rgba(162,61,245,0.61);
    -moz-box-shadow: 0px 0px 238px 166px rgba(162,61,245,0.61);
    box-shadow: 0px 0px 238px 166px rgba(162,61,245,0.61);
}
 
@media only screen and (max-width: 1200px){
    .banner{
        padding: 100px 0;
    }
}
@media only screen and (max-width: 768px){
    .banner .content .txt h1{
        font-size: 42px;
    }
    .banner .content .para{
        width: 100%;
    }
}
@Media only screen and (max-width: 426px){
    .banner .content .txt h1{
        font-size: 32px;
        text-align: center;
    }
    .banner .all-in-one {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner .content .para p{
        text-align: center;
        font-size: 14px;
    }
    .banner .all-in-one .all{
        width: 150px;
    }
    .banner .all-in-one .all h6{
        font-size: 12px;
    }
}
@media only screen and (max-width: 376px){
    .banner .content .txt h1{
        font-size: 28px;
    }
    .banner .content .para p{
        font-size: 12px;
    }
}

/* BANNER----------------ENDS---------------HERE */


/* <!-- ABOUT-US------------------STARTS-------------HERE --> */

.our-story{
    padding: 0 100px 0 100px;
}

.our-story .all-in-one .all{
    border: 1px solid white;
    height: 35px;
    width: 120px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.our-story .all-in-one .all .circle{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #7BF1A8;
}
.our-story .all-in-one .all h6{
    color: white;
    margin: 0;
    padding-left: 10px;
    font-size: 12px;
}

.our-story .heading {
    margin-top: 20px;
}

.our-story .heading h1{
    font-size: 52px;
    color: white;
    font-weight: 700;
}
.our-story .heading h1 span{
    color: #A95CF9;
}

.our-story .para {
    width: 680px;
}

.our-story .para p{
    color: rgb(218, 218, 218);
}

@media only screen and (max-width: 1200px){
    .our-story{
        padding: 0;
    }
}
@media only screen and (max-width: 768px){
    .our-story .para{
        width: 100%;
    }
}
@media only screen and (max-width: 426px){
    .our-story .all-in-one {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .our-story .heading h1{
        text-align: center;
    }
    .our-story .para p{
        text-align: center;
        font-size: 14px;
    }
}
@media only screen and (max-width: 376px){
    .our-story .para p{
        font-size: 12px;
    }
}
/* <!-- ABOUT-US------------------ENDS-------------HERE --> */


/* <!-- CREATING-WEBSITES---------STARTS------------HERE --> */

.websites {
    padding: 100px;
}

.websites .web-box{
    background-color: #1E1E1E;
    border-radius: 20px;
    padding: 50px;
}

.websites .content h1 {
    color: white;
    font-weight: 800;
    font-size: 52px;
    width: 85%;
}

.websites .content h1 span {
    color: #9810FA;
}

.websites .content .para{
    margin-top: 20px;
}

.websites .content .para p {
    color: white;
}

.websites .web-box .cards {
    margin-top: 50px;
}

.websites .web-box .cardd {
    border: 1px solid #C27AFF;
    padding: 20px;
    height: 300px;  
    cursor: pointer;
    transition: 0.4s all ease-in-out;
    height: 340px;
}

.websites .web-box .cardd:hover {
    background-color: #333333;
    border: none;
}

.websites .web-box .cardd .icon-img {
    height: 20px;
    width: 20px;
}

.websites .web-box .cardd .icon-img img{
    height: 100%;
    width: 100%;
    transition: 0.4s all ease-in-out;
}   

.websites .web-box .cardd .title {
    margin-top: 20px;
    color: white;
}

.websites .web-box .cardd .desc p{
    font-size: 14px;
    color: white;
}

@media only screen and (max-width: 1200px){
    .websites{
        padding: 50px 0;
    }
    .websites .web-box{
        padding: 30px;
    }
    .websites .content h1{
        width: 100%;
    }
}
@media only screen and (max-width: 992px){
   .websites .web-box{
        padding: 20px;
    }
}
@media only screen and (max-width: 426px){
    .websites .content h1{
        text-align: center;
        font-size: 38px;
    }
    .websites .content .para p{
        text-align: center;
        font-size: 14px;
    }
}
@media only screen and (max-width: 376px){
    .websites .content h1{
        font-size: 27px;
    }
    .websites .content .para p{
        font-size: 12px;
    }
    .websites .web-box .cardd{
        height: 290px;
    }
    .websites .web-box .cardd .desc p{
        font-size: 12px;    
    }
}

/* <!-- CREATING-WEBSITES---------ENDS------------HERE --> */


/* <!-- SERVICES-----------------STARTS-----------HERE --> */

.services{
    padding: 0 100px 100px 100px;
}

.services .cards .txt-card {
    height: 100%;
    display: flex;
    align-items: center;
}

.services .cards .cardd .service-img img{
    height: 100%;
    width: 100%;
}

.services .cards .cardd .content span h6{
    color: rgb(195, 195, 195);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 40px;
    border-radius: 20px;
    border: 1px solid rgb(180, 180, 180);
}

.services .cards .cardd .content h1{
    color: #C27AFF;
    font-size: 48px;
    font-weight: 700;
    margin: 30px 0;
}

.services .cards .cardd .content .service-desc p{
    color: rgb(215, 215, 215);
    font-size: 20px;
    line-height: 30px;
}

@media only screen and (max-width: 1200px){
    .services{
        padding: 50px 0;
    }
}
@media only screen and (max-width: 992px){
    .services .cards .cardd .content h1{
        margin: 0;  
        margin-top: 10px;
        font-size: 42px;
    }
    .services .cards .cardd .content .service-desc p{
        font-size: 16px;
        line-height: 28px;
    }
}
@media only screen and (max-width: 426px){
    .services .row {
        --bs-gutter-y: 3rem;
        --bs-gutter-x: 0rem;
    }
    .services .cards .cardd .content span {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .services .cards .cardd .content h1{
        text-align: center;
        font-size: 52px;
    }
    .services .cards .cardd .content .service-desc p{
        text-align: center;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 376px){
    .services .cards .cardd .content h1{
        font-size: 46px;
    }
    .services .cards .cardd .content .service-desc p{
        font-size: 14px;
    }
}

/* <!-- SERVICES-----------------ENDS-----------HERE --> */


/* <!-- WHY-CHOOSE-US-----------STARTS----------HERE --> */

.why-choose-us .card-1 {
    height: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us .cardd .title h1{
    color: white;
    font-size: 52px;
    font-weight: 700;
    text-align: center;
}

.why-choose-us .cardd .title h1 span{
    color: #AD46FF;
}

.why-choose-us .cardd .txt p{
    color: rgb(231, 231, 231);
    text-align: center;
    font-size: 18px;
    padding: 10px;
}

.why-choose-us .card-2 {
    display: flex;
    margin: 20px 0;
    cursor: pointer;
}

.why-choose-us .cardd span h6{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: 700;
    transition: 0.2s all ease-in-out;
}
.why-choose-us .cardd:hover span h6{
    color: #AD46FF;
    font-weight: 900;
    border: 2px solid purple;
}


.why-choose-us .card-2 .txt-box {
    padding-left: 20px;
}

.why-choose-us .card-2 .txt-box h6 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.why-choose-us .card-2 .txt-box p{
    color: rgb(207, 207, 207);
    font-size: 16px;
}

@media only screen and (max-width: 992px){
    .why-choose-us {
        padding: 50px 0;
    }
}
@media only screen and (max-width: 768px){
    .why-choose-us .card-2 .txt-box p{
        font-size: 14px;
    }
    .why-choose-us .second-card{
        margin-top: 30px;
    }
}
@media only screen and (max-width: 426px){
    .why-choose-us .cardd .txt p{
        font-size: 16px;
    }
    .why-choose-us .second-card{
        margin-top: 50px;
    }
    .why-choose-us .cardd span h6{
        height: 40px;
        width: 40px;
        font-size: 18px;
    }
}
@media only screen and (max-width: 376px){
    .why-choose-us .cardd .txt p{
        font-size: 14px;
    }
    .why-choose-us .card-2 .txt-box p{
        font-size: 12px;
    }
    .why-choose-us .card-2 .txt-box{
        padding-left: 10px;
    }
}

/* <!-- WHY-CHOOSE-US-----------ENDS----------HERE --> */


/* <!-- CASE-STUDIES------------STARTS-------------HERE --> */

.case-studies{
    padding: 100px;
}

.case-studies .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-studies .head .bttn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-studies .head .bttn a{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    height: 35px;
    width: 100px;
    background: linear-gradient(#9750E6,#54189A);
    font-size: 14px;
}

.case-studies .head h1{
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.case-studies .head span{
    color: #AD46FF;
}

.case-studies .cards{
    margin-top: 40px;
}

.case-studies .case-img img{
    height: 100%;
    width: 100%;
}

.case-studies .cardd h2{
    color: white;
    font-size: 38px;
    font-weight: 700;
}

.case-studies .cardd p{
    color: rgb(221, 221, 221);
    font-size: 17px;
    margin-top: 50px;
    line-height: 30px;
}

.case-studies .cardd .view-btn .bttn{
    border: 1px solid white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 180px;
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s all ease-in-out;
}

.case-studies .cardd .view-btn .bttn:hover{
    background-color: white;
    color: black;
}

.case-studies .cardd .view-btn .bttn i{
    padding-left: 10px;
    transform: rotate(-45deg);
    margin-top: 10px;
    font-size: 13px;
    transition: 0.4s all ease-in-out;
}
.case-studies .cardd .view-btn .bttn:hover i{
    margin-left: 7px;
}

.case-studies .sites {
    padding: 20px 0 80px 0;
}

.case-studies .sites .cardd .card-2-img img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.case-studies .sites .card-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.case-studies .sites .card-1 .content h1 {
    color: white;
    font-weight: 700;
    font-size: 36px;
}

.case-studies .sites .site-1 , .site-2 , .site-3 {
    margin-top: 100px;
}

@media only screen and (max-width: 1200px){
    .case-studies{
        padding: 50px 0;
    }
    .case-studies .sites .card-1 .para p{
        margin-top: 10px;
        line-height: 24px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .case-studies .cards .img-card{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .case-studies .cardd p{
        margin-top: 10px;
        line-height: 22px;
        font-size: 14px;
    }
    .case-studies .sites .card-1 .content h1{
        font-size: 28px;
    }
    .case-studies .sites .card-1 .para p{
        font-size: 12px;
        line-height: 17px;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 768px){
    .case-studies .cardd .view-btn .bttn{
        height: 35px;
        width: 150px;
        font-size: 12px;
    }
    .case-studies .cardd .view-btn .bttn i{
        font-size: 12px;
    }
}
@media only screen and (max-width: 426px){
    .case-studies .head{
        display: block;
    }
    .case-studies .head h1{
        text-align: center;
    }
    .case-studies .head .bttn{
        margin-top: 20px;
    }
    .case-studies .cardd h2{
        text-align: center;
    }
    .case-studies .cardd p{
        text-align: center;
    }
    .case-studies .cardd .view-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .case-studies .card-2 {
        margin-top: 50px;
    }
    .case-studies .sites {
        padding: 0 0 80px 0;
    }   
    .case-studies .sites .card-1{
        margin-top: 30px;
    }
    .case-studies .sites .card-1 .content h1{
        text-align: center;
    }
    .case-studies .sites .cardd .card-2-img{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 376px){
    .case-studies .head h1{
        font-size: 37px;
    }
    .case-studies .cardd p{
        font-size: 12px;
    }
    .case-studies .head .bttn a{
        height: 30px;
        width: 90px;
    }
}

/* <!-- CASE-STUDIES------------ENDS-------------HERE --> */


/* <!-- AVAILABLE-NOW-----------STARTS-----------HERE --> */

.available {
    padding: 0 100px 50px 100px;
}

.available .available-box {
    background-color: #0C0C10;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.available .available-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}

.available .available-btn span{
    display: flex;
    justify-content: center;
    align-items: center ;
    border-radius: 30px;
    border: 1px solid white;
    height: 40px;
    width: 175px;
}

.available .available-btn .dot{
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #A6FB7B;
}

.available .available-btn span a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding-left: 10px;
}

.available .heading{
    margin-top: 40px;
}

.available .heading h1{
    color: white;
    font-size: 68px;
    font-weight: 600;
    line-height: 100px;
}

.available .heading h1 span{
    background: linear-gradient(to right, #4B2A6D , black);
}

.available .para{
    margin-top: 40px;
}

.available .para p{
    color: white;
    font-size: 22px;
    padding: 0 200px;
}

.available .circle-text-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.available .circle-text-img .imge{
    height: 170px;
    width: 170px;
}
.available .circle-text-img img{
    height: 100%;
    width: 100%;
}

.available .get-btn{
    display: flex;
    justify-content: end;
    margin-top: 30px;
}

.available .get-btn a{
    text-decoration: none;
    color: white;
    background: linear-gradient(#9E55ED,#460E85);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 180px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 1200px){
    .available{
        padding: 0 0 50px 0;
    }
    .available .para p{
        padding: 0 50px;
    }
}
@media only screen and (max-width: 768px){
    .available .available-btn span a{
        font-size: 14px;
    }
    .available .heading h1{
        font-size: 52px;
        line-height: 70px;
    }
    .available .para p{
        font-size: 18px;
        padding: 0 10px;
    }
    .available .get-btn a{
        font-size: 14px;
        height: 50px;
        width: 150px;
    }
}
@media only screen and (max-width: 426px){
    .available .heading h1 {
        font-size: 38px;
        line-height: 52px;
    }
    .available .para p{
        font-size: 14px;
        padding: 0 0;
    }
    .available .get-btn {
        display: flex;
        justify-content: center;
    }
    .available .circle-text-img .imge{
        height: 150px;
        width: 150px;
    }
    .available .available-btn span a{
        font-size: 12px;
    }
    .available .available-btn span{
        height: 40px;
        width: 150px;
    }
}
@media only screen and (max-width: 425px){
    .available .available-box{
        padding: 30px 15px;
    }
    .available .heading h1 {
        font-size: 28px;
        line-height: 38px;
    }
    .available .para p{
        font-size: 12px;
    }
    .available .para{
        margin-top: 30px;
    }
    .available .circle-text-img .imge{
        height: 130px;
        width: 130px;
    }

}

/* <!-- AVAILABLE-NOW-----------ENDS-----------HERE --> */


/* <!-- FOOTER-----------------STARTS----------HERE --> */

.footer{
    background-color: #171717;
    padding: 50px;
}

.footer .cardd .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .cardd .logo-img{
    height: 50px;
    width: 50px;
}

.footer .cardd .logo-img img{
    height: 100%;
    width: 100%;
}

.footer .cardd .logo h6{
    color: white;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.footer .cardd .title h3{
    color: white;
    font-size: 18px;
}

.footer .cardd ul{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer .cardd ul li {
    margin: 8px 0;
}

.footer .cardd ul li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s all ease-in-out;
}

.footer .cardd ul li a:hover{
    margin-left: 8px;
    color: #6225A6;
}

.footer .social-icons .iconn i{
    color: #A95CF9;
}

.footer .social-icons .icon-0{          
    width: 25px;
}

.footer .copy-right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.footer .copy-right h5{
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.footer .copy-right .btns a{
    text-decoration: none;
    color: #A95CF9;
    margin: 0 10px;
    transition: 0.2s all ease-in-out;
}

.footer .copy-right .btns a:hover{
    color: white;
    font-size: 18px;
    font-weight: 900;
}
@media only screen and (max-width: 1200px){
    .footer{
        padding: 50px 0;
    }
}
@media only screen and (max-width: 767px){
    .footer .footer-card{
        display: flex !important;
        justify-content: start !important;
    }
    .footer .f-space{
        margin-top: 50px;
    }
    .footer .copy-right{
        display: block;
    }
    .footer .copy-right .btns a{
        margin: 0;
    }
    .footer .copy-right .btns .btn-2{
        padding-left: 10px;
    }
}
@media only screen and (max-width: 426px){
    .footer .cardd ul li a{
        font-size: 12px;
    }
    .footer .cardd ul li {
        margin: 2px 0;
    }
    .footer .copy-right h5{
        font-size: 12px;
    }
    .footer .copy-right .btns a{
        font-size: 12px;
    }
    .footer .social-icons .iconn i{
        font-size: 12px;
    }
}

/* <!-- FOOTER-----------------ENDS----------HERE --> */





/* OTHER-PAGES---------------------------------STARTS------------------------------HERE */

/* SERVICES-------------------STARTS------------------HERE */

.services-2{    
    position: relative;
}

.services-banner{
    background-color: #000000;
}
.services-banner .all-in-one .all{
    width: 250px;
}
.glow-box-2{
    position: absolute;
    display: flex;
    justify-content: start;
    bottom: 100px;
}

.our-collab .cardd{
    height: auto;
    position: sticky;
    top: 20px;
}

.our-collab{
    padding: 100px;
}

.our-collab .cards{
    padding: 50px;
    background-color: #34383b92;
    border-radius: 20px;
}

.our-collab .cards .title h1{
    color: white;
    font-weight: 700;
    font-size: 52px;
}

.our-collab .cards .title h1 span{
    color: #AD46FF;
}

.our-collab .cards p{
    color: white;
}

.our-collab .card-2 {
    margin-top: 30px;
}

.our-collab .card-2-box {
    padding: 20px;
    background-color: #18181B;
    border-radius: 20px;
    box-shadow: 0 2px 600px purple;
}

.our-collab .card-2-box span h6{
    color: rgb(179, 178, 178);
    height: 30px;
    width: 40px;
    border: 1px solid rgb(141, 141, 141);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-collab .card-2-box .card-2-title h1{
    color: #AD46FF;
    font-weight: 700;
}

.our-collab .card-2-box .para {
    margin-top: 30px;
}

.our-collab .card-2-box .para p{
    color: rgb(213, 212, 212);
    line-height: 30px;
    font-size: 16px;
}
@media only screen and (max-width: 1200px){
    .our-collab{
        padding: 100px 0;
    }
    .our-collab .cards .title h1{
        font-size: 48px;
    }
}
@media only screen and (max-width: 992px){
    .our-collab .cards .title h1{
        font-size: 34px;
    }
    .our-collab .cards p{
        font-size: 12px;
        margin-top: 20px;
    }
    .our-collab .card-2-box .card-2-title h1{
        font-size: 30px;
    }
    .our-collab .card-2-box .para p{
        font-size: 14px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 767px){
    .our-collab .cards .title h1{
        text-align: center;
    }
    .our-collab .cards p{
        text-align: center;
    }
    .our-collab .card-2-box span {
        display: flex;
        justify-content: center;
    }
    .our-collab .card-2-box .card-2-title h1{
        text-align: center;
    }
    .our-collab .cards{
        padding: 40px;
    }
}
@media only screen and (max-width: 425px){
    .our-collab .cards{
        padding: 40px 30px;
    }
}
@media only screen and (max-width: 375px){
    .our-collab .cards{
        padding: 40px 10px;
    }
    .our-collab .card-2-box .card-2-title h1{
        font-size: 28px;
    }
}

.harnessing{
    padding: 50px;
    position: relative;
}

.harnessing .harness-box .box{
    background-color: #000000;
    padding: 80px 30px;
    border-radius: 20px;
}

.harnessing .harness-box .box .title h1{
    color: white;
    font-size: 52px;
    font-weight: 800;
}

.harnessing .harness-box .box .title h1 span{
    color: #9810FA;
}

.harnessing .harness-box .box .para p{
    color: rgb(216, 214, 214);
}

.harnessing .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.harnessing .logos .logo-imgs img{
    height: 60px;
    width: 60px;
    margin: 0 10px;
}

.harnessing .logos img{
    height: 100%;
    width: 100%;
}

.glow-box-3 .box{
    height: 2px;
    width: 2px;
    border: 1px solid rgba(213, 188, 234, 0.61);
}
@media only screen and (max-width: 1200px) {
    .harnessing .harness-box .box .title h1{
        font-size: 44px;
    }
    .harnessing .harness-box .box .para p{
        font-size: 14px;
    }
    .harnessing .logos .logo-imgs img{
        height: 50px;
        width: 50px;
    }
}
@media only screen and (max-width: 992px) {
    .harnessing{
        padding: 50px 30px;
    }
    .harnessing .harness-box .box .title h1{
        font-size: 32px;
    }
    .harnessing .logos .logo-imgs img{
        height: 40px;
        width: 40px;
    }
    .harnessing .harness-box .box{
        padding: 60px 30px;
    }
}
@media only screen and (max-width: 767px) {
    .harnessing{
        padding: 50px 20px;
    }
    .harnessing .harness-box .box .title h1{
        font-size: 26px;
    }
    .harnessing .logos .logo-imgs img{
        height: 30px;
        width: 30px;
    }
}
@media only screen and (max-width: 426px) {
    .harnessing{
        padding: 50px 0;
    }
    .harnessing .logos .logo-imgs {
        text-align: center;
    }
    .harnessing .logos .logo-imgs img{
        margin-top: 20px;
    }
    .harnessing .harness-box .box{
        padding: 60px 15px;
    }
    .harnessing .harness-box .box .title h1{
        text-align: center;
    }
    .harnessing .harness-box .box .para p{
        text-align: center;
        font-size: 12px;
    }
}
@media only screen and (max-width: 425px){
    .harnessing .harness-box .box .title h1{
        font-size: 23px;
    }
}

.services-why{
    padding: 60px 0;
}
.services-why .cards{
    border-radius: 20px;
    background-color: #DFDFE1;
    padding: 30px 30px;
}

.services-why .cardd .title h1{
    color: black;
}
.services-why .cardd .txt p{
    color: black;
}
.services-why .card-2 .txt-box h6{
    color: black;
}
.services-why .cardd span h6{
    color: black;
    border: 1px solid black;
}
.services-why .card-2 .txt-box p{
    color: rgb(93, 93, 93);
}
@media only screen and (max-width: 992px){
    .services-why .cards{
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 767px){
    .services-why .second-card{
        margin-top: 30px;
    }
}
@media only screen and (max-width: 426px){
    .services-why .cardd .title h1{
        font-size: 48px;
    }
}

.services-case {
    background-color: #000000;
}

.services-footer{
    margin-top: 70px;
}

/* SERVICES-------------------ENDS------------------HERE */


/* ABOUT-US-------------------STARTS------------------HERE */

.about-banner .all-in-one .all{
    width: 120px;
}
@media only screen and (max-width: 767px){
    .about-banner .content .txt h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 425px){
    .about-banner .content .txt h1{
        font-size: 22px;
    }
}

/* OUR-STORY */
@media only screen and (max-width: 768px){
    .about-story .heading h1{
        font-size: 46px;
    }
}
@media only screen and (max-width: 426px){
    .about-story .heading h1{
        font-size: 38px;
    }
    .about-story .para p{
        font-size: 12px;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 376px){
    .about-story .heading h1{
        font-size: 28px;
    }
}
/* OUR-STORY-ENDS */

.our-mission{
    padding: 150px 100px 50px 100px;
}

.our-mission .box{
    padding: 0 50px;
}

.our-mission .cardd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.our-mission .cardd h1 {
    color: white;
    font-weight: 700;
}

.our-mission .cardd h1 span {
    color: #AD46FF;
}

.our-mission .cardd .para p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 30px;
}

.our-mission .cardd .para-2 p {
    color: rgb(214, 214, 214);
    font-size: 16px;
}
@media only screen and (max-width: 1200px){
    .our-mission{
        padding: 100px 0;
    }
}
@media only screen and (max-width: 992px){
    .our-mission .cardd .para-2 p{
        font-size: 12px;
    }
    .our-mission .box{
        padding: 0 30px;
    }
    .our-mission .cardd .para p {
        font-size: 16px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 426px){
    .our-mission .cardd h1{
        text-align: center;
        font-size: 34px;
    }
    .our-mission .cardd .para p{
        text-align: center;
        font-size: 14px;
    }
    .our-mission .cardd .para-2 p{
        text-align: center;
        margin-top: 20px;
    }
    .our-mission .box{
        padding: 0 20px;
    }
}
@media only screen and (max-width: 376px){
    .our-mission .cardd .para p{
        font-size: 12px;
        line-height: 22px;
    }
    .our-mission .box{
        padding: 0 15px;
    }
}

.case-studies .all-in-one .all{
    border: 1px solid white;
    height: 35px;
    width: 120px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.case-studies .all-in-one .all .circle{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #7BF1A8;
}
.case-studies .all-in-one .all h6{
    color: white;
    margin: 0;
    padding-left: 10px;
    font-size: 12px;
}

.about-case .head h1{
    font-size: 34px;
    margin-top: 20px;
    padding-right: 150px;
}
@media only screen and (max-width: 1200px){
    .about-case{
        padding: 0 0 50px 0;
    }
    .about-case .head h1{
        font-size: 28px;
    }
}
@media only screen and (max-width: 992px){
    .about-case .head h1{
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .about-case .all-in-one {
        display: flex;
        justify-content: center;
    }
    .about-case .head h1{
        font-size: 20px;
        padding-right: 0;
    }
}
@media only screen and (max-width: 376px){
    .about-case .head h1{
        font-size: 16px;
    }
}

/* ABOUT-US-------------------ENDS------------------HERE */


/* CONTACT-US-----------------STARTS----------------HERE */

.contact-available{
    padding: 50px 0;
    background-color: #FFFFFF;
}

.contact-available .contact-main{
    background-color: #DFDFE0;
    padding: 0 10px;
    border-radius: 20px;
}

.contact-available .available-box{
    padding: 50px 0;
    background-color: #DFDFE0;
}
.contact-available .para p{
    padding: 0;
    color: rgb(67, 67, 67);
}

.contact-available .heading h1{
    color: black;
    font-weight: 700;
    overflow: hidden;
    line-height: 1.4;
}

.contact-available .available-btn span{
    border: 1px solid black;
}

.contact-available .available-btn span a{
    color: black;
}

.available .heading h1 span {
    background: linear-gradient(to right, #AB61F8, #c39fea);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-available .available-box .circle-text-img img{
    border-radius: 50%;
}

.contact-available form input , textarea{
    width: 100%;
    background-color: #DFDFE0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid black;
    margin: 20px 0;
}
.contact-available form input:hover , textarea:hover{
    border-bottom: 2px solid black;
}

.contact-available form input:focus , textarea:focus{
    outline: none;
    border: none;
    border-bottom: 1px solid black;
}

.contact-available form input:focus::placeholder , textarea:focus::placeholder{
    margin-bottom: 20px;
    color: #AC64F7;
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.contact-available form .inputs .submit-btn .bttn{
    text-decoration: none;
    color: white;
    background: linear-gradient(#9952E8,#5C259C);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 80px;
    border-radius: 30px;
}

.contact-available .form-card{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 992px){
    .contact-available .heading h1{
        font-size: 36px;
    }
    .contact-available .para{
        margin-top: 0;
    }
    .contact-available .para p{
        font-size: 14px;
    }
    .contact-available .circle-text-img .imge{
        height: 120px;
        width: 120px;
    }
    .contact-available .heading{
        margin-top: 20px;
    }
    .contact-available form input:focus::placeholder , textarea:focus::placeholder{
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px){
    .contact-available .contact-main{
        padding: 30px 10px;
    }
    .contact-available .available-box{
        padding: 30px 0;
    }
    .contact-available .circle-text-img .imge{
        height: 110px;
        width: 110px;
    }
    .contact-available form .inputs .submit-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }
    .contact-available form input:focus::placeholder , textarea:focus::placeholder{
        font-size: 22px;
    }
}
@media only screen and (max-width: 426px){
    .contact-available .para p{
        font-size: 12px;
    }
}
@media only screen and (max-width: 376px){
    .contact-available .heading h1 {
        font-size: 31px;
    }
    .contact-available .heading h1 {
        font-size: 31px;
    }
    .contact-available .heading h1 {
        font-size: 31px;
    }
    .contact-available .heading h1 {
        font-size: 31px;
    }
}


/* CONTACT-US-----------------ENDS----------------HERE */


/* OTHER-PAGES---------------------------------ENDS------------------------------HERE */