* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "work-sans-thin";
    src: url(../font/Work_Sans/WorkSans-Thin.ttf);
}

@font-face {
    font-family: "work-sans-medium";
    src: url(../font/Work_Sans/WorkSans-Medium.ttf);
}

@font-face {
    font-family: "work-sans-regular";
    src: url(../font/Work_Sans/WorkSans-Regular.ttf);
}

@font-face {
    font-family: "work-sans-semibold";
    src: url(../font/Work_Sans/WorkSans-SemiBold.ttf);
}

@font-face {
    font-family: "work-sans-bold";
    src: url(../font/Work_Sans/WorkSans-Bold.ttf);
}

:root {
    --work-sans-thin: "work-sans-thin";
    --work-sans-medium: "work-sans-medium";
    --work-sans-regular: "work-sans-regular";
    --work-sans-semibold: "work-sans-semibold";
    --work-sans-bold: "work-sans-bold";

    --font_14: 14px;
    --font_16: 16px;
    --font_18: 18px;
    --font_20: 20px;
    --font_22: 22px;
    --font_24: 24px;
    --font_28: 28px;
    --font_34: 34px;
    --font_40: 40px;
    --font_42: 42px;
    --font_46: 46px;
    --font_52: 52px;

    --text_color_1: #000000;
    --text_color_2: #FFFFFF;
    --text_color_3: #3B3F97;
    --text_color_4: #FF963A;
    --text_color_5: #393939;

    --bg_color_1: #000000;
    --bg_color_2: #FFFFFF;
    --bg_color_3: #3B3F97;
    --bg_color_4: #FF963A;
    --bg_color_5: #EAEAEA;
    --bg_color_6: #FBFBFC;
}


body {
    background-color: var(--bg_color_6);
}

header {
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 50;
    padding: 20px 0;
    background-color: var(--bg_color_2);
}

.header_section {
    /* position: relative; */
    /* height: calc(100vh - 36px); */
    width: 100%;
    overflow: hidden;
}

.header_section .overlay {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
}

header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.pattern-box {
    position: relative;
}

.custom-arrow {
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--text_color_3);
    transition: transform 0.3s ease;
}

.pattern-toggle:hover .custom-arrow {
    border-top: 6px solid var(--text_color_4);
}

.pattern-box.active .custom-arrow {
    transform: rotate(180deg);
}

.pattern-menu {
    position: absolute;
    top: 271%;
    left: 27px;
    background-color: var(--bg_color_2);
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    width: fit-content;
    z-index: 10;
    text-wrap-mode: nowrap;
}

.pattern-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text_color_3);
    text-decoration: none;
    font-family: var(--work-sans-regular);
    font-size: var(--font_16);
}

.pattern-menu a:hover {
    color: var(--text_color_4);
}

.pattern-box.active .pattern-menu {
    display: flex;
}


.logo-container {
    display: flex;
    align-items: center;
}

.nav-btn {
    display: flex;
}

.nav-btn .navbar_option_part {
    display: flex;
}

.nav-btn .navbar_option_part a {
    text-decoration: none;
}

.nav-btn .navbar_option_part p {
    margin: 0 0 0 50px;
    color: var(--text_color_3);
    font-family: var(--work-sans-medium);
    font-size: var(--font_18);
    cursor: pointer;
}

