/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff0000;
    --secondary: #333333;
    /* Font Variable */
    --font-text: "Roboto", sans-serif;
    --font-heading: "Oswald", sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    z-index: 10000001;
    background-color: var(--white);
    mix-blend-mode: difference;
    transition: 0.05s ease-in-out;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 700;
    display: inline-block;
    padding: 0.94em 2em;
    border-radius: 4.375rem;
    line-height: normal;
    min-width: 163px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--black);
    z-index: -2;
}

.themeBtn::after {
    content: '';
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 100%;
    left: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 0 1rem #efefef inset, 0 0 0 2rem #ccc inset;
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover::after {
    left: 0%;
    top: -30%;
    transform: scale(3);
}

.themeBtn:hover {
    color: var(--white);
}

.heading {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.subtitle {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.subtitle.line::after {
    content: '';
    display: inline-block;
    width: 264px;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    vertical-align: middle;
    margin-left: 0.5rem;
}


/* !GLOBAL CSS */


/* mouse animation css  */


/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */


/* mouse animation css  */


/* NAV HEADER CSS */

header {
    width: 100%;
    padding: 0;
    background: var(--black);
    position: relative;
    z-index: 111;
    transition: 0.3s ease-in-out;
}

.navbar {
    padding: 0 4.75rem;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    mix-blend-mode: lighten;
}

.navbar-nav {
    align-items: center;
    justify-content: end;
    gap: 2.625rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 0.9375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transform: scaleX(0);
    transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
}

.nav-btn {
    margin-left: 2rem;
}

.nav-btn .themeBtn {
    min-width: 137px;
    font-size: 0.75rem;
    border: 1px solid var(--white);
    text-transform: uppercase;
}

.nav-btn .themeBtn:hover {
    border-color: var(--secondary);
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    padding: 0;
    height: 754px;
    background-color: #F4F6F7;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 87.5%);
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    margin-left: 1rem;
    margin-bottom: 2.25rem;
}

.hero-text h1 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.text-outline {
    -webkit-text-stroke: 2px var(--black);
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: #5C5C5C;
    line-height: 1.56;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.hero-img {
    text-align: center;
}

.hero-img img {
    animation: bounce 2s infinite alternate-reverse;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(1rem);
    }
}


/* !MAIN HERO SLIDER CSS */


/* ABOUT PRODUCT SECTION CSS */

.about-product {
    padding: 7.25rem 0;
    z-index: 2;
}

.aboutimg {
    display: flex;
    align-items: flex-start;
    margin-left: -12rem;
}

.aboutimg figure {
    margin: auto;
    background-color: #D9D9D9;
    width: 100%;
    max-width: 470px;
    aspect-ratio: 1;
    clip-path: inset(0 0 0 0 round 3.25rem);
    /* rotate: 45deg; */
    animation: rotation 25s infinite linear;
}

.aboutimg figure img {
    scale: 1.3;
    /* rotate: -45deg; */
    animation: rotation 25s infinite linear reverse;
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.aboutimg .aboutimg2 {
    opacity: 0.2;
    margin-top: -6.25rem;
    position: relative;
    z-index: 1;
}

.aboutimg .aboutimg2::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid black;
    border-radius: 2rem;
    transform: rotate(45deg);
    scale: 0.75;
    z-index: -1;
    animation: rotation 25s infinite linear reverse;
}

.aboutproduct-text {
    max-width: 480px;
}

.aboutproduct-text .heading {
    margin-bottom: 1rem;
}

.aboutproduct-text p {
    font-size: 1.125rem;
    color: #5C5C5C;
    line-height: 1.56;
    margin-bottom: 2rem;
}


/* !ABOUT PRODUCT SECTION CSS */


/* SHOWCASE VISUAL PRODUCT SECTION CSS */

.showcase-visual {
    padding: 6.375rem 0 6.25rem;
    text-align: center;
    z-index: 1;
}

.showcase-visual::before {
    content: "";
    position: absolute;
    top: -13rem;
    left: 0;
    width: 100%;
    height: 782px;
    background-color: #F4F6F7;
    clip-path: polygon(0% 0%, 100% 44%, 100% 100%, 0% 100%);
    z-index: -1;
}

.showcase-visual .heading {
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
}

.counter-item {
    margin-bottom: 5rem;
}

.counter-item h4 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.counter-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #828282;
    margin-bottom: 0;
}

.visual-product {
    border-radius: 1.375rem;
    background-color: #EFEFEF;
    overflow: hidden;
    position: relative;
}

.visual-product .visual-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 2.5rem;
    z-index: 2;
    transition: 0.5s ease;
}

.visual-product figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.visual-product .visual-product-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, #CECECE 100%);
    transition: 0.5s ease;
    z-index: -1;
}

.visual-product .visual-product-overlay h4 {
    margin: 0;
    font-size: 2.375rem;
    font-weight: 700;
    text-transform: uppercase;
}

