@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

@font-face {
    font-family: 'ProximaNovaRegular';
    src: url('fonts/proxima-nova-condensed-regular.otf') format('opentype');
}

@font-face {
    font-family: 'ProximaNovaSemibold';
    src: url('fonts/proxima-nova-condensed-semibold.otf') format('opentype');
}

@font-face {
    font-family: 'ProximaNovaSemiboldItalic';
    src: url('fonts/proxima-nova-condensed-semibold-italic.otf') format('opentype');
}

@font-face {
    font-family: 'ProximaNovaBold';
    src: url('fonts/proxima-nova-condensed-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'ProximaNovaBoldItalic';
    src: url('fonts/proxima-nova-condensed-Extrabold-Italic.otf') format('opentype');
}

@font-face {
    font-family: 'ProximaNovaExtrabold';
    src: url('fonts/proxima-nova-condensed-Extrabold.otf') format('opentype');
}

@font-face {
    font-family: 'ProximaNovaExtraboldItalic';
    src: url('fonts/proxima-nova-condensed-Extrabold-Italic.otf') format('opentype');
}

:root {
    --black: #000000;
    --fade-black: #2D3032;
    --fade-white: #fefefe;
    --theme-white: #ffffff;
    --theme-color: #ee7306;
    --theme-secondary-color: #2764a7;
    --theme-tertiary: #001030;
    --mad-red: #c11a1e;
    --transition500: all 0.5s;
    --pt-Sans: "PT Sans", serif;
    --plus-jakarta-sans: "Plus Jakarta Sans", serif;
    --ProximaNovaRegular: "ProximaNovaRegular", sans-serif;
    --ProximaNovaSemibold: "ProximaNovaSemibold", sans-serif;
    --ProximaNovaSemiboldItalic: "ProximaNovaSemiboldItalic", sans-serif;
    --ProximaNovaBold: "ProximaNovaBold", sans-serif;
    --ProximaNovaBoldItalic: "ProximaNovaBoldItalic", sans-serif;
    --ProximaNovaExtrabold: "ProximaNovaExtrabold", sans-serif;
    --ProximaNovaExtraboldItalic: "ProximaNovaExtraboldItalic", sans-serif;
}



html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ProximaNovaRegular);
    font-weight: 400;
    overflow-x: hidden;
}



a {
    display: inline-block;
    font-size: 18px;
    color: var(--fade-black);
    text-decoration: none;
    transition: var(--transition500);
}

b,
strong {
    font-weight: 700;
}


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

h2 {
    font-size: 38px;
    color: var(--fade-black);
    line-height: 1.2;

}

h3 {
    color: var(--fade-black);
    font-size: 34px;
    margin-bottom: 0.5em;
    font-weight: 400;
}

h4 {
    color: var(--fade-black);
    font-size: 27px;
}

h5 {
    color: var(--fade-black);
    font-size: 18px;
    font-weight: 400;
}

p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--black);
    font-weight: 400;
    font-family: var(--pt-Sans);
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-1 {
    opacity: 1 !important;
}

.disable_scroll {
    overflow: hidden;
}

.common_sub_section_heading h2 {
    font-size: 48px;
    color: var(--black);
}

/* .common_btn_main {
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 18px;
    padding: 0 32px;
    line-height: 47px;
    color: var(--black);
    transition: all 0.5s;
} */

.common_btn {
    font-size: 18px;
    line-height: 48px;
    border: 1px solid var(--theme-color);
    color: #ffffff;
    padding: 0 40px;
    background-color: var(--theme-color);
    text-transform: uppercase;
    font-family: var(--ProximaNovaSemibold);
    transform: skewX(-10deg);
    transition: all 0.5s;
}

.common_btn:has(svg, img) {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.common_btn:has(svg, img) span {
    flex: 0 0 auto;
}

.common_btn:has(svg, img) svg {
    flex: 0 0 auto;
}

.common_btn span {
    display: inline-block;
    transform: skew(10deg);
}

.common_btn svg {
    margin-left: 10px;
    transform: skewX(10deg);
    stroke: #fff;
    transition: var(--transition500);
}


.common_btn.theme_secondary_btn {
    background-color: transparent;
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.common_btn.theme_secondary_btn:hover {
    color: var(--theme-secondary-color);
    background-color: #fff;
    border-color: #fff;
}

.common_btn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.common_btn:hover svg {
    stroke: var(--theme-color);
}

.btn_white {
    border: 1px solid var(--theme-white);
}

.common_btn.btn_white:hover {
    background-color: var(--theme-white);
}

.small_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.common_bg {
    background-color: var(--theme-secondary-color);
}

.common_icon_btn {
    font-size: 18px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: var(--theme-color);
    text-transform: uppercase;
    font-family: var(--ProximaNovaSemibold);
    transition: var(--transition500);
}

.common_icon_btn:hover {
    color: var(--theme-secondary-color);

}

/* TITTLE AND CONTENT AREA START  */

.common_title_area {
    margin-left: auto;
    margin-right: auto;
    max-width: 1170px;
}
.common_title_area h1{
    font-size: clamp(30px, 2.7vw, 40px);
    margin-bottom: 1em;
    font-weight: 700;
}


.common_title_area :is(h2, h3, h4) {
    font-weight: 600;
    font-size: 48px;
    color: #0A0A0A;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-family: var(--ProximaNovaBoldItalic);
    text-transform: uppercase;
    text-wrap: balance;
}

.common_title_area :is(h1, h2, h3, h4) :is(b, strong) {
    color: #4385cd;
}

.common_title_area :is(h5, h6) {
    font-size: 27px;
    color: #060606;
    font-weight: 500;
    margin-bottom: 1em;
    font-family: var(--ProximaNovaSemiboldItalic);
    text-wrap: balance;
}

.common_title_area h6 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--theme-color);
}