.nav-btn .navbar_option_part p:hover {
    color: var(--text_color_4);
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: var(--text_color_3);
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: var(--text_color_3);
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.first_section {
    background-color: var(--bg_color_5);
    padding: 60px 0;
}

.first_section .text-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.first_section .text-part .heading {
    color: var(--text_color_3);
    font-size: 60px;
    line-height: 0.9;
    font-family: var(--work-sans-regular);
}

.first_section .text-part .heading span {
    color: var(--text_color_4);
    font-size: 60px;
    line-height: 1;
    font-family: var(--work-sans-bold);
}

.first_section .text-part p:nth-of-type(2) {
    color: var(--text_color_5);
    font-size: 20px;
    line-height: 1.2;
    font-family: var(--work-sans-regular);
    margin-top: 15px;
}

.first_section .bouncing-scroll {
    border-color: var(--bg_color_4);
}

.first_section .page-scroll {
    display: inline-block;
    text-align: left;
    border: 2px solid var(--bg_color_3);
    border-radius: 50px;
    padding: 2px 8px 18px 8px;
    margin-top: 30px;
}

.first_section .bounceScroll {
    -webkit-animation: bounceScroll 1s infinite;
    animation: bounceScroll 1s infinite;
}

.first_section .bouncing-scroll {
    border-radius: 50%;
    height: 7px;
    width: 7px;
    border: 4px solid var(--bg_color_3);
    display: inline-block;
    transition: all 0.2s;
}

@-webkit-keyframes bounceScroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
}

@keyframes bounceScroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }
}

.first_section .slider {
    width: 100%;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 500px;
}

.first_section .slider .slides {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.first_section .slider .slides::-webkit-scrollbar {
    display: none;
}

.first_section .slider .slides .slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.first_section .slider .slides .slide .inner_content {
    width: 100%;
    height: 100%;
}

.first_section .slider .slides .slide .inner_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.first_section .slider .slides {
    transition: transform 0.6s ease-in-out;
}

.first_section .swiper-button-prev,
.first_section .swiper-button-next {
    position: absolute;
    left: 0px;
    width: 40px;
    height: 40px;
    background-color: var(--bg_color_4);
    color: white;
    border-radius: 0px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.5s ease, color 0.3s ease;
}

.first_section .swiper-button-prev:hover,
.first_section .swiper-button-next:hover {
    background-color: white;
    color: var(--bg_color_4);
}

.first_section .swiper-button-prev {
    bottom: 4.8%;
}

.first_section .swiper-button-next {
    bottom: 0%;
    margin-bottom: 0px;
}

.second_section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 90px 0 80px 0;
}

.second_section .dot_bg {
    position: absolute;
    transform: rotate(48deg);
    z-index: -1;
    top: 250px;
    left: -400px;
}

/* .second_section .left-side-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.second_section .left-side-part .creative-text .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_18);
    color: var(--text_color_3);
    border: 1.5px solid var(--bg_color_3);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

.second_section .left-side-part .creative-text .title span {
    margin-right: 6px;
}

.second_section .heading-text {
    font-size: var(--font_46);
    font-family: var(--work-sans-bold);
    color: var(--text_color_4);
    padding: 20px 0;
}

.second_section .subheading-text {
    font-family: var(--work-sans-regular);
    margin-bottom: 0;
    padding-bottom: 15px;
} */

.second_section .col-lg-6:last-child {
    max-height: 400px;
    overflow-y: scroll;
    padding: 15px 15px 0 0;
}

.second_section .col-lg-6:last-child::-webkit-scrollbar {
    width: 4px;
    background: var(--bg_color_5);
}

.second_section .col-lg-6:last-child::-webkit-scrollbar-thumb {
    background: var(--bg_color_4);
    border-radius: 10px;
}

.second_section .creative-text {
    text-align: start;
    cursor: pointer;
}

.second_section .creative-text .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_18);
    color: var(--text_color_3);
    border: 1.5px solid var(--bg_color_3);
    padding: 10px 20px;
    border-radius: 50px;
}

.second_section .creative-text .title span {
    margin-right: 3px;
}

.second_section .creative-text p {
    font-family: var(--work-sans-regular);
    color: var(--text_color_1);
    padding: 0 0 15px 0;
}

.second_section .container .descrption_part {
    margin: 0;
}

.second_section .container .descrption_part .heading-text {
    font-size: var(--font_46);
    font-family: var(--work-sans-bold);
    color: var(--text_color_4);
    padding: 20px 0 5px 0;
}

