@media screen and (max-width: 600px) {

    /* Loader */
    .loader{
        position: fixed;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        z-index: 1999;
        overflow: hidden;
    }
    .dots{
        width: 5vw;
        height: 5vw;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        z-index: 1000;
        -webkit-animation-name: big;
                animation-name: big;
        -webkit-animation-duration: 18s;
                animation-duration: 18s;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
    }
    .loader h4{
        font-size: 5vw;
        color: #FFFFFF;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        z-index: 1001;
    }
    
    @-webkit-keyframes big {
        0%{
            scale: 1;
        }
        100%{
            scale: 188;
        }
    }
    
    @keyframes big {
        0%{
            scale: 1;
        }
        100%{
            scale: 188;
        }
    }
    
    /* ******************  NAVBAR  *********************** */

a {
    text-decoration: none;
    color: #fff;
}

.hover-it {
    font-size: 1vw;
    position: relative;
    /* Required for the underline effect */
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.hover-it::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    /* Thickness of the underline */
    background: rgb(255, 255, 255);
    /* Underline color */
    position: absolute;
    left: 0;
    bottom: -5px;
    /* Position the underline below the text */
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    /* Initially hide the underline */
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    /* Smooth transition for the underline */
}

.hover-it:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    /* Show the underline on hover */
}

.border1 {
    border-top: 1px solid rgb(112, 103, 103);
    width: 100%;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 3vw;
    z-index: 1000;
}
.dn{
    display: none;
}


.logo {
    width: 80px;
    height: 80px;
}
.n, .a{
    height: 35px;
    padding: 1vw;
    border-radius: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #fff;
}
.n{
    width: 115px;
    background: -webkit-linear-gradient(right, #02A8B5, #7129E8);
    background: linear-gradient(to left, #02A8B5, #7129E8);
    font-size: 3vw;
}
.a{
    width: 38px;
    font-size: 3vw;
    font-family: sans-serif;
    background: -webkit-linear-gradient(bottom, #02A8B5, #7129E8);
    background: linear-gradient(to top, #02A8B5, #7129E8);
}
.nav-btn:hover .n{
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
}
.nav-btn:hover .a{
    width: 35px;
    rotate: 90deg;
    margin-left: -1px;
    border-bottom-right-radius: 0%;
    border-bottom-left-radius: 0%;
}

/* ************  ***  *********** */


/* ******************  Hero Page  *********************** */

#hero-page{
    width: 100%;
    min-height: 100vh;
    padding: 0 4vw;
    padding-top: 40%;
}

.hero-top{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 4vw;
}
.hero-top h1{
    font-size: 11vw;
    line-height: 8vw;
    text-transform: uppercase;
}

.hero-top .services-rep{
    width: 70%;
    height: 5vh;
}
.services-rep h3{
    font-size: 3.5vw;
}
.circle{
    left: 1%;
    width: 13%;
    height: 30px;
    font-size: 4vw;
}
.services-rep:hover .circle{
    font-size: 5vw;
}

.hero-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1vw;
}
.hero-center h1{
    font-size: 9.3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
}
.hero-center h1 .ltd{
    font-size: 4vw;
}
.little-intro{
    width: 100%;
    margin-top: 4vw;
}
.little-intro p{
    color: gray;
    font-size: 4.5vw;
    width: 100%;
}

.hero-bottom{
    width: 98%;
    margin: auto;
    height: 60vh;
    margin-top: 35%;
    background: #222;
    border-radius: 35px 35px 0 0;
    position: relative;
    padding: 3vw 1vw;
    background-image: url(./Assets/Imgs/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bottom .circle1{
    scale: 1;
    font-size: 8vw;
    right: 10%;
    top: -10%;
}


.card{
    width: 50%;
    height: 40%;
    padding: 1vw;
    border-radius: 8px;
    position: absolute;
    background: #f3f3f394;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.123);
}
.card h5{
    /* padding: 1vw 0; */
    font-size: 1.5vw;
    border-bottom: 1px solid gray;
}
.card h5 img{
    height: 5vw;
}
.card p{
    padding: 1vw 0;
    display: inline-block;
}
.p1{
    top: 10%;
    left: 7%;
}
.p2{
    top: 35%;
    right: 8%;
}
.p3{
    bottom: 3%;
    left: 12%;
}

pre {
    padding: 10px;
    border-radius: 3px; 
  }
  pre[class*="language-"], code[class*="language-"] {
    font-size: 2vw; /* Adjust the font size as needed */
    line-height: 1.5; /* Optional: Adjust line height for better readability */
  }

/* Text to scroll */

.moving-div{
    height: 15vh;
    gap: 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: black;
    white-space: nowrap;
    overflow-x: hidden;

}
.move{
    display: inline-block;
    -webkit-animation-name: mobbe;
            animation-name: mobbe;
    -webkit-animation-duration: 9s;
            animation-duration: 9s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}
.move h1{
    width: 100%;
    font-size: 10vw;
    color: #808080;
}

/* About Page */

#about{
    width: 100%;
    height: 55vh;
    padding: 0 4vw;
    padding-top: 7vw;
    background: #222;
}

#about h1{
    font-size: 11vw;
    font-family: mer;
    text-transform: uppercase;
    color: gray;
    margin-bottom: 2vw;
}

.about-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7vw;
}
.about-text-p1 {
    width: 95%;
}
.about-text-p1 p{
    color: gray;
    font-size: 5vw;
    width: 100%;
}

.about-text-p2{
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1vw;
    margin-top: 2vw;
}

.about-text-p2 .tube{
    height: 5vh;
    border-radius: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1vw;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    padding: 0 1vw;
}
.tube h3{
    color: gray;
    font-size: 3vw;
}
.tube img{
    height: 7vw;
    width: 7vw;
}
.t1{
    width: 50%;
}
.t2{
    width: 45%;
}
.t3{
    width: 40%;
}
.t4{
    width: 55%;
}

.tube img{
    margin-left: .5vw;
    scale: .7;
}
.tube:hover img{
    margin-left: 1vw;
}

/* Services */

#service{
    width: 100%;
    height: 70vh;
    padding: 0 4vw;
    padding-top: 7vw;
    background: #000;
}