.common_title_area p {
    margin-bottom: 1em;
    max-width: 1020px;
    margin-right: auto;
    margin-left: auto;
}

.common_title_area>*:last-child {
    margin-bottom: 0;
}

/* SECONDARY COMMON CONTENT AREA  */

.common_content_area {
    max-width: 1170px;
}

.common_content_area :is(h2, h3) {
    font-size: 36px;
    color: #0A0A0A;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-family: var(--ProximaNovaSemiboldItalic);
    text-transform: uppercase;
}

.common_content_area h4 {
    font-size: clamp(18px, 2.7vw, 28px);
    margin-bottom: 1em;
}

.common_content_area :is(h5, h6) {
    font-size: 20px;
    color: #060606;
    font-weight: 400;
    margin-bottom: 1em;
}

.common_content_area h6 {
    font-size: 18px;
    text-transform: uppercase;
}

.common_content_area h6 {
    color: var(--theme-color);
}

.common_content_area h6 span {
    padding-left: 25px;
}

.common_content_area h6 span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 2px;
    top: calc(50% - 1px);
    background-color: var(--theme-white);
}

.common_content_area p {
    color: var(--fade-black);
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

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

.common_content_area li {
    margin-bottom: 1em;
    position: relative;
    padding-left: 70px;
}

.common_content_area li,
.common_content_area li p {
    color: #000;
    font-size: 27px;
    font-family: var(--ProximaNovaSemiboldItalic);
}

/* .common_content_area li:last-child {
    margin-bottom: 0;
} */

.common_content_area li::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../img/check_icon_uniquesvg.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 34px 37px;
    border-radius: 50%;
    left: 0;
    top: 2px;
}

/* SECONDARY COMMON CONTENT AREA END  */



.common_padding {
    padding: 100px 0;
}

.common_title_area img {
    width: 100%;
    margin-bottom: 35px;
    aspect-ratio: 3 / 1.5;
    object-fit: cover;
}

.common_title_area ul {
    margin-bottom: 30px;
}

.common_title_area ul li {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #1E1E1E;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}


.common_title_area ul li::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/check_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 8px;
    left: 0;
}

.common_title_area ul:has(span) li::before {
    display: none;
}

.common_title_area ul:has(span) li {
    padding: 0;
}

.common_title_area ul li span {
    position: relative;
    padding-left: 30px;
    font-size: inherit;
    display: inline-block;
}

.common_title_area ul li span::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/check_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}

.common_title_area :is(p, span, li, h2, h3, h4) a {
    color: var(--theme-color)
}

.common_mb {
    margin-bottom: 85px;
}

.cl_white :is(h1, h2, h3, h4) {
    color: var(--theme-white) !important;
}

.cl_white :is(h5, h6) {
    color: var(--theme-white) !important;
}

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

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

.cl_white li,
.cl_white li p {
    color: var(--theme-white) !important;
}

.cl_blue :is(h2, h3, h4) {
    color: var(--theme-tertiary);
}

.hide_before::before {
    display: none !important;
}

.hide_after::after {
    display: none !important;
}

.unset_max_width :is(h2, h3, h4, h5, h6, p) {
    max-width: unset !important;
}

.bold_big_para p {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
}

/* TITTLE AND CONTENT AREA END  */




/* ============ HEADER =========== */

.uppar_header_wrapper {
    background: #f2f6fa;
    padding: 12px 0;
}

.up_contact_info_area {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
}

.up_contact_info_area :is(svg, img) {
    width: 20px;
    height: 20px;
    fill: var(--theme-secondary-color);
}

.up_contact_info_area {
    font-family: var(--ProximaNovaBold);
    transition: var(--transition500);
}

.up_contact_info_area:hover {
    color: var(--theme-color);
}

.up_contact_info_area:not(:last-child) {
    margin-right: 40px;
}

.contact_btn {
    position: relative;
}

.contact_btn::after {
    content: " ";
    position: absolute;
    width: 700px;
    height: 100%;
    background-color: var(--theme-color);
    right: -698px;
    top: 0;
    bottom: 0;
    transition: var(--transition500);
}





.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0 auto;
}

.header_unique_btn {
    padding: 38px 5px 38px 48px;
    background-color: var(--theme-color);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    color: #fff;
    font-family: var(--ProximaNovaSemibold);
    font-size: 16px;
    line-height: 1.2;
    transition: var(--transition500);
}

.header_unique_btn:hover {
    color: var(--theme-tertiary);
}

.logo-area a img {
    max-width: 330px;
    object-fit: scale-down;
}

.nav-area-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-ul {
    display: flex;
    flex-wrap: wrap;
}


.nav-ul>li {
    margin-right: 50px;
    position: relative;
}

/* .nav-ul>li:last-child {
    margin-right: 0;
} */

.nav-ul li a {
    padding: 10px 0;
    font-size: 16px;
    color: var(--theme-white);
    letter-spacing: 1px;
    transition: all 0.5s;
    font-weight: 500;
    font-family: var(--plus-jakarta-sans);
}

.dropdown-arrow i {
    font-size: 14px;
    color: var(--theme-white);
    transition: all 0.2s ease-in-out;
}


.mobile-nav .nav-ul .dropdown-nav a::after {
    right: 10%;
}