.second_section .container .descrption_part p:nth-of-type(1),
.second_section .container .descrption_part p:nth-of-type(2),
.second_section .container .descrption_part p:nth-of-type(3),
.second_section .container .descrption_part p:nth-of-type(4),
.second_section .container .descrption_part p:nth-of-type(5) {
    font-family: var(--work-sans-regular);
    font-size: var(--font_16);
}

.second_section .second_section_btn .about-us-btn {
    border: none;
    background-color: var(--bg_color_3);
    border: 2px solid var(--bg_color_3);
    padding: 15px 30px;
    border-radius: 15px 0 15px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-family: var(--work-sans-semibold);
    color: var(--text_color_2);
    transition: all 0.5s ease;
    margin-top: 20px;
}

.second_section .second_section_btn .about-us-btn:hover {
    background-color: transparent;
    color: var(--bg_color_3);
    border: 2px solid var(--text_color_3);
}

.third_section {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 0 80px 0;
}

.third_section .creative-text {
    text-align: center;
    cursor: pointer;
}

.third_section .creative-text .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_18);
    color: var(--text_color_3);
    border: 1.5px solid var(--bg_color_3);
    padding: 10px 20px;
    border-radius: 50px;
}

.third_section .creative-text .title span {
    margin-right: 3px;
}

.third_section .creative-text p {
    font-family: var(--work-sans-regular);
    color: var(--text_color_1);
    padding: 0 0 15px 0;
}

.third_section .heading-text {
    font-size: var(--font_46);
    font-family: var(--work-sans-bold);
    color: var(--text_color_4);
    padding: 20px 0 0 0;
}

.third_section .card {
    border: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.third_section .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--bg_color_3);
    transition: width 0.4s ease-in-out;
}

.third_section .card:hover::after {
    width: 100%;
}

.third_section .second-card .card-body {
    border-bottom: 5px solid var(--bg_color_3);
}

.third_section .card .card-title {
    padding: 10px 0px;
    font-family: var(--work-sans-semibold);
    text-transform: uppercase;
}

.third_section .card .card-text {
    font-family: var(--work-sans-regular);
    font-size: 14px;
    padding: 0 30px;
}

.third_section .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.third_section .servicesimg {
    margin-bottom: 15px;
    max-width: 100%;
    height: 55px;
}

@media only screen and (max-width: 768px) {
    .third_section .heading-text {
        font-size: 32px;
    }
}

.fourth_section {
    padding: 90px 0 50px 0;
}

.fourth_section .creative-text {
    text-align: center;
    cursor: pointer;
}

.fourth_section .creative-text .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_18);
    color: var(--text_color_3);
    border: 1.5px solid var(--bg_color_3);
    padding: 10px 20px;
    border-radius: 50px;
}

.fourth_section .creative-text .title span {
    margin-right: 3px;
}

.fourth_section .creative-text .heading-text {
    font-size: var(--font_46);
    font-family: var(--work-sans-bold);
    color: var(--text_color_4);
    padding: 20px 0 0 0;
}

.fourth_section .creative-text p {
    font-family: var(--work-sans-regular);
    color: var(--text_color_1);
}

.fourth_section .card {
    border-radius: 20px 0 20px 0;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px #00000026, 0 3px 6px #0000001f;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.fourth_section .card:hover {
    border: 2px solid var(--bg_color_3);
}

.fourth_section .card img {
    border-radius: 20px 0 0 0;
}

.fourth_section .card .card-body {
    padding: 15px 5px 7px 5px;
    font-family: var(--work-sans-semibold);
}

.fourth_section .card .card-body .card-title {
    color: #2A2A2A;
    font-size: var(--font_16);
    text-align: center;
    font-family: var(--work-sans-semibold);
}

.fourth_section .owl-carousel {
    cursor: pointer;
}

.fourth_section .owl-carousel:active {
    cursor: pointer;
}

.fourth_section .owl-carousel .owl-stage {
    padding: 20px 0;
}

