* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
}

:root {
    --primary-color: #0084ff;
}

/* Smooth scroll stuff */
html {
    overflow-x: hidden;
    overflow-y: scroll;
}    

.js-cont {
    position: relative;
    width: 100%;
    height: 100%;
}

.js-scroll {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    will-change: transform;
}

.prod-box svg path:last-child {
    fill: #fff !important;
}



a {
    text-decoration: none !important;
}

.main-nav {
    position: fixed !important;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    padding: 20px 50px;
}

.navbar {
    padding: 15px 20px !important;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(85, 85, 85, 0.3);
    border-radius: 100px;
}

.navbar-brand {
    color: #fff !important;
}

.navbar-brand h5 {
    margin-bottom: 0px;
}

.navbar-brand img {
    width: 200px;
}

.nav-link {
    color: #fff !important;
    margin: 0px 10px;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.banner {
    background-color: #000;
    background-image: url('../images/hero-bg-shape-color.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size:cover;
}

.layer {
    background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,1));
}

.banner-cntnt>span {
    color: #ccc;
    font-size: 22px;
}

.banner-cntnt h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}


.banner-cntnt p {
    color: #eee;
    font-size: 18px;
}

.btn-1 {
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-right: 10px;
}

.btn-1::after {
    content: "Get Started";
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -200px;
    z-index: 1;
    padding: 12px 30px;
    color: #000;
    border-radius: 100px;
    font-weight: 500;
    transition: all .2s ease-in-out;
}

.btn-1:hover::after {
    left: 0px;
}

.btn-2 {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 500;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-2:hover {
    background-color: #fff;
    color: #000;
}

.home-about h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.home-about p {
    color: #ccc;
    line-height: 30px;
}

/* Services */

.services {
    background-color: #000;
}

.heading h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.sb-2 {
    display: grid;
    grid-template-columns: repeat(2,50%);
    align-items: center;
}

.sb-2 img {
    width: 100%;
    border-radius: 100px;
}

.sb-2 h3 {
    padding-left: 15px;
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 700;
}

.sb-2 h3 span {
    display: block;
}

.sb-3 p {
    margin-bottom: 0px !important;
    color: #aaa;
}

.s-box {
    color: #fff !important;
    padding: 30px 10px;
    border-top: 1px dotted #555;
    border-bottom: 1px dotted #555;
    display: block;
    transition: all .3s ease-in-out;
}

.sb-1 h6 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 0px;
    transition: all .5s ease-in-out;
}

.s-box:hover {
    padding: 30px 30px;
    background-color: #090909;
}

.sb-4 svg {
    transition: all .5s ease-in-out;
}

.s-box:hover h6, .s-box:hover svg {
    color: var(--primary-color);
}

.img-bg {
    background: url('../images/img-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    background-attachment: fixed;
}

.heading-black h2 {
    color: #000;
    font-size: 48px;
    font-weight: 700;
}

/* .heading-black span {
    background-image: url('../images/bg-paint-long.webp');
    color: #000;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
} */

.prod-bg {
    background-color: #000;
}

.prod-box svg path:first-child {
    fill: var(--primary-color);
}

.prod-box {
    padding: 30px 10px 0px 10px;
}

.prod-box svg {
    margin-bottom: 20px;
    transition: all .5s ease-in-out;
}

.prod-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    transition: all .5s ease-in-out;
    color: #fff;
}

.prod-box p {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

.prod-box:hover svg {
    width: 100px;
    height: 100px;
}

.prod-box:hover h3 {
    color: var(--primary-color);
}

.testimonials {
    background-color: #090909;
}

.test-box {
    text-align: center;
}

.test-box img {
    width: 60px;
    margin-bottom: 30px;
    filter: invert(0.8);
}

.test-box p {
    font-size: 24px;
    color: #aaa;
    margin-bottom: 20px;
}

.test-box h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.test-box span {
    color: #ccc;
}

.clients {
    background-color: #000;
}

.clients-img {
    text-align: center;
}

.main {
    position: relative;
    background-color: #000;
}

.video video {
    width: 100%;
    height: 100vh;
    object-fit: cover;

}

.bn-cntnt {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.3);
}