.nav-ul li a:hover {
    color: var(--theme-color);
}

.mobile-nav .nav-ul>li>a:hover {
    color: var(--fade-black);
}

.mobile-nav .nav-ul>li>a.active {
    color: var(--theme-color);
}



.contact_btn {
    display: flex;
    justify-content: end;
    flex: 0 0 auto;
    align-items: center;
}



.search_icon_area {
    margin-right: 30px;
}

.search_icon_area i {
    color: var(--theme-white);
    font-size: 22px;
    padding-top: 5px;
}



.nav-ul li:hover .dropdown-arrow i {
    transform: rotate(180deg);
}

.nav-ul li:hover ul {
    visibility: visible;
    opacity: 1;
    top: 45px;
}

.nav-ul li a:hover .dropdown-arrow i {
    color: var(--theme-color);
}

.nav-ul li ul {
    background-color: #ffffff;
    position: absolute;
    width: 230px;
    top: 60px;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 5px 0;
}

.nav-ul li ul li a {
    display: block;
    padding: 5px 16px;
    transition: all 0.5s;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    transition: all 0.5s;
}



.dropdown-arrow {
    margin-left: 5px;
}

.menu-bar {
    display: none;
    padding: 0 10px;
}

.menu-bar i {
    font-size: 25px;
    color: #fff;
}

.nav-header {
    width: 100%;
    background-color: var(--theme-tertiary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    transition: var(--transition500);
}

.header_fixed {
    box-shadow: 0 0 25px #0303031c;
}

.header_fixed:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    backdrop-filter: blur(8px);
    z-index: -1;
}


.mobile-nav {
    display: none;
}



.nav-ul>li>a.active {
    color: var(--theme-color);
}


.black-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000008e;
    z-index: 99;
    display: none;
}

.header_offset {
    background-color: var(--theme-tertiary);
}
.current_page_item > a, .current-menu-item > a{
    color: var(--theme-color)!important;
}
.current_page_item > a i{
    color: var(--theme-color)!important;
}


/* COMMON HEADING AREA  */
.common_banner_area_main {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-image: fill 0 linear-gradient(120deg, #001030b6 60%, #001030 80%);
    position: relative;
}

.common_banner_area_main .common_btn.theme_secondary_btn {
    color: #fff;
}

.common_banner_area_main .common_btn.theme_secondary_btn:hover {
    color: var(--theme-secondary-color);
}

.common_banner_area_main::before {
    content: "";
    width: 100%;
    height: calc(100% + 14px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    z-index: 1;
    background-image: url(../img/small_dotted_bn_bar.png);
    background-repeat: no-repeat;
    background-size: 100% 14px;
    background-position: left bottom;
}

.common_banner_area_main::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: url('../img/dotted_bn_bg.png');
    background-repeat: no-repeat;
    background-size: 280px;
    background-position: right bottom;
}


.common_banner_context :is(h1, h2) {
    color: #001030;
    font-size: 50px;
    margin: 0 0 15px;
    margin-bottom: 0.2em;
    font-weight: 400;
    font-family: var(--ProximaNovaSemiboldItalic);
    text-transform: uppercase;
}

.common_banner_context :is(h3, h4) {
    font-family: var(--pt-Sans);
    line-height: 1.5;
}

.common_banner_context :is(h1, h2, h3, h4) :is(b,
strong) {
    color: #3280d6;
}

.common_banner_context p {
    color: #fff;
    margin: 0 auto;
    margin-bottom: 1.5em;
}


/* BANNER AREA  */
/* .common_banner_area {
    max-width: 1090px;
    margin: 0 auto;
} */



.common_banner_area_main .common_btn:hover {
    background-color: #fff;
    border-color: #fff;
}

.home_banner_area_main::before {
    display: none;
}

.home_banner_area_main::after {
    display: none;
}

.home_banner_area_main {
    padding: 0;
    position: relative;
    background-color: transparent;
    border-image: unset;
}

.home_banner_area_main .banner_context_wrapper {
    position: relative;
    z-index: 1;
}

.home_banner_area_main .banner_context_wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    background-color: var(--theme-tertiary);
}

.home_banner_area_main .common_banner_context {
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    background: var(--theme-tertiary);
    padding: 230px 80px 230px 7px;
    background-image: url('../img/dotted_bn_bg.png');
    background-repeat: no-repeat;
    background-size: 450px;
    background-position: bottom right;
}

.banner_video_image_area {
    width: 53%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.banner_video_image_area:has(.video_icon)::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #033e8288;
}