.fifth_section .download_brochure_part {
    background-color: var(--bg_color_4);
    display: inline-block;
    padding: 15px 25px;
    /* -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius: 10px; */
    position: fixed;
    top: 45%;
    right: -102px;
    z-index: 11;
    transform: rotate(90deg);
    cursor: pointer;
}

.fifth_section .download_brochure_part a {
    text-decoration: none;
}

.fifth_section .download_brochure_part .download_brochure p {
    margin: 0;
    font-family: var(--work-sans-semibold);
    color: var(--text_color_2);
    letter-spacing: 1px;
}

footer {
    background-color: var(--bg_color_5);
}

footer .footer_logo {
    margin-bottom: 30px;
}

.footer-first-section {
    font-family: var(--work-sans-regular);
    color: var(--text_color_1);
}

.footer-second-section {
    margin-left: 120px;
}

.footer-second-section .heading-text,
.footer-third-section .heading-text {
    font-family: var(--work-sans-semibold);
    margin-bottom: 30px;
    color: var(--text_color_1);
}

.footer-second-section a {
    font-family: var(--work-sans-regular);
    text-decoration: none;
    color: var(--text_color_1);
    cursor: pointer;
}

.footer-third-section .detail_part i {
    font-size: 18px;
    color: var(--bg_color_3);
}

.footer-third-section p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--work-sans-regular);
    text-decoration: none;
    color: var(--text_color_1);
    cursor: pointer;
}

.footer-third-section p span {
    margin-top: -3px;
}

.copyright-part {
    background-image: url(../images/footer_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.copyright-part p {
    text-align: center;
    font-family: var(--work-sans-regular);
    /* border-top: 1px solid var(--text_color_5); */
    padding: 80px 0 0 0;
    color: var(--text_color_1);
}

.copyright-part p span {
    color: var(--text_color_3);
    font-family: var(--work-sans-semibold);
}

.aboutus_first_section .bnr {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.aboutus_first_section .bnr .container,
.contactus_first_section .bnr .container,
.product_usage_first_section .bnr .container,
.our_patterns_first_section .bnr .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutus_first_section .page-title h1 {
    color: #FFFFFF;
    font-size: 60px;
    letter-spacing: 2px;
    font-family: var(--work-sans-bold);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.aboutus_first_section .breadcrum {
    background-color: var(--bg_color_4);
    width: fit-content;
    color: #FFFFFF;
    font-size: 15px;
    padding: 10px 20px;
    margin: 15px 0 0 0;
    font-family: var(--work-sans-regular);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.aboutus_first_section .breadcrum img {
    height: 18px;
    width: 18px;
    margin: 3px 0 3px 0;
}

.aboutus_second_section {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 0 60px 0;
}

.aboutus_second_section .col-lg-6:first-child {
    position: sticky;
}

.aboutus_second_section .col-lg-6:last-child {
    max-height: 400px;
    overflow-y: scroll;
    padding: 15px 15px 0 0;
}

.aboutus_second_section .col-lg-6:last-child::-webkit-scrollbar {
    width: 4px;
    background: var(--bg_color_5);
}

.aboutus_second_section .col-lg-6:last-child::-webkit-scrollbar-thumb {
    background: var(--bg_color_4);
    border-radius: 10px;
}

.aboutus_second_section .creative-text {
    text-align: start;
    cursor: pointer;
}

.aboutus_second_section .creative-text .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_18);
    color: var(--text_color_3);
    border: 1.5px solid var(--bg_color_3);
    padding: 10px 20px;
    border-radius: 50px;
}

.aboutus_second_section .creative-text .title span {
    margin-right: 3px;
}

.aboutus_second_section .creative-text p {
    font-family: var(--work-sans-regular);
    color: var(--text_color_1);
    padding: 0 0 15px 0;
}

.aboutus_second_section .container .descrption_part {
    margin: 0;
}

.aboutus_second_section .container .descrption_part .heading-text {
    font-size: var(--font_46);
    font-family: var(--work-sans-bold);
    color: var(--text_color_4);
    padding: 20px 0 5px 0;
}

.aboutus_second_section .container .descrption_part p:nth-of-type(1),
.aboutus_second_section .container .descrption_part p:nth-of-type(2),
.aboutus_second_section .container .descrption_part p:nth-of-type(3),
.aboutus_second_section .container .descrption_part p:nth-of-type(4),
.aboutus_second_section .container .descrption_part p:nth-of-type(5) {
    font-family: var(--work-sans-regular);
    font-size: var(--font_16);
}

.aboutus_third_section {
    /* background-color: var(--bg_color_5); */
    padding: 100px 0 70px 0;
}

.aboutus_third_section .container .card_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.aboutus_third_section .step_wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.aboutus_third_section .step_wrapper .step_circle {
    width: 100%;
    height: 100%;
    background: #F8F5F0;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.aboutus_third_section .step_wrapper .step_circle .arc_ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 0;
    background: conic-gradient(transparent 0deg 180deg, var(--bg_color_4) 180deg 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), black calc(100% - 8px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 8px), black calc(100% - 8px));
    transition: transform 0.4s ease;
}

.aboutus_third_section .step_wrapper:hover .arc_ring {
    transform: rotate(90deg);
}

.aboutus_third_section .step_wrapper .step_number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg_color_4);
    color: var(--text_color_2);
    font-family: var(--work-sans-bold);
    padding: 8px 10px;
    border-radius: 50%;
    z-index: 2;
    letter-spacing: 1.5px;
    border: 5px solid var(--bg_color_2);
}

