@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@400;500;600;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: #000000;
    --white-color: #FFFFFF;
    --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;
}


/* Navbar Section CSS */

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-top: 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-top: 2rem;
}

h2 span {
    color: var(--primary-color);
}

h3 {
    color: var(--white-color);
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--secondary-font);
    line-height: 1.4;
    margin-top: 1rem;
}

h4 {
    color: var(--black-color);
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 1;
    margin-top: 2rem;
}

h5 {
    color: var(--white-color);
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--secondary-font);
    line-height: 1;
    margin-top: 0.9375rem;
    text-transform: uppercase;
}

p {
    color: var(--white-color);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1rem;
    letter-spacing: 1px;
}

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;
    padding: 0.9rem 3rem;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s linear;
    box-shadow: 0 0.063rem 0.4rem rgba(0, 0, 0, 0.3);
}

.main-btn:hover {
    background-color: 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: '';
    background-color: var(--primary-color);
    width: 50%;
    height: 50%;
    right: -0.4rem;
    bottom: 0%;
    opacity: 0.5;
}


/* 01 Navbar Section Start */

.header {
    background-color: var(--black-color);
    padding: 1rem 0;
}

.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: 0 0.2rem;
}


/* DropDown Menu CSS Start */

.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-family: var(--secondary-font);
    font-weight: 600;
}

.header .dropdown-toggle::after {
    content: '+';
    border: none;
    vertical-align: middle;
    font-size: 1.6rem;
}

.header .nav-link:hover>.dropdown-toggle::after,
.header .nav-link.dropdown-toggle.show {
    color: var(--primary-color);
}

.header .dropdown-item:focus,
.header .dropdown-item:hover,
.header .navbar-nav .nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.header .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;
}


/* DropDown Menu CSS End */


/* Fixed Header CSS Start */


/* .header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
} */


/* Fixed Header CSS End */


/* 01 Navbar Section End */


/* 02 Banner Section Start */

.banner-wrapper {
    margin-top: 8rem;
    background-image: url(../images/banner/banner.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding-bottom: 5rem;
}


/* 02 Banner Section End */


/* Parallax Effect Start */

.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;
}


/* Parallax Effect End */


/* About CSS Start */

.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);
    background-color: var(--black-color);
    padding: 2.5rem;
    border-radius: 2.5rem;
    text-align: left;
    z-index: 6;
}

.main-wrapper .black-card.right {
    right: -400px;
    left: unset;
}


/* About CSS End */


/* Process CSS Start */

.process-wrapper {
    background-color: var(--black-color);
}

.process-wrapper h1,
.work-wrapper h1 {
    color: var(--white-color);
}

.process-wrapper .process-content {
    padding: 4rem;
    position: relative;
}

.process-wrapper .process-content::after {
    position: absolute;
    content: '';
    width: 40%;
    margin: auto;
    bottom: 0;
    border-bottom: 0.1rem solid var(--white-color);
}

.process-wrapper .process-content span {
    color: var(--primary-color);
    font-size: 7rem;
    font-weight: 800;
    margin-right: 2rem;
}


/* Process CSS End */


/* Work CSS Start */

.work-wrapper {
    background-color: var(--black-color);
}


/* Work CSS End */


/* Testimonial CSS Start */

.testimonial-wrapper h2 {
    color: var(--black-color);
}

.testimonial-wrapper .card {
    border: none;
    background-color: var(--white-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 {
    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);
}


/* Testimonial CSS End */


/* Footer CSS Start */

.footer-wrapper {
    background-color: var(--black-color);
    padding-bottom: 0rem;
}

.footer-wrapper .footer-logo img {
    width: 24rem;
    height: auto;
    object-fit: cover;
}

.footer-wrapper h5 a {
    color: var(--white-color);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 2rem;
}

.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;
}


/* Footer CSS End */


/* Whatsapp Integration CSS Start */

.whatsapp-icon {
    position: relative;
}

.whatsapp-icon .whatsapp {
    position: fixed;
    width: 6rem;
    z-index: 6;
    bottom: 1rem;
    right: 0.5rem;
}

.whatsapp-icon .whatsapp img {
    width: 5.5rem;
    box-shadow: 0px 0px 70px rgb(0 255 0);
    border-radius: 11px;
}


/* Whatsapp Integration CSS End */


/* ========================
        About Page CSS
======================== */


/* Abilities Section CSS Start */

.about .abilities-wrapper ul {
    list-style: none;
    padding: 0;
}

.about .abilities-wrapper h3 {
    color: var(--black-color);
}

.about .abilities-wrapper ul li p {
    color: var(--black-color);
}


/* Abilities Section CSS End */


/* Team Section CSS Start */

.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;
}


/* Team Section CSS End */


/* ========================
    Portfolio Page CSS
======================== */


/* Work Section CSSS tart */

.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);
}


/* Work Section CSS End */


/* ========================
    Contact Page CSS
======================== */


/* Contact CSS Start */

.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;
}


/* Contact CSS End */


/* Form CSS Start */

.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 .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;
    min-height: 20rem;
}


/* Form CSS End */