.banner_video_image_area .video_showcase_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video_icon {
    width: 94px;
    height: 94px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video_icon img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

/* .home_banner_area_main .common_banner_context::after{
    content: "";
    width: 100px;
    height: 100%;
    position: absolute;
    right: -100px;
    top: 0;
    bottom: 0;
    background-color: var(--theme-tertiary);
    clip-path: polygon(0 0, 100% 0%, 0% 100%, 0% 100%);
} */

.double_btn_wrapper {
    gap: 20px;
}


.banner-area p {
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 49px;
    font-size: 18px;
    position: relative;
}

.common_banner_context ul {
    margin-bottom: 50px;
}

.common_banner_context ul li {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    font-style: italic;
}

.common_banner_context ul li::before {
    content: "";
    width: 35px;
    height: 46px;
    background-color: var(--theme-color);
    background-size: contain;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cut_button {
    cursor: pointer;
    font-size: 20px;
}

.video_player_modal video {
    aspect-ratio: 16/9;
}

.modal-header h4 {
    font-family: var(--ProximaNovaSemiboldItalic);
}


/* =============================
    LITTLE SERVICE SHOWCASE AREA
================================ */

.small_service_showcase_area_main {
    position: relative;
    z-index: 1;
    background-color: var(--theme-secondary-color);
    padding: 70px 0;
    background-image: url('../img/bg_dot.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}



.showcase_item_area {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    position: relative;

}

.showcase_item {
    display: flex;
    column-gap: 20px;
}


.showcase_content p {
    font-size: 16px;
    margin-bottom: 5px;
}

.showcase_item img {
    width: 61px;
    height: 70px;
    object-fit: scale-down;
    flex: 0 0 auto;
}

.showcase_item_card {
    background-color: #fff;
    padding: 30px 40px 25px;
    clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}

.common_card_content {
    height: 100%;
}

.common_card_content p:last-child {
    margin-bottom: 0;
}

.common_card_content :is(h3, h4) {
    font-size: 27px;
    font-family: var(--ProximaNovaSemiboldItalic);
    color: #010101;
}

.common_card_content ul li {
    position: relative;
    font-size: 19px;
    margin-bottom: 10px;
    padding-left: 50px;
    font-family: var(--pt-Sans);
    font-weight: 400;
    font-weight: 600;
}

.common_card_content ul li::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url('../img/check_arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 0;
}

/* =============================
        FEATURED PRODUCT AREA
================================ */
.design_bg_left {
    background-image: url('../img/left_dot_design.png');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: left top -120px;
}

.design_bg_right {
    background-image: url('../img/right_dot_design.png');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: right top;
}

.itech_products_card_image {
    width: 100%;
    height: 250px;
    margin-bottom: 50px;
}

.itech_products_card_image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.itech_products_card {
    background-color: #000000;
    padding: 85px 45px;
    transition: all 0.5s ease-in-out;
    height: 100%;
}

.swiper-slide-next .itech_products_card {
    margin-top: 0;
    transition: all 0.5s ease-in-out;
}

.itech_products_card:hover {
    margin-top: -30px;
}

.itech_hover_card_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 25px;
    background-color: #00000094;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

/* .itech_products_card:hover .itech_hover_card_wrapper {
    visibility: visible;
    opacity: 1;
} */

.itech_box_title {
    transition: all 0.5s ease-in-out;
}

.itech_products_card:hover .itech_box_title {
    opacity: 0;
    visibility: hidden;
}

.itech_products_card:hover .itech_hover_card_wrapper {
    opacity: 1;
    visibility: visible;
}

/* .itech_productSwiper:hover:has(.child:hover) {
    pointer-events: none;
} */

/* =============================
        SWIPER CSS
================================ */



.serviceSwiper,
.electricalSwiper,
.pricingSwiper {
    padding-bottom: 80px;
}

.swiper-pagination-bullet {
    background-color: #636363;
    opacity: 1;
    width: 4%;
    max-width: 44px;
    height: 4px;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 1px solid var(--theme-secondary-color);
    background-color: var(--theme-secondary-color);
}

.itech_products_slider_wrapper {
    position: relative;
}

/* .itech_swiper_button.swiper-button-disabled {
    opacity: 0.5;
} */

.itech_swiper_button {
    width: 51px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition500);
}

.itech_swiper_button.swiper-button-lock {
    display: none;
}

.hover_button_display:hover .itech_swiper_button {
    visibility: visible;
    opacity: 1;
}

.itech_products_card h3 {
    color: #fff;
}

.itech_swiper_button_next {
    right: 0;
}

.itech_swiper_button_prev {
    left: 0;
}



.itech_swiper_button svg {
    fill: #fff;
}

.itech_productSwiper {
    padding: 50px 0 50px;
    max-width: calc(100% - 130px);
    position: unset;
}

/* .swiper-slide-next .itech_products_card {
    margin-top: -50px;
} */



/* =============================
        ABOUT INFO AREA
================================ */
.curved_left_design_wrapper {
    background-color: #f2f6fa;
    border-image: fill 0 linear-gradient(102deg, var(--theme-secondary-color) 30%, #00000000 10%);
}

.itech_content_image_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/1.5;
    object-position: center;
}

.curved_left_design_wrapper .itech_content_image_area img {
    border: 4px solid #fff;
}

.curved_left_design_wrapper .itech_content_image_area {
    position: relative;
}

.curved_left_design_wrapper .itech_content_image_area::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -50px;
    top: -50px;
    background-image: url('../img/white_img_dot.svg');
    background-repeat: no-repeat;
    background-size: 220px;
    z-index: -1;
}

.curved_right_design_wrapper {
    background-color: #f2f6fa;
    border-image: fill 0 linear-gradient(257deg, var(--theme-secondary-color) 30%, #00000000 10%);
}

.curved_right_design_wrapper .itech_content_image_area img {
    border: 4px solid #fff;
}

.curved_right_design_wrapper .itech_content_image_area {
    position: relative;
}

.curved_right_design_wrapper .itech_content_image_area::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: -50px;
    top: -50px;
    background-image: url('../img/white_img_dot.svg');
    background-repeat: no-repeat;
    background-size: 220px;
    background-position: right top;
    z-index: -1;
}


/* =============================
            CTA AREA
================================ */

.cta_sec_wrapper {
    padding: 100px 0;
    position: relative;
    border-image: fill 0 linear-gradient(90deg, #001030f8 40%, #00103052 70%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cta_content_area {
    position: relative;
}



.i_design_wrapper {
    width: 10px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
	display:none;
}

.i_design_wrapper span {
    display: inline-block;
    background-color: #666e7f;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 0;
}

.i_design_wrapper span:nth-child(2) {
    height: 50%;
    top: 20px;
}

/* .cta_full_bg_overlay{
    border-image: fill 0 linear-gradient(90deg, #001030c4 100%, #00103000 0%);
} */



/* =============================
        SERVICES AREA
================================ */
.itech_services_wrapper {
    /* border-image: fill 0 linear-gradient(176deg, var(--theme-secondary-color) 60%, #00000000 10%); */
    position: relative;
}

.itech_services_wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--theme-secondary-color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 60%);
}

.itech_services_card {
    background-color: #f2f6fa;
    padding: 50px 40px 50px 40px;
}

.itech_serviceSwiper .swiper-slide {
    height: unset;
}

.itech_services_card {
    height: 100%;
}

.itech_serviceSwiper {
    padding-bottom: 60px;
}

.campaigning_area {
    position: relative;
    z-index: 1;
}

.service_item img {
    width: 90px;
    height: 90px;
    object-fit: scale-down;
}

/* =============================
        FOOTER AREA 
================================ */

.footer_wrapper {
    background-color: var(--theme-tertiary);
    position: relative;
}

.common_padding.footer_wrapper {
    padding-bottom: 10px;
}

.footer_wrapper::after {
    content: "";
    width: 100%;
    height: 85%;
    background-image: url('../img/footer_bg.svg');
    background-repeat: no-repeat;
    background-position: right -50px center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
}

.footer_area {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 75px;
}

.footer_area .logo-area img {
    max-width: 350px;
    max-height: 125px;
}

.footer_area .logo-area>p {
    font-size: 24px;
    font-weight: 600;
}

.footer_top_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 70px;
}