.aboutus_third_section .step_wrapper .step_icon img {
    height: 40px;
    width: 40px;
    margin-top: 5px;
    color: var(--bg_color_4);
}

.aboutus_third_section .container .card_part .descrption_text {
    margin-top: 30px;
}

.aboutus_third_section .container .card_part .descrption_text h3 {
    color: var(--text_color_1);
    font-family: var(--work-sans-semibold);
    font-size: var(--font_24);
}

.aboutus_third_section .container .card_part .descrption_text p {
    font-family: var(--work-sans-regular);
    font-size: var(--font_16);
}

.contactus_first_section .bnr {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contactus_first_section .page-title h1 {
    color: #FFFFFF;
    font-size: 60px;
    letter-spacing: 2px;
    font-family: var(--work-sans-bold);
    display: flex;
    justify-content: start;
    align-items: start;
    text-align: start;
}

.contactus_first_section .breadcrum {
    background-color: var(--bg_color_4);
    width: fit-content;
    color: #FFFFFF;
    font-size: 15px;
    padding: 10px 20px;
    margin: 15px 0 0 0;
    font-family: var(--work-sans-regular);
    display: flex;
    justify-content: start;
    align-items: start;
    border-radius: 5px;
}

.contactus_first_section .breadcrum img {
    height: 18px;
    width: 18px;
    margin: 3px 0 3px 0;
}

.contactus_second_section {
    padding-top: 10px;
}

.contactus_third_section {
    padding: 100px 0;
}

.contactus_third_section .container .row {
    background: linear-gradient(to left, #3b409710 90%, transparent 90%);
    position: relative;
    padding: 40px 0;
}

.contactus_third_section .container .row::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    border: 2px solid var(--bg_color_5);
    pointer-events: none;
}

.contactus_third_section .form-part {
    position: relative;
}

.contactus_third_section .left_side_part {
    background-color: var(--bg_color_3);
    color: #ffffff;
    padding: 40px;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    top: 50%;
    left: -30px;
    transform: translate(-0%, -50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contactus_third_section .left_side_part .title_heading {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_20);
    color: var(--text_color_2);
    border: 1.5px solid var(--bg_color_2);
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
}

.contactus_third_section .left_side_part .title_heading .title span {
    margin-right: 6px;
}

.contactus_third_section .left_side_part h2 {
    font-size: var(--font_42);
    margin-bottom: 30px;
    font-family: var(--work-sans-bold);
}

.contactus_third_section .left_side_part p {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #ffffff;
    font-family: var(--work-sans-regular);
}

.contactus_third_section .left_side_part p:nth-of-type(3) {
    margin-bottom: 0px;
}

.contactus_third_section .left_side_part p i {
    margin-right: 15px;
    font-size: 16px;
    color: var(--text_color_2);
}

.contactus_third_section .left_side_part .social_media_icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.contactus_third_section .left_side_part .social_media_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg_color_2);
    color: var(--bg_color_3);
    border-radius: 2px;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.contactus_third_section .left_side_part .social_media_icons a i {
    font-size: 15px;
}

.contactus_third_section .left_side_part .social_media_icons a:hover {
    background: transparent;
    color: var(--bg_color_2);
}

/* .contactus_third_section .form-part .form-heading h2 {
    font-size: var(--font_42);
    color: var(--text_color_4);
    font-family: var(--work-sans-bold);
    margin: 0 0 30px 0;
} */

.contactus_third_section .form-part .form-heading {
    margin-bottom: 30px;
}

.contactus_third_section .form-part .form-heading .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_20);
    color: var(--text_color_4);
    border: 1.5px solid var(--bg_color_4);
    padding: 10px 20px;
    border-radius: 50px;
}