#service h1{
    font-size: 11vw;
    font-family: mer;
    text-transform: uppercase;
    color: gray;
    margin-bottom: 2vw;
}

.service-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.service-text-p1{
    width: 100%;
}
.service-text-p1 p{
    color: #808080;
    font-size: 4vw;
    width: 95%;
}

.service-text-p2{
    width: 90%;
    height: 45vh;
    overflow: hidden;
    position: relative;
    margin-top: 5%;
}
.service-text-p2 img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    top: -17%;
}

/* Services */

#services{
    width: 100%;
    padding: 4vw;
    background: #000;
    padding-bottom: 5vw;
    overflow: hidden;
}

#services summary{
    font-size: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #808080;
    padding: 2vw;
    height: 10vh;
    border-bottom: 1px solid #808080;
    text-transform: capitalize;
    font-weight: 900;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    cursor: pointer;
    padding-bottom: 1vw;
}
#services summary:hover{
    background-color: #808080;
    color: #fff;
}
.bg{
    font-size: 6vw;
    padding: 3vw;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
#services summary:hover .bg{
    background: -webkit-linear-gradient(left, #02A8B5, #7129E8);
    background: linear-gradient(to right, #02A8B5, #7129E8);
}
#services details{
    font-size: 5vw;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    text-align: left;
    color: #808080;
}
.dets{
    gap: 2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.dets p{
    width: 85%;
}

/* *****************   ******   ****************** */

.container-approach {
    width: 100%;
    margin: 0 auto;
    padding: 1vw 4vw;
    background-color: #fff;
    height: auto;
}

.container-approach h1 {
    color: #000;
    font-size: 11vw;
    margin-bottom: 2vw;
    padding: 4vw 0;
    font-family: mer;
    font-weight: 900;
}

.approach {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3vw 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.heading {
    width: 50%;
    font-size: 5vw;
    color: #000;
}

.text {
    width: 40%;
    font-size: 4vw;
    color: #000;
}

/* Clients */
.client-slider{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5vw;
    gap: 3vw;
}
.client-slider h1{
    font-size: 9vw;
    color: #808080;
    text-transform: uppercase;
    font-weight: 900;
    font-family: mer;
    text-align: left;
}
#moving-div {
    /* background-color: red; */
    white-space: nowrap;
    padding: 1.2vw;
    overflow: hidden;
    width: 90%;
    position: relative;
    margin-top: 4vw;

}

#moving-div .move {
    display: inline-block;
    animation-name: mobe;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#moving-div .move img {
    border-radius: 3px;
    height: 9vw;
    margin: 0 1.2vw;
    background: #111;
}

@keyframes mobe {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}

#blur-left {
    height: 100%;
    width: 20%;
    background: linear-gradient(to right, #000, transparent);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#blur-right {
    height: 100%;
    width: 20%;
    background: linear-gradient(to right, transparent, #000);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

/* Case Studies */

#case-studies{
    width: 100%;
    height: auto;
    padding: 0 4vw;
    padding-top: 11vw;
    background: #000;
    padding-bottom: 7vw;
}
#case-studies .case-head{
    font-size: 11vw;
    color: #808080;
    text-transform: uppercase;
    font-weight: 900;
    font-family: mer;
}
.caseCon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7vw;
    flex-direction: column;
}
.rev{
    flex-direction: column;
}
.caseCon img{
    width: 90%;
    border-radius: 9px;
    object-fit: contain;
}
.cases{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5vw;
    width: 90%;
}
.cases details{
    background: #222;
    padding: 4vw;
    border-radius: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5vw;
}
.cases summary h2 {
    color: #808080;
    font-size: 6vw;
    font-weight: 900;
}
.cases details p{
    font-size: 4vw;
    margin-top: 3vw;
    color: #fff;
}
details .tags{
    margin-top: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
}
details .tag{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1vw 2vw;
    border-radius: 35px;
    font-size: 2vw;

}