.navigation_area>h4 {
    margin-bottom: 25px;
    font-family: var(--ProximaNovaSemiboldItalic);
}

.navigation_area ul li a {
    font-size: 19px;
    color: #FCFCFC;
    transition: all 0.5s;
    font-family: var(--pt-Sans);
    font-weight: 500;
}

.navigation_area ul li a:hover {
    color: var(--theme-color);
}

.navigation_area ul li a span {
    color: #fff;
}

.navigation_area ul li a:hover span {
    color: #fff;
}



.navigation_area ul li:not(:last-child) {
    margin-bottom: 15px;
}

.navigation_area p {
    font-size: 16px;
}

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

.get_in_touch ul li img {
    flex: 0 0 auto;
    margin-right: 15px;
    padding-top: 5px;
}

.get_in_touch li:last-child {
    margin-bottom: 0;
}



.lower_footer_wrapper {
    padding: 95px 0 70px;
}

.lower-footer-area {
    display: flex;
    justify-content: space-between;
}



.footer-logo-area a {
    max-width: 273px;
    padding-bottom: 30px;
}

.footer-logo-area a img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.newsletter_form {
    border: 1px solid #FFFFFF;
    border-radius: 25px;
    padding: 3px;
    max-width: 410px;
}

.newsletter_form input {
    width: 100%;
    flex: 1 0 0;
    background-color: transparent;
    border: none;
    padding: 0 10px;
    outline: none;
    color: #fff;
}

button.common_btn {
    text-transform: capitalize;
    color: #1E1E1E;
    font-weight: 400;
}

.social-ul {
    display: flex;
}

.navigation_area .follow_area .social-ul li {
    margin-bottom: 0;
}

.social-ul li:not(:last-child) {
    margin-right: 27px;
}

.social-ul li a {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--theme-white);
    background-color: #fff;
    border-radius: 100%;
    transition: all 0.5s;
}

.social-ul li a:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.social-ul li a i {
    font-size: 16px;
    color: var(--fade-black);
    transition: all 0.5s;
}

.social-ul li a:hover i {
    color: var(--theme-white);
}

.follow_area {
    gap: 20px;
}

.follow_area>p {
    font-size: 16px;
}

.copyright-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
}


.sitemap-ul {
    display: flex;
    row-gap: 15px;
}

.sitemap-ul li {
    padding-right: 40px;
    position: relative;
}

.sitemap-ul li:last-child {
    padding-right: 0;
}

.sitemap-ul li a {
    color: #fff;
    font-size: 19px;
    transition: all 0.5s;
    font-family: var(--plus-jakarta-sans);
    font-weight: 600;
}

.sitemap-ul li a:hover {
    color: var(--theme-color);
}

.sitemap-ul li::after {
    content: "|";
    position: absolute;
    top: 2px;
    right: 20px;
    color: #535353;
    font-size: 18px;
}

.sitemap-ul li:last-child:after {
    display: none;
}

.bottom_area_name {
    color: #F8FAFD;
    font-size: 16px;
    padding: 30px 0;
}

.bottom_area_name p {
    font-size: 20px;
    margin-bottom: 0;
    font-family: var(--plus-jakarta-sans);
    font-weight: 600;
    margin-bottom: 0;
    color: var(--fade-white);
}

.bottom_area_name p a {
    color: var(--theme-color);
}

/* =============================
        PRODUCT LISTING PAGE
        PRODUCT LISTING PAGE
        PRODUCT LISTING PAGE
================================ */
.itech_product_card {
    display: block;
    border: 1px solid #c0c0c0f5;
    padding: 15px 12px 30px;
    background-color: #fff;
}