.contactus_third_section .form-part .form-heading .title span {
    margin-right: 6px;
}

.contactus_third_section .form-part .form-heading h2 img {
    height: 45px;
    width: 45px;
    margin-right: 15px;
    animation: titleImage 3s linear infinite;
}

.contactus_third_section .inputfields {
    position: relative;
}

.contactus_third_section .inputfields input {
    width: 100%;
    height: 60px;
    background: var(--bg_color_2);
    border: 0;
    outline: none;
    border-radius: 6px;
    padding: 0 25px 0 50px;
    margin: 0 0 15px 0;
    font-family: var(--work-sans-regular);
}

.contactus_third_section .inputfields i {
    position: absolute;
    top: 22px;
    left: 20px;
    color: var(--text_color_4);
}

.contactus_third_section .inputfields textarea {
    height: 150px;
    width: 100%;
    border: 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    resize: none;
    outline: none;
    padding: 17px 25px 17px 50px;
    font-family: var(--work-sans-regular);
}

.contactus_third_section .inputfields::placeholder {
    color: #999999;
    opacity: 1;
    font-size: 16px;
}

.contactus_third_section .form-part .submit-btn {
    border: none;
    background-color: var(--bg_color_4);
    border: 2px solid var(--bg_color_4);
    padding: 15px 30px;
    border-radius: 15px 0 15px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-family: var(--work-sans-semibold);
    color: var(--text_color_2);
    transition: all 0.5s ease;
    margin-top: 20px;
}

.contactus_third_section .form-part .submit-btn:hover {
    background-color: transparent;
    color: var(--bg_color_4);
    border: 2px solid var(--text_color_4);
}

