.wow {
    visibility: hidden;
}

@-webkit-keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade_top {
    -webkit-animation-name: fade_top;
    animation-name: fade_top;
}

.swiper-pagination-progressbar {
    background: rgb(0 0 0 / 3%);
}

@-webkit-keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

@keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

.slide_left {
    -webkit-animation-name: slide_left;
    animation-name: slide_left;
}

@-webkit-keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

@keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

.slide_right {
    -webkit-animation-name: slide_right;
    animation-name: slide_right;
}

@font-face {
    font-family: "Futura-Regular";
    src: url("../fonts/futura/Futura\ Book.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Futura-Book";
    src: url("../fonts/futura/Futura Other Fonts/Futura_Book-Normal.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Futura-Light-Condensed";
    src: url("../fonts/futura/FuturaLT-CondensedLight.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica-Regular";
    src: url("../fonts/helvetica/Helvetica.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica-Neue";
    src: url("../fonts/HelveticaNeueLight.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* colors */
    --primary-color: #000000;
    --secondary-color: #ed1c24;
    --white-color: #ffffff;
    --pale-white: #e7e0ca;
    --pure-black-color: #000000;
    --highlight-color: #e1e4e8;
    --background-smoke: #fafbfc;
    --background-gray: #f5f5f5;
    --secondary-highlight-color: #0366d6;
    /* font-sizes */
    --banner-title-font-size: 4.5rem;
    --section-title-font-size: 2.375rem;
    --section-subtitle-font-size: 2rem;
    --paragraph-font-size: 1.5rem;
    --content-font-size: 0.875rem;
    --link-font-size: 1rem;
    --contact-font-size: 1.125rem;
    --small-para-font-size: 0.875rem;
    /* font-families */
    --regular-font-family: "Futura-Regular";
    --futura-book-font-family: "Futura-Book";
    --light-futura-font-family: "Futura-Light-Condensed";
    --helvetica-font-family: "Helvetica-Regular";
    --helvetica-neue-font-family: "Helvetica-Neue";
    /* other */
    --common-transition: all 0.6s ease;
    --web-border-radius: 0.625rem;
    --mobile-border-radius: 0.6rem;
    --common-gap-size: 1rem;
    --small-gap-size: 1.5rem;
    --medium-gap-size: 3rem;
    --big-gap-size: 6rem;
}

.smallpara-content p,
.smallpara-content p span {
    font-size: var(--small-para-font-size);
    font-family: var(--helvetica-font-family);
}
.contact-font-size p,
.contact-font-size p span {
    font-size: var(--contact-font-size);
    font-family: var(--regular-font-family);
    line-height: 2rem;
}

/* Custom scrollbar for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 4px;
    /* Width of the vertical scrollbar */
    height: 4px;
    /* Height of the horizontal scrollbar */
}

/* Remove the up/down arrow buttons on the scrollbar */
::-webkit-scrollbar-button {
    display: none;
}

/* The scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background-color: transparent;
    /* Transparent background */
}

/* The draggable part of the scrollbar (thumb) */
::-webkit-scrollbar-thumb {
    background-color: var(--highlight-color);
    /* Color of the scrollbar thumb */
    border-radius: 2px;
    /* Rounded corners */
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--highlight-color);
    /* Darker color when hovered */
}

/* Custom scrollbar for Firefox */
* {
    scrollbar-width: thin;
    /* Thin scrollbar */
    scrollbar-color: var(--highlight-color) transparent;
    /* Thumb color and track color */
}

.semibold-fonts {
    font-family: var(--semibold-font-family);
}

.bold-fonts {
    font-family: var(--bold-font-family) !important;
}
.Helvetica-Regular {
    font-family: var(--helvetica-font-family);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: var(--regular-font-family);
    color: var(--primary-color);
}

html {
    height: auto;
    font-size: 16px;
    scroll-behavior: smooth;
}

* {
    line-height: 1.2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 1.2;
    width: 100%;
    min-height: 91lvh;
    background-color: var(--pure-black-color);
}

body.no-scroll-body {
    overflow-y: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    background-color: transparent;
    color: unset;
    outline: none;
    text-decoration: none;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

a:focus,
a:hover {
    outline: 0;
    text-decoration: unset;
    color: unset;
}

img {
    max-width: 100%;
    transition: var(--common-transition);
    cursor: pointer;
    width: 100%;
    object-fit: cover;
    display: block;
}

.relative {
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

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

.p0 {
    padding: 0 !important;
}

.main-container-fluid {
    width: 95%;
    margin: 0 auto;
}

.main-container {
    width: 99.5%;
    margin: 0 auto;
}

.mini-container {
    width: 65%;
    margin: 0 auto;
}

.content_accordian {
    display: none;
}

.section-padding {
    padding: 8rem 0;
}

.section-padding-small {
    padding: 2rem 0;
}

.hover-enable {
    display: none;
}

.hover-disable {
    display: inline-block;
}

.mobile-image {
    display: none;
}

.web-image {
    display: block;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
    outline: none;
    border: none;
}

.visible-tab-mobile {
    display: none !important;
}

.hide-tab-mobile {
    display: block !important;
}

.visible-mobile-only {
    display: none !important;
}

.hide-mobile-only {
    display: block !important;
}

.inner-flex {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inner-flex.inner-flex-small {
    gap: var(--small-gap-size);
}

.inner-flex.inner-flex-smallest {
    gap: 0.25rem;
}

.inner-flex.inner-flex-medium {
    gap: var(--medium-gap-size);
}

.inner-flex.inner-flex-big {
    gap: var(--big-gap-size);
}

.big-gap {
    gap: var(--big-gap-size) !important;
}

.inner-flex.inner-flex-large {
    gap: 10rem;
}

.inner-flex.inner-flex-common {
    gap: var(--common-gap-size);
}

.inner-flex.inner-flex-center {
    text-align: center;
    align-items: center;
}

.white-color {
    color: var(--white-color) !important;
}

.black-color {
    color: var(--pure-black-color) !important;
}

.highlight-color {
    color: var(--highlight-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.secondary-highlight-color {
    color: var(--secondary-highlight-color) !important;
}

/* fonts css */

.material-symbols-outlined {
    font-family: "Material Symbols Outlined" !important;
}

.banner-title h1,
.banner-title h1 span,
.banner-title h2,
.banner-title h2 span {
    font-size: var(--banner-title-font-size);
    font-family: var(--bold-font-family);
}

.banner-title h1 span,
.banner-title h2 span {
    color: var(--secondary-color);
}

.section-title h1,
.section-title h1 span,
.section-title h2,
.section-title h2 span {
    font-size: var(--section-title-font-size);
    font-family: var(--semibold-font-family);
}

.section-title h1 span,
.section-title h2 span {
    color: var(--secondary-color);
}

.section-content p,
.section-content p span {
    font-size: var(--content-font-size);
    line-height: 1.5;
}

.section-content p span {
    color: var(--secondary-color);
}

.section-paragraph p,
.section-paragraph p span {
    font-size: var(--paragraph-font-size);
    line-height: 1.5;
}

.section-paragraph p span {
    color: var(--secondary-color);
}

.section-text p,
.section-text span,
.section-text p span {
    font-size: 1rem !important;
    line-height: 1.25;
}

.section-text p span {
    color: var(--secondary-color);
}

.section-subtitle h4,
.section-subtitle h4 span {
    font-size: var(--section-subtitle-font-size);
    font-family: var(--semibold-font-family);
    color: var(--primary-color);
}

.section-subtitle h4 span {
    color: var(--secondary-color);
}

.smallest-font p {
    font-size: 0.85rem;
}

.link-font-size a p,
.link-font-size a p span.material-symbols-outlined,
.link-font-size p {
    font-size: var(--link-font-size);
    letter-spacing: 0.1rem;
}

.master-template-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    transition: var(--common-transition);
    border-radius: 0.5rem;
    width: fit-content;
    justify-content: center;
}

.master-template-button p,
.master-template-button span {
    line-height: 1 !important;
}

.button-style-primary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.button-style-primary span,
.button-style-primary p {
    color: var(--white-color);
    transition: var(--common-transition);
    font-size: 1.15rem;
}

.button-style-primary:hover {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-primary:hover span,
.button-style-primary:hover p {
    color: var(--primary-color);
    transition: var(--common-transition);
}

.button-style-secondary {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.button-style-secondary span,
.button-style-secondary p {
    color: var(--white-color);
    transition: var(--common-transition);
    font-size: 1.15rem;
}

.button-style-secondary:hover {
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-secondary:hover span,
.button-style-secondary:hover p {
    color: var(--secondary-color);
    transition: var(--common-transition);
}

.button-style-white {
    border: 1px solid var(--white-color);
    background-color: var(--white-color);
}

.button-style-white span,
.button-style-white p {
    color: var(--primary-color);
    transition: var(--common-transition);
    font-size: 1.15rem;
}

.button-style-white:hover {
    border: 1px solid var(--white-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-white:hover span,
.button-style-white:hover p {
    color: var(--white-color);
    transition: var(--common-transition);
}

/* CSS STarts here */

.header-wrapper {
    position: fixed;
    background-color: var(--pure-black-color);
    transition: var(--common-transition);
    top: 0rem;
    border-bottom: 0px solid var(--primary-color);
    left: 0;
    width: 100%;
    padding: 0.75rem;
    z-index: 99999;
}

.header-wrapper.webmenu_hidden {
    top: -100%;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    gap: var(--small-gap-size);
    align-items: center;
    padding-right: 0;
    /* position: fixed;
  top: 0;
  z-index: 10000000; */
}

.header-links-ul ul {
    display: flex;
    align-items: center;
    gap: var(--medium-gap-size);
}

.header-links-ul ul li a,
.header-links-ul ul li span,
.header-links-ul ul li p {
    color: var(--primary-color);
}

.header-links-ul ul li a {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--primary-color);
}

.header-logo {
    width: 12.3rem;
    margin: 0 auto;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.nav-toggle {
    cursor: pointer;
    display: none;
}

.mob-link-font-size {
    display: none;
}

.mobile-navigation-wrapper {
    display: none;
}

.form-input-icon.form-input-icon-left {
    left: 1rem;
}

.form-title-label {
    margin-bottom: 0.5rem;
}

.form-input-icon.form-input-icon-right {
    right: 1rem;
}

.form-control-master-template {
    padding: 1rem 2rem 1rem 3.5rem;
    border: 1px solid var(--highlight-color);
    resize: none;
    background-color: var(--white-color);
    margin: 0 !important;
    outline: none;
    line-height: 1;
    font-size: 1rem;
    width: 100%;
    font-family: var(--medium-font-family);
    border-radius: 0.5rem;
}

.form-control-master-template.form-control-master-template-search {
    padding: 1rem 3.5rem 1rem 2rem;
}

.form-input-icon {
    height: 24px;
    width: 24px;
    font-size: 24px;
    line-height: 24px;
    position: absolute;
    top: 1rem;
    transform: unset;
}

.form-input-icon.form-input-icon-search {
    right: 1rem;
}

.form-control-master-template:focus,
.form-control-master-template:focus-visible {
    border-color: var(--primary-color);
}

/* Pranav CSS */

.products-container {
    display: flex;
    gap: 0.5rem;
}

.product {
    width: 100%;
    transition: var(--common-transition);
    overflow: hidden;
}
.product:hover .product-hero-img img {
    transform: scale(1.05);
}

.product:hover .icon-container {
    opacity: 1;
}

.icon-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 1.75rem;
    right: 0.5rem;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--common-transition);
}
.social-icon {
    width: 1.75rem;
}

.product-hero-img {
    position: relative;
    float: left;
    width: 100%;
    padding: 110% 0;
    margin-top: 1.25rem;
    background-position: center center;
    background-size: cover !important;
}

.product-hero-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-controllers > div {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
}

.swiper-controllers .prev-btn {
    left: 0;
    width: 3.5rem;
}
.swiper-controllers .next-btn {
    right: 0;
    width: 3.5rem;
}

.swiper-controllers .next-btn img {
    transform: scale(-1);
}

.swiper-button-next {
    background-image: url("");
}

.swiper-button-prev {
    background-image: url("");
}

/* About Us */

.abouts-us-title p {
    font-size: 2.25rem;
    font-family: var(--regular-font-family);
    text-align: right;
}
.abouts-us-title {
    padding: 1rem;
}
.about-us-flex {
    display: flex;
}
.about-us-flex > div:nth-child(2) {
    flex-basis: 50%;
    width: 50%;
}
.about-us-flex > div:nth-child(3) {
    flex-basis: 50%;
    width: 50%;
}

.about-hero-img-container {
    height: 86.5lvh;
}

.about-hero-img-container img {
    height: 100%;
    object-position: 30%;
}

#about-page-wrapper-dsbt,
#detail-page-wrapper-dsbt,
#client-gallery-page-wrapper-dsbt {
    padding-top: 1.5rem;
}

.content-container {
    width: 95%;
    float: left;
}

.smallpara-content p,
.abouts-us-title p {
    color: var(--pale-white) !important;
}

.smallpara-content p {
    line-height: 1.4rem;
    text-align: justify;
}

.para-section {
    height: 75lvh;
    overflow-y: scroll;
    padding-bottom: 2rem;
    padding-right: 1rem;
}

.home-main-wrapper {
    margin-top: -70px;
    overflow-y: hidden;
}

/* Swiper Slide Background Color */
.swiper-slide {
    background-color: #000000 !important;
}

.contactus-main .contact-font-size p:hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.address-copy-width > div a {
    width: fit-content;
    margin: 0 auto;
}