.itech_product_card h3 {
    font-size: 24px;
    font-family: var(--ProximaNovaSemiboldItalic);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.itech_product_card h4 {
    font-size: 20px;
    font-family: var(--pt-Sans);
    font-weight: 600;
    color: var(--theme-secondary-color);
    margin-bottom: 13px;
}

.itech_pd_image {
    width: 100%;
    max-height: 250px;
    object-fit: scale-down;
}

.product_listing_area>.row {
    row-gap: 40px;
}

.product_listing_wrapper .pagination {
    justify-content: center;
    column-gap: 18px;
}

.product_listing_wrapper .page-numbers {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    padding: 0;
    border: none;
    background-color: #E9E9E9;
    color: #000;
}



.product_listing_wrapper .page-numbers.dots {
    background-color: transparent;
}

.product_listing_wrapper .active>.page-link,
.product_listing_wrapper .page-numbers.current {
    background-color: #acccbf;
    color: #000000;
}

.product_listing_wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../img/dot-background-png-23.svg');
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: right top;
}

.yt_video_area iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.product_pg_service_wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(232, 239, 246);
    background: linear-gradient(95deg, #e8eff6 50%, #f2f6fa 50%);
    z-index: -2;
}

.design_bg_right.product_pg_service_wrapper::before {
    clip-path: polygon(0 0, 100% 0, 100% 450px, 0 615px);
}

.itech_videoSwiper {
    position: unset;
}

.itech_videoSwiper .swiper-button-disabled {
    opacity: 0.5 !important;
}

.itech_videoSwiper .swiper-button-lock {
    display: none;
}

/* =============================
        CONTACT PAGE 
================================ */
.form_and_content_wrapper {
    padding-top: 130px;
}

.contact_form_area_main {
    padding-right: 80px;
}

.contact_form_area_main :is(input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:active,
    input:-webkit-autofill:focus) {
    background-color: #49737e !important;
    color: #555 !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}

.custom_left_padding {
    padding-left: 80px;
}

.contact_form_area_main :is(.input_area, .select_area) {
    margin-bottom: 24px;
    position: relative;
}

.contact_form_area_main :is(input, textarea)::placeholder {
    color: var(--black);
}
/* .itech_form_area {
	transform: skewX(-3deg);
} */

.input_area textarea {
    width: 100%;
    height: 130px;
    resize: none;
    outline: 0;
    padding: 10px 20px;
    font-size: 18px;
    font-family: var(--pt-Sans);
    border: 0;
	transform: skewX(-5deg);
    color: var(--black);
}

.input_area input {
    width: 100%;
    padding: 5px 20px;
    height: 60px;
    border: none;
    outline: 0;
    font-size: 18px;
    font-family: var(--pt-Sans);
    color: var(--black);
	transform: skewX(-7deg);
}

.input_area input:focus {
    outline: none;
}

.select_area select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 15px 50px 15px 23px;
    background-color: #fff;
    color: var(--black);
    cursor: pointer;
    outline: 0;
    height: 56px;
    font-size: 18px;
    font-family: var(--pt-Sans);
	transform: skewX(-7deg);
}

.select_area {
    position: relative
}

.select_area::after,
.select_area::before {
    --size: 6px;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none
}

.select_area::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid #000;
    top: 50%;
    transform: translateY(-50%)
}



.submit_button_area .common_btn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.submit_button_area {
    display: flex;
    align-items: center
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #fff
}

.wpcf7-not-valid-tip {
    color: #fff !important;
    font-size: 12px !important;
    background-color: #dc3232;
    padding: 2px 5px
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: red !important;
    color: #fff;
    background-color: red;
    margin-left: 0;
    margin-right: 0
}

.wpcf7 form.sent .wpcf7-response-output {
    margin-right: 0;
    margin-left: 0;
    color: #fff;
    background-color: #46b450
}

.submit_button_area input[type=submit]:not(:hover):not(:active):not(.has-background) {
    font-size: 18px;
    line-height: 48px;
    border: 1px solid var(--theme-color);
    color: #ffffff;
    padding: 0 60px;
    background-color: var(--theme-color);
    text-transform: uppercase;
    font-family: var(--ProximaNovaSemibold);
    transform: unset;
    transition: all 0.5s;
	transform: skewX(-10deg);
}

.submit_button_area input[type=submit]:hover {
    font-size: 18px;
    line-height: 48px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    padding: 0 60px;
    background-color: transparent;
    text-transform: uppercase;
    font-family: var(--ProximaNovaSemibold);
	transform: unset;
    transition: all 0.5s;
	transform: skewX(-10deg);
}

/* =============================
        PRODUCT DETAILS PAGE
        PRODUCT DETAILS PAGE
        PRODUCT DETAILS PAGE
================================ */

.product_pg_key_points_wrapper .showcase_item_card {
    background-color: #f2f6fa;
}

.key_points_custom_gap {
    row-gap: 45px;
}

.product_image_showcase_wrapper {
    background: rgb(251, 251, 251);
    background: linear-gradient(98deg, rgba(251, 251, 251, 1) 51%, rgba(0, 15, 47, 1) 51%);
}
:where(.service_pg_contact_wrapper , .product_image_showcase_wrapper) .common_title_area h1 {
	    font-size: clamp(26px, 3.4vw, 48px);
		font-weight: 600;
    	font-family: var(--ProximaNovaBoldItalic);
		text-transform: uppercase;
}

.product_gallery_area .swiper {
    width: 100%;
    height: 100%;
}

.product_gallery_area .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