.product_usage_first_section .bnr {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product_usage_first_section .page-title h1 {
    color: #FFFFFF;
    font-size: 60px;
    letter-spacing: 2px;
    font-family: var(--work-sans-bold);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product_usage_first_section .breadcrum {
    background-color: var(--bg_color_4);
    width: fit-content;
    color: #FFFFFF;
    font-size: 15px;
    padding: 10px 20px;
    margin: 15px 0 0 0;
    font-family: var(--work-sans-regular);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.product_usage_first_section .breadcrum img {
    height: 18px;
    width: 18px;
    margin: 3px 0 3px 0;
}

.product_usage_second_section {
    padding: 100px 0;
}

.product_usage_second_section .card {
    height: 100%;
    border-radius: 20px 0 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--bg_color_2);
}

.product_usage_second_section .card img {
    border-radius: 20px 0 0 0;
    width: 100%;
    height: 300px;
    object-fit: fill;
    display: block;
    position: relative;
    z-index: 1;
}

.product_usage_second_section .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.product_usage_second_section .card .card-body {
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 0;
    text-align: start;
    z-index: 3;
}

.product_usage_second_section .card .card-body .card-title {
    font-family: var(--work-sans-medium);
    color: #fff;
    font-size: var(--font_16);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_usage_second_section .card .card-body .card-title span {
    font-size: 25px;
    line-height: 1;
    padding: 0;
}

.our_patterns_first_section .bnr {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.our_patterns_first_section .page-title h1 {
    color: #FFFFFF;
    font-size: 60px;
    letter-spacing: 2px;
    font-family: var(--work-sans-bold);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.our_patterns_first_section .breadcrum {
    background-color: var(--bg_color_4);
    width: fit-content;
    color: #FFFFFF;
    font-size: 15px;
    padding: 10px 20px;
    margin: 15px 0 0 0;
    font-family: var(--work-sans-regular);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.our_patterns_first_section .breadcrum img {
    height: 18px;
    width: 18px;
    margin: 3px 0 3px 0;
}

.our_patterns_second_section {
    padding: 70px 0;
    background-color: var(--bg_color_2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.our_patterns_second_section .perforation_bg {
    position: absolute;
    z-index: -1;
    top: -350px;
    left: -170px;
}

.our_patterns_second_section .creative-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    margin-bottom: 30px;
    cursor: pointer;
}

.our_patterns_second_section .creative-text .title {
    font-family: var(--work-sans-semibold);
    font-size: var(--font_18);
    color: var(--text_color_3);
    border: 1.5px solid var(--bg_color_3);
    padding: 10px 20px;
    border-radius: 50px;
}

.our_patterns_second_section .creative-text .title span {
    margin-right: 3px;
}

.our_patterns_second_section .container .descrption_part {
    margin: 0;
    text-align: center;
    padding: 0 50px;
}

.our_patterns_second_section .container .descrption_part .heading-text {
    font-size: var(--font_46);
    font-family: var(--work-sans-bold);
    color: var(--text_color_4);
    padding: 20px 0 5px 0;
}

.our_patterns_second_section .container .descrption_part p {
    font-family: var(--work-sans-regular);
    font-size: var(--font_16);
}

.our_patterns_second_section .container .patterns_img_part {
    margin-top: 60px;
}

.our_patterns_second_section .container .patterns_img_part .card {
    border: none;
}

.our_patterns_second_section .container .patterns_img_part img {
    border-radius: 20px 0 20px 0;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border: 5px solid var(--bg_color_2);
    cursor: pointer;
}

/* loader start */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg_color_2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
}

.preloader .loader-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .loader-container .progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    left: 0;
}

.preloader .loader-container .progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8px;
}

.preloader .loader-container .progress-ring-circle {
    fill: none;
    stroke: var(--text_color_4);
    stroke-width: 6px;
    stroke-dasharray: 1130;
    stroke-dashoffset: 1130;
    transition: stroke 0.5s ease;
}

.preloader .loader-container .loader-content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader .loader-container .loader-logo {
    width: 120px;
    height: auto;
    margin-top: 20px;
}

.preloader .loader-container .loading-stage {
    position: relative;
    height: 30px;
    width: 100px;
    overflow: hidden;
    margin-top: 10px;
}

.preloader .loader-container .stage-current,
.preloader .loader-container .stage-next {
    position: absolute;
    width: 100%;
    text-align: center;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-top: 8px;
    font-size: var(--font_16);
    color: var(--text_color_3);
    font-family: var(--work-sans-semibold);
}

.preloader .loader-container .stage-current {
    transform: translateY(0);
}

.preloader .loader-container .stage-next {
    transform: translateY(30px);
}

.preloader .loader-container .percentage {
    font-size: 40px;
    font-weight: 700;
    color: var(--text_color_3);
    font-family: var(--work-sans-semibold);
}

/* loader end */