.visual-product:hover figure img {
    transform: scale(1.1);
}

.visual-product:hover .visual-product-overlay {
    background-color: rgba(206, 206, 206, 0.25);
}

.visual-product:hover .visual-product-overlay::before {
    opacity: 0;
}


/* !SHOWCASE VISUAL PRODUCT SECTION CSS */


/* PRODUCT SECTION CSS */

.product-section {
    padding: 5.625rem 0 6.25rem;
    background-color: #F4F6F7;
}

.product-section .heading {
    text-align: center;
    font-size: 3.75rem;
    margin-bottom: 3.125rem;
}

.product-card {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.product-card figure {
    min-height: 555px;
    display: grid;
    place-items: center;
}

.product-card figure img {
    position: relative;
    z-index: 0;
    transition: 0.5s ease;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 2rem;
    border-radius: inherit;
    border: 1px solid #9C9C9C;
    z-index: 1;
}

.product-card .product-card-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, #CECECE 100%);
    transition: 0.5s ease;
    z-index: -1;
}

.product-card-overlay h4 {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.product-card-overlay p {
    margin: 0;
    font-size: 1.875rem;
    color: var(--black);
    text-transform: uppercase;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.product-card:hover figure img {
    transform: scale(1.1);
}

.productSlider {
    margin: 0 -1.5rem;
}


/* !PRODUCT SECTION CSS */


/* ABOUT CTA SECTION CSS */

.about-cta {
    padding: 6rem 0 2.75rem;
}

.aboutcta-text {
    max-width: 508px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.aboutcta-text .heading {
    margin-bottom: 1.25rem;
}

.about-cta figure {
    margin-left: -9.75rem;
}

.aboutcta-text p {
    font-size: 1.125rem;
    color: #5C5C5C;
    line-height: 1.56;
    margin-bottom: 1rem;
}


/* !ABOUT CTA SECTION CSS */


/* LATEST PROJECTS SECTION CSS */

.latest-project {
    padding: 11.5rem 0;
    z-index: 1;
}

.latest-project-bg {
    position: absolute;
    inset: 0;
    background-color: var(--black);
    clip-path: polygon(0% 0%, 100% 9%, 100% 100%, 0% 100%);
    z-index: -1;
}

.latest-project .heading {
    font-size: 3.75rem;
    margin-bottom: 1rem;
}

.latest-project p {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.78;
    margin-bottom: 2.875rem;
}

.latest-project figure {
    text-align: center;
}

.latest-project .obj {
    position: absolute;
}

.latest-project .obj1 {
    top: 30%;
    left: 2.5rem;
}

.latest-project .obj2 {
    bottom: -9rem;
    left: 11rem;
}

.latest-project .obj3 {
    top: 24%;
    right: 9.625rem;
}

.latest-project .obj4 {
    bottom: -5rem;
    right: 0rem;
}


/* !LATEST PROJECTS SECTION CSS */


/* TESTIMONIAL SECTION CSS */

.testimonial-section {
    padding: 16.125rem 0 6.25rem;
}

.testimonial-section .heading {
    margin-bottom: 2.75rem;
    margin-left: 5.25rem;
}

.reviewSlider {
    margin-right: -18.5rem;
    margin-left: 5.25rem;
}

.review-card {
    background-color: #F6F6F6;
    padding: 2.5rem 2rem 2.125rem;
    user-select: none;
}

.review-card .text {
    font-size: 1.125rem;
    color: #313131;
    line-height: 1.78;
    margin: 1.625rem 0 1.125rem;
    max-width: 430px;
}

.review-card-detail {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.review-card-detail figure img {
    max-width: 59px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.review-card-detail h6 {
    text-transform: uppercase;
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0;
}

.review-card-detail span {
    color: #A0A0A0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}


/* !TESTIMONIAL SECTION CSS */

.newsletter {
    background-color: var(--black);
    padding: 3.75rem 0 2.5rem;
}

.newsletter .heading {
    color: var(--white);
    font-size: 4.375rem;
    line-height: 1;
}

.newsletter p {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    line-height: normal;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--white);
    width: 100%;
    max-width: 573px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    margin: 0;
    display: flex;
    align-items: baseline;
    width: 100%;
    color: var(--white);
}

.newsletter-form .form-group .form-control {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    width: 100%;
    color: var(--white);
    padding: 1.75rem 0.75rem;
}

.newsletter-form .form-group .form-control::placeholder {
    color: var(--white);
}

.newsletter-form button {
    color: var(--white);
    font-size: 1.25rem;
}

.newsletter-form button:hover {
    background-color: var(--white);
    color: var(--black);
}


/* FOOTER CSS */

footer {
    padding-top: 3.75rem;
    background-color: #0D0D0D;
}

.footerLogo {
    display: inline-block;
}

.footerLogo img {
    mix-blend-mode: lighten;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 10px 0;
}

.social-link a {
    width: 4.375rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #EFEFEF;
    display: grid;
    place-items: center;
    font-size: 1.125rem;
    color: var(--black);
    transition: 0.5s ease;
}

.social-link a:hover {
    background-color: #242424;
    color: var(--white);
}

footer h3 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.quicklist li+li {
    margin-top: 0.5rem;
}

.quicklist a {
    color: var(--white);
    font-size: 1.125rem;
    text-transform: uppercase;
}

.calFoter li {
    display: flex;
    align-items: baseline;
    color: var(--white);
}

.calFoter li+li {
    margin-top: 2.25rem;
}

.calFoter li i {
    width: 30px;
    font-size: 1.125rem;
}

.calFoter li a {
    display: grid;
    gap: 0.25rem;
    font-size: 0.9375rem;
    color: var(--white);
}

.calFoter li a span {
    transition: 0.5s ease;
}

.quicklist a:hover,
.calFoter li a span:hover {
    opacity: 0.5;
}

.copyRight {
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    align-items: center;
    padding: 2.75rem 0 2.5rem;
    margin-top: 4.625rem;
}

.copyRight p {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
    line-height: normal;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: end;
}

.payment-method li {
    margin-right: -3px;
}


/* !FOOTER CSS */


/* inner pages css start */

.inner--banner {
    background-color: #F4F6F7;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 87.5%);
    height: 520px;
    padding: 2rem 0 0;
}

.aboutproduct-text.engage-service {
    max-width: 87%;
}

.radius--img img {
    border-radius: 22px;
}

.project-page {
    padding: 6rem 7rem;
}

.visual-product figure {
    width: 100%;
    height: 630px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-page .visual-product {
    margin-bottom: 2rem;
}

.product-page .product-card figure img {
    width: 100%;
}

.product-page .product-card {
    height: 736px;
    margin-bottom: 2rem;
}

.product-page {
    padding: 6rem 1rem;
}

.project-page.review-page .review-card {
    border-radius: 1.25rem;
    margin-bottom: 1.6rem;
}

.blog-card figure {
    position: relative;
}

.blog-card figure span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2.8125rem;
    color: var(--white);
    font-weight: bold;
    line-height: 1;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.blog-card figure span small {
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-content {
    padding-top: 1.2rem;
}

.blog-content h2 {
    font-size: 2.0625rem;
    color: #122436;
    line-height: 2.25rem;
    margin: 0 0 1.2rem;
}

.blog-content p {
    font-size: 1.125rem;
    color: #5C5C5C;
    line-height: 1.75rem;
    margin: 0 0 1.1rem;
}

.blog-content a {
    font-size: 1.125rem;
    color: #0D0D0D;
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid;
}

.blog-card {
    margin-bottom: 2.5rem;
}

.get-content p {
    font-size: 1.125rem;
    color: #231F20;
    line-height: 1.875rem;
    margin: 0 0 2rem;
}

.get-content .heading {
    margin: 0 0 15px;
}

.get-content ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.get-content ul li a i {
    color: #0D0D0D;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.get-content ul li a span {
    font-size: 15px;
    color: #0D0D0D;
    font-weight: 400;
}

.get-content ul li a span strong {
    font-weight: bold;
}

.get-content ul li+li {
    margin-top: 2.5rem;
}

.get-content ul {
    margin: 0 0 2.5rem;
}

.social-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-contact a {
    font-size: 1.5rem;
    color: #0D0D0D;
}

.send--form {
    background: #F4F6F7;
    text-align: center;
    padding: 3rem 4rem;
    margin-left: -3rem;
}

.send--form form input {
    width: 100%;
    height: 65px;
    border: 0;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.send--form form textarea {
    width: 100%;
    height: 146px;
    border: 0;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 1.5rem 1.5rem;
    resize: none;
    margin-bottom: 1rem;
}

.send--form .heading {
    margin: 0 0 1.8rem;
}

.send--form form .themeBtn {
    border: 0;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    text-transform: uppercase;
}

.blogDetail-card img {
    height: 600px;
    object-fit: cover;
}


/* privacy & terms page*/
.privacyContent :is(p, li),
.termsContent :is(p, li) {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 0 1rem;
    color: #828282;
}

.privacyContent p a,
.termsContent p a {
    color: var(--secondary);
    font-weight: 600;
}

.privacyContent h3,
.termsContent h3 {
    font-size: 2.125rem;
    font-weight: 600;
    margin: 1.125rem 0;
}

.privacyContent .list li,
.termsContent .list li {
    position: relative;
    padding-left: 1.75rem;
}

.privacyContent .list li::before,
.termsContent .list li::before {
    content: "";
    width: 16px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--secondary);
    position: absolute;
    top: 0.25rem;
    left: 0;
}

/* Video Page */
.videos__video {
    width: 100%;
    height: 500px;
    background: #00000010;
    margin-bottom: 2rem;
}

/* Gallery */
.gallery__img {
    width: 100%;
    height: 500px;
    display: block;
    margin-bottom: 2rem;
}

.gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* inner pages css end */