footer {
    background-color: #090909;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo h5 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 12px;
    color: #aaa;
}


.footer-links h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none !important;
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
    display: flex;
    transition: all .3s ease-in-out;
}

.footer-links a svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 2px;
}

.footer-links .social {
    margin-top: 20px;
}

.footer-links .social a {
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

/* About */

.vh-70 {
    height: 80vh;
}

.inner-banner {
    background-image: url('../images/hero-bg-shape-color.webp');
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: 70vh;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size:cover;
}

.in-banner-cntnt h2 {
    color: #fff;
    font-size: 64px;
    font-weight: bold;
}

.breadcrumb-item {
    color: #eee !important;
}

.breadcrumb-item a {
    color: #aaa;
}

.in-about-img img {
    width: 100%;
    padding: 50px;
}

.in-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.in-about p {
    color: #ccc;
    line-height: 30px;
}

.founder-details p {
    margin: 0px;
    color: #aaa;
}

.founder-details h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.vision-bg {
    background-color: #111;
}


.vision-box {
    padding: 30px 10px 20px 10px;
}

.vision-box img {
    width: 50px;
    margin-bottom: 20px;
    transition: all .5s ease-in-out;
}

.vision-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    transition: all .5s ease-in-out;
    color: #fff;
}

.vision-box p {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

.vision-box:hover svg {
    width: 100px;
    height: 100px;
}

.vision-box:hover h3 {
    color: var(--primary-color);
    padding-left: 10px;
}

.vb1 {
    border-right: 1px solid #333 !important;
    border-bottom: 1px solid #333 !important;
}

.vb2 {
    border-right: 1px solid #333 !important;
    border-bottom: 1px solid #333 !important;
}
.vb3 {
    border-bottom: 1px solid #333 !important;
}
.vb4 {
    border-right: 1px solid #333 !important;
}
.vb5 {
    border-right: 1px solid #333 !important;
}
.vb6 {
    /* border-left: 1px solid #333 !important; */
}


.about-vid-bg {
    background-color: #000;
}

.abt-vid video {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.p-r {
    position: relative;
}

.abt-vid-cntnt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.abt-vid-cntnt h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.in-serv-vid video {
    width: 100%;
    object-fit: cover;
}

/* Contact */

.in-contact-form form input, .in-contact-form form textarea {
    background-color: #333;
    border: 1px solid #333;
    margin-bottom: 10px;
    padding: 10px;
    color: #fff;
    outline: none !important;
    width: 100%;
    border-radius: 10px !important;
}

.in-contact-form form input:focus, .in-contact-form form textarea:focus {
    background-color: #555;
    border: none !important;
}

.in-contact-form form input::placeholder, .in-contact-form form textarea::placeholder {
    color: #aaa;
}

.in-contact-form form button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid var(--primary-color);
    font-weight: 600;
}

.in-contact-form h2 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.in-contact-form p {
    color: #aaa;
}


.foot-contact h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.contact-details ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.contact-details li {
    margin-bottom: 20px;
}

.contact-details a {
    color: #ccc;
    font-size: 18px;
    transition: all .3s ease-in-out;
    position: relative;
    top: 0;
}

.contact-details a svg {
    margin-right: 10px;
}

.contact-details a:hover {
    color: var(--primary-color);
    top: -3px;

}

.contact-details ul li>a {
    display: flex;
}

.contact-map {
    background-color: #090909;
}

.contact-map iframe {
    width: 100%;
    filter: invert(1);
}

@media only screen and (max-width: 768px) {

    .navbar-brand h5 {
        font-size: 14px;
    }

    .main-nav {
        padding: 20px 10px;
    }

    .menu-btn {
        color: #fff;
    }

    .navbar {
        border-radius: 20px;
    }

    .nav-link{
        margin: 0px;
    }

    .navbar-nav  {
        margin-top: 20px;
    }

    .banner-cntnt>span {
        font-size: 16px;
    }

    .banner-cntnt h1 {
        font-size: 36px;
    }

    .banner-cntnt p {
        font-size: 16px;
    }

    .home-about h2 {
        font-size: 32px;
    }

    .heading h2 {
        font-size: 32px;
        /* text-align: center; */
    }

    .sb-2 {
        grid-template-columns: 100%;
    }

    .sb-1 h6 {
        /* text-align: center; */
        margin-bottom: 10px;
    }

    .sb-2 h3 {
        padding: 0px;
        /* text-align: center; */
        margin-bottom: 10px;
    }

    .sb-2 h3 span {
        display: unset;
    }

    .sb-2 img {
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .sb-3 p {
        /* text-align: center; */
    }

    .sb-4 {
        display: none;
    }

    .img-bg {
        height: 40vh;
        background-attachment: unset;
    }

    .inner-banner {
        background-attachment: unset;
    }

    .test-box p {
        font-size: 15px;
    }

    .clients-img {
        margin-bottom: 40px;
    }

    .footer-links h4 {
        margin-top: 30px;
    }

    .last p {
        font-size: 14px;
    }

    .foot-contact h2 {
        font-size: 24px;
    }

    .in-banner-cntnt h2 {
        font-size: 42px;
    }

    .in-about h2 {
        font-size: 28px;
    }

    .abt-vid-cntnt {
        text-align: left;
        padding: 20px;
    }

    .abt-vid-cntnt h2 {
        font-weight: 36px;
    }

    .vb1 , .vb2 , .vb3, .vb4, .vb5, .vb6 {
        border: none !important;
        border-bottom: 1px solid #333 !important;
    }

}

@media only screen and (min-width: 769px) and (max-width: 900px) {

    .navbar-brand h5 {
        font-size: 14px;
    }

    .main-nav {
        padding: 20px 10px;
    }

    .menu-btn {
        color: #fff;
    }

    .navbar {
        border-radius: 20px;
    }

    .nav-link{
        margin: 0px;
    }

    .navbar-nav  {
        margin-top: 20px;
    }

    .banner-cntnt>span {
        font-size: 16px;
    }

    .banner-cntnt h1 {
        font-size: 36px;
    }

    .banner-cntnt p {
        font-size: 16px;
    }

    .home-about h2 {
        font-size: 32px;
    }

    .heading h2 {
        font-size: 32px;
        /* text-align: center; */
    }

    .sb-2 {
        grid-template-columns: 100%;
    }

    .sb-1 h6 {
        /* text-align: center; */
        margin-bottom: 10px;
    }

    .sb-2 h3 {
        padding: 0px;
        /* text-align: center; */
        margin-bottom: 10px;
    }

    .sb-2 h3 span {
        display: unset;
    }

    .sb-2 img {
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .sb-3 p {
        /* text-align: center; */
    }

    .sb-4 {
        display: none;
    }

    .img-bg {
        height: 40vh;
        background-attachment: unset;
    }

    .inner-banner {
        background-attachment: unset;
    }

    .test-box p {
        font-size: 15px;
    }

    .clients-img {
        margin-bottom: 40px;
    }

    .footer-links h4 {
        margin-top: 30px;
    }

    .last p {
        font-size: 14px;
    }

    .foot-contact h2 {
        font-size: 24px;
    }

    .in-banner-cntnt h2 {
        font-size: 42px;
    }

    .in-about h2 {
        font-size: 28px;
    }

    .abt-vid-cntnt {
        text-align: left;
        padding: 20px;
    }

    .abt-vid-cntnt h2 {
        font-weight: 36px;
    }

    .vb1, .vb2, .vb3, .vb4, .vb5, .vb6 {
        border: none;
        border-bottom: 1px solid #333;
    }

}