:where(.product_big_image_area, .product_small_image_area) img {
    display: block;
    overflow: hidden;
    width: 100%;
    object-fit: scale-down;
}


.product_gallery_area .swiper-slide {
    background-size: cover;
    background-position: center;
}

.productBigImageSwiper {
    height: 100%;
    width: 100%;
}

.productSmallImageSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.productSmallImageSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.productSmallImageSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product_big_image_area {
    width: 100%;
    height: 100%;
}

.product_big_image_area img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
}

.product_small_image_area {
    width: 100%;
    height: 100%;
}

.product_small_image_area img {
    height: 100%;
}

.productSmallImageSwiper .product_big_image_area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productSmallImageSwiper {
    position: unset;
}

.product_small_image_slide {
    background-color: #ffffff;
    border: 1px solid rgba(192, 192, 192, 0.96);
}

.product_small_gallery_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.product_small_gallery_arrow svg {
    width: 25px;
    height: 25px;
    background-color: var(--theme-color);
    padding: 5px;
    fill: #fff;
}

.product_small_gallery_next {
    right: 0;
}

.product_small_gallery_prev {
    left: 0;
}

.thumb_wrapper {
    position: relative;
    height: 200px;
}

.itech_zoom_icon {
    position: relative;
    z-index: 3;
}

.itech_zoom_icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    right: 30px;
}

.lb-close {
    position: absolute;
    top: -30px !important;
    right: 30px !important;
    opacity: 1 !important;
}

.thumb_wrapper .swiper-button-disabled {
    opacity: 0;
}

.lightbox .lb-image {
    border: none !important;
    border-radius: 0 !important;
}

.thumb_wrapper {
    padding: 0 30px;
}



/* CONTENT OF PRODUCT  */
.itech_product_details_area .common_title_area>h5 {
    color: #3582dd !important;
}

.productBigImageSwiper .swiper-slide {
    height: 600px;
}

.itech_product_details_area .common_title_area {
    margin-bottom: 60px;
}

.itech_product_details_area .common_title_area p {
    max-width: unset;
}
.common_card_content.pd_key_features_card ul li::before{
    width: 20px;
    height: 20px;
}
.common_card_content.pd_key_features_card ul li{
    padding-left: clamp(30px, 4.4vw, 35px);
}
.small_font_size_list ul li {
    font-size: 16px;
}

/* RELATED PRODUCT AREA  */
.related_product_wrapper {
    background: rgb(242, 246, 250);
    background: linear-gradient(100deg, rgba(242, 246, 250, 1) 51%, rgba(232, 239, 246, 1) 51%);
    position: relative;
}

.related_product_wrapper::before {
    content: "";
    width: 100%;
    height: 25%;
    position: absolute;
    left: 0;
    right: 100%;
    top: 0;
    background-color: #f2f6fa;
    z-index: 1;
}


/* SERVICE PAGE  */
/* SERVICE PAGE  */
/* SERVICE PAGE  */

.common_padding.onboarding_wrapper {
    padding-bottom: 150px;
}

.learn_your_content_area {
    border-bottom: 1px solid #ffffff4d;
}

.learn_image_area {
    width: 50%;
    height: 100%;
    position: absolute;
    top: -40px;
    left: 0;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.learn_image_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.maintaining_wrapper {
    background-color: #f2f6fa;
}

.service_pg_wrapper .cta_content_area::before {
    background-image: url('../img/i_design.png');
}

.service_pg_wrapper .i_design_wrapper span:nth-child(2) {
    height: 20%;
}

.right_curve_secondary_bg {
    background: linear-gradient(98deg, rgba(251, 251, 251, 1) 51%, #2764a7 51%);
}

.itech_our_team_wrapper {
    position: relative;
}

.itech_our_team_wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-image: url('../img/logo_bg.svg');
    background-repeat: no-repeat;
    background-size: 32%;
    background-position: left 12% center;
}

.testimonial_content_area {
    margin-bottom: 30px;
}

.testimonial_content_area p {
    font-size: 22px;
    font-style: italic;
}

.itech_testimonial_person_name :is(p, ul, li) {
    font-family: var(--pt-Sans);
    font-size: 22px;
}

.designation li {
    position: relative;
    padding-right: 5px;
    display: inline-block;
}

.designation li:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
}

.itech_testimonial_slider_wrapper .itech_swiper_button_next {
    right: -20px;
}

.itech_testimonial_slider_wrapper .itech_swiper_button_prev {
    left: -20px;
}

.itech_testimonial_slider_wrapper {
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 1200px;
}

.itech_testimonialSwiper {

    position: unset;
}

.itech_testimonial_slider_wrapper .swiper-pagination {
    bottom: -44px;
}




.service_pg_contact_wrapper {
    background: rgb(232, 239, 246);
    background: linear-gradient(95deg, #e8eff6 50%, #f2f6fa 50%);
}

.itech_modal_body_wrapper {
    background-color: var(--theme-secondary-color);
    padding: 30px 40px;
}

/* ABOUT PAGE  */
/* ABOUT PAGE  */
/* ABOUT PAGE  */

.about_pg_learn_your_way .learn_your_content_wrapper {
    padding: 130px 0;
}





.itech_our_gallery_wrapper {
    background-color: #f2f6fa;
}

.visible_gallery {
    display: grid;
    grid-template-columns: 36% 24% 36%;
    grid-template-rows: repeat(4, 23.5%);
    column-gap: 2%;
    row-gap: 2%;
    height: 920px;
}

.visible_gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery_image_wrapper:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1 /3;
}