/* Footer */

footer{
    width: 100%;
    height: 70vh;
    background: #000;
    padding: 4vw 0;
}

.footer1{
    width: 88%;
    height: 80%;
    margin: auto;
    background-color: #222;
    border-radius: 0 0 35px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            gap: 5vw;
}
.footer1 h1{
    font-size: 11vw;
    color: #808080;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    line-height: 10.5vw;
}

.btns{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
    margin-top: 6vw;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.btns .btn{
    width: 35%;
    height: 4vh;
    border-radius: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    font-size: 4vw;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    text-decoration: none;
}
.bn{
    border: none;
    color: #fff;
    background: -webkit-linear-gradient(left, #02A8B5, #7129E8);
    background: linear-gradient(to right, #02A8B5, #7129E8);
}
.bgn{
    border: 1px solid #808080;
    background: none;
    color: #808080;
}
.bgn:hover{
    border: none;
    color: #fff;
    background: -webkit-linear-gradient(left, #02A8B5, #7129E8);
    background: linear-gradient(to right, #02A8B5, #7129E8);
}
.bn:hover{
    background: none;
    border: 1px solid #808080;
    color: #808080;
}

.brand{
    text-align: center;
    margin-top: 2vw;
    font-size: 6vw;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-family: mer;
}
.slinks{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    margin-top: 2vw;
    flex-direction: column;
}
.links{
    display: flex;
    gap: 2vw;
}
.links img{
    height: 8vw;
    transition: all .5s ease-in-out;
}
.links img:hover{
    height: 8.3vw;
}
footer p{
    color: #808080;
    font-size: 3vw;
    text-align: right;
    margin-top: 2vw;
    padding: 1vw;
}




}