.gallery_image_wrapper:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1 /3;
}

.gallery_image_wrapper:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1 /2;
}

.gallery_image_wrapper:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2 /3;
}

.gallery_image_wrapper:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3 /4;
}

.gallery_image_wrapper:nth-child(6) {
    grid-column: 1/2;
    grid-row: 4 /5;
}

.gallery_image_wrapper:nth-child(7) {
    grid-column: 2/3;
    grid-row: 3 /5;
}

.gallery_image_wrapper:nth-child(8) {
    grid-column: 3/4;
    grid-row: 3 /5;
}

.visible_gallery .caption {
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 30px;
    font-family: var(--pt-Sans);
}

.visible_gallery .gallery_image_wrapper {
    border: 1px solid #3374ce6b;
    position: relative;
    display: block;
    background-color: #fff;
    transition: var(--transition500);
}

.visible_gallery .gallery_image_wrapper:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.6);
}

.visible_gallery .gallery_image_wrapper:hover .caption {
    transform: translateY(-5px);
}

.visible_gallery .gallery_image_wrapper:not(:last-child) .transparent-box {
    background-color: transparent;
}

.visible_gallery .transparent-box {
    height: 100%;
    width: 100%;
    background-color: #00000080;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visible_gallery .gallery_image_wrapper:not(:last-child):hover .transparent-box {
    background-color: #4386cd2f;
}

.glightbox-clean .gclose {
    padding: 0;
}

.glightbox-container .gslide-image img {
    transition: transform 0.3s;
    cursor: zoom-in;
}

.glightbox-container .gslide-image img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.gslide-media.gslide-image {
    max-width: 80% !important;
}

.zoomed .gslide-image img.zoomable {
    transform: scale(1.5);
}

.page_changing_arrow {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: var(--transition500);
    font-size: 16px;
    background-color: var(--theme-color);
    font-family: var(--pt-Sans);
}

.page_changing_arrow:hover {
    background-color: #f2f6fa;
}

.page_changing_arrow svg {
    transition: var(--transition500);
}

.page_changing_arrow:hover svg {
    stroke: #000;
}

.page_changing_arrow.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.contact_pg_wrapper {
    padding: 150px 0;
}

.banner_video_image_area .overflow_image {
    object-fit: contain;
}

.banner_video_image_area:has(.overflow_image) {
    z-index: 2;
}

.technical_resources_banner {
    background-color: var(--theme-secondary-color);
}

.technical_resources_banner .common_banner_context {
    padding-right: 160px;
}

.technical_resources_banner .common_banner_context :is(h3, h4) {
    font-size: 26px;
}

.document_showcase_wrapper {
    filter: drop-shadow(0px 46px 24.5px rgba(0, 0, 0, 0.18));
    background-color: #ffffff;
}

.document_showcase_wrapper .tab_ul {
    display: flex;
    text-align: center;
    border: 1px solid #55555547;
    border-bottom: none;
}

.document_showcase_wrapper .tab_ul li,
.document_showcase_wrapper .tab_ul li a,
.mobile_accordian_area {
    font-size: 26px;
    font-family: var(--ProximaNovaSemiboldItalic);
}

.document_showcase_wrapper .tab_ul li {
    padding: 25px;
    flex-grow: 1;
    max-width: 20%;
    background-color: #f2f6fa;
    border-right: 1px solid #55555547;
    transition: all 0.5s ease-in-out;
}

.document_showcase_wrapper .tab_ul li:last-child {
    border-right: none;
}

.document_showcase_wrapper .tab_ul li.active {
    background-color: var(--theme-secondary-color);
    color: #fff;
}

.document_showcase_wrapper .tab_ul li.active a {
    color: #fff;
}

.document_showcase_wrapper .tab_ul li a {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: inherit;
}

.download_card_wrapper {
    padding: 30px 45px 80px;
}

.download_card_wrapper>.row {
    row-gap: 50px;
}

.document_listing_area .common_title_area {
    max-width: unset;
    padding: 55px 20px;
}

.image_thumbnail_area {
    height: 315px;
    overflow: hidden;
}

.image_thumbnail_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/3;
}

.download_card_area .common_card_content {
    padding: 40px 50px;
    background-color: #f2f6fa;
}

.download_card_area .common_card_content :is(h3, h4) {
    text-transform: uppercase;
}

.download_card_area:last-child {
    grid-column-end: -2;
}

.mobile_accordian_area {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    background-color: #f2f6fa;
    transition: background 0.5s ease-in-out;
    margin-bottom: 20px;
}

.mobile_accordian_area svg {
    flex: 0 0 auto;
}

.mobile_accordian_area.active {
    background-color: var(--theme-secondary-color);
    color: #fff;

}

.mobile_accordian_area.active svg {
    stroke: #fff;
}

/* CAPABILITIES PAGE  */
.capabilities_banner .common_banner_context :is(h3, h4) {
    font-size: 26px;
}

.itech_whatWeOfferSwiper {
    padding-bottom: 60px;
}

.itech_whatWeOfferSwiper .swiper-slide {
    height: unset;
}

.capabilities_page_point {
    margin-bottom: 30px;
}

.capabilities_showcase_area>.row>*:last-child .capabilities_page_point {
    margin-bottom: 0;
}

.itech_what_we_offer_card {
    padding-right: 100px;
    border: 1px solid #55555547;
}

.product_listing_wrapper .itech_product_card {
    padding-bottom: 50px;
    position: relative;
}

.product_listing_wrapper .itech_product_card .common_icon_btn {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
}