@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300;400;600;700;900&display=swap');

:root {
    --pri: #f89d1b;
    --sec: #9b0102;
    --tri: #213166;
    --text-color: #192324;
    --text-light: #5d6576;
    --font: "Titillium Web", sans-serif;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

html {
    overflow-x: hidden;
}

body {
    background: #fff;
    overflow-x: hidden;
    color: var(--text-color);
    font-family: var(--font);
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0c0c0c;
    margin: 0 0 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #0c0c0c;
}

p a {
    color: #5d6576;
    width: auto;
    display: inline-block;
}

p a:hover {
    text-decoration: underline;
    outline: none;
}

p {
    letter-spacing: normal;
    margin-bottom: 10px;
    line-height: 24px;
    color: var(--text-color);
    font-size: 15px;
}

a {
    color: #7f7f7f;
    text-decoration: none;
    outline: none;
    display: block;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
    width: 100%;
}

blockquote {
    padding: 0;
    border: 0;
}

label {
    color: #ed1212;
    display: block;
    font-weight: 400;
    margin: 0;
}

textarea {
    height: 100px !important;
}

textarea,
select,
input {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 15px !important;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control::-moz-placeholder {
    color: #555;
}

.form-control:focus::-moz-placeholder {
    color: var(--pri);
}

.form-control:focus {
    border-color: var(--pri);
    box-shadow: none;
}

h2 {
    font-size: 26px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    margin: 0 0 30px;
    font-weight: bold;
    overflow: hidden;
}

h3 span {
    padding: 0 10px 0 0;
    position: relative;
}

h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-transform: capitalize;
    text-align: center;
    padding: 15px 0;
    color: #fff;
}

h5 {
    text-transform: capitalize;
}

/* Header*/
.header {
    float: left;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.header.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    background-color: #fff;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.header .logo {
    padding: 13px 0;
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #fff;
    text-align: center;
}

.header.stricky-fixed .logo {
    padding: 5px 0;
    width: 160px;
}

.header.stricky-fixed .topbar {
    display: none;
}

.header .logo a {
    -webkit-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
    display: block;
}

.header .logo img {
    z-index: 999;
    position: relative;
    max-width: 220px;
}

.header.stricky-fixed .logo img {
    max-width: 140px;
}

.header.stricky-fixed .navigation .menu ul {
    text-align: right;
}

.header .topbar {
    background-color: var(--tri);
    margin-bottom: 5px;
}

.header .topbar .row {
    -webkit-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
}

.header .menu_wrapper {
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    background: #fff;
}

.top_right {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 45px;
}

.phone_call {
    display: inline-block;
    list-style: none;
    margin-left: 25px;
    margin-right: 20px;
    padding: 0;
}

.phone_call a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.phone_call a svg {
    width: 14px;
    height: 14px;
    margin-right: 3px;
    vertical-align: middle
}

.phone_call a:hover {
    color: var(--pri)
}

ul.social {
    float: left;
    margin: 0;
    padding: 0;
}

ul.social li {
    margin: 0px 0 0 3px;
    display: inline-block;

}

ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #231573;
    -ms-transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    transform: skewX(-30deg);

}

ul.social li a svg {
    color: #fff;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    -ms-transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    transform: skewX(30deg);
}

ul.social li.facebook a {
    background: #3C5B9B;
}

ul.social li.twitter a {
    background: var(--liner);
    background-color: #000;
}

ul.social li.linkedin a {
    background: #027ba5;
}

ul.social li.youtube a {
    background: #f70000;
}

ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.search {
    max-width: 330px;
    width: 100%;
    margin: 0 0px;
    margin-left: auto;
    padding: 0;
    position: relative;
}

.search:before {
    border-bottom: 45px solid rgba(0, 0, 0, 0.15);
    border-left: 26px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    left: -30px;
    width: 30px;
    top: 0;
    bottom: 0;
}

.search input.form-control {
    height: 45px;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    border: 0;
    width: 95%;
    border-radius: 0;
    outline: 0;
}


.search input.form-control::placeholder {
    color: #d4d4d4;
}

.search_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 15px;
    line-height: 45px;
    background: var(--pri);
    color: #fff;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
}

.search_btn svg {
    -webkit-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
}

.search_btn:hover {
    background: var(--sec);
}



.navbar .phone_call {
    margin: 10px 0;
}

.navbar .phone_call a {
    color: #fff;
}

.navbar .phone_call a:hover,
.navbar .phone_call a:focus {
    color: var(--pri);
}



.header .navigation {
    float: right;
    width: 100%;
    position: relative;
    background: #fff;
}

.header .navigation .menu {
    -webkit-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
}


.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--pri);
    font-size: 25px;
    border-radius: 0;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: var(--pri);
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: block;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 13px 14px;
    display: block;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 16px;
    background: transparent;
    font-weight: 600;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--sec);
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left
}

.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 285px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease;
    width: 250px;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    border-bottom: 0
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri);
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: #fff;
    background: var(--sec)
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: #fff;
    color: #333
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 14px;
    padding: 6px 13px;
    position: relative;
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;
    font-weight: 500;
    background: #fff;
    transition: all 0.3s ease;
    border-bottom: 0px solid transparent;
}


.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: #333;
}

.navigation ul li.cs-submenu a button svg {
    width: 14px;
    height: 14px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--sec);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #242424
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.navigation .menu ul>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: 100%;
    margin-top: -36px;
    max-height: 200px;
    overflow-y: auto;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: -100%;
    margin-top: -31px;
}


.navigation .menu ul>li>ul.cs-dropdown>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li ul.cs-dropdown {
    position: absolute;
    max-width: 230px;
    width: max-content;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    text-align: left !important;
}

.navigation .menu ul>li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

/* banner */
.home_slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    aspect-ratio: 96 / 47;
}

.home_slider #slider {
    overflow: hidden;
    width: 100%
}

.slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.home_slider .slide img {
    width: 100%;
    max-width: 100%;
}

#slider .owl-prev,
#slider .owl-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #333;
    border: 0;
    outline: 0;
    background: #fff;
    border-radius: 100%;
    z-index: 9
}

#slider .owl-nav .owl-prev {
    left: 80px;
}

#slider .owl-nav .owl-next {
    right: 80px;
}

#slider .owl-prev:hover,
#slider .owl-next:hover {
    background: var(--pri);
    color: #fff;
    border-color: var(--pri)
}

#slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.title_1 {
    float: left;
    width: 100%;
    color: var(--text-color);
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 27px;
    position: relative;
}

.title_1 span {
    color: var(--pri);
}

.title_1:before {
    content: '';
    background: var(--pri);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 70px;
    height: 4px;
    margin: 0 auto;
}

.title_2 {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.title_2 span {
    color: var(--pri);
}

.title_2:before {
    content: '';
    background: var(--pri);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 50px;
    height: 5px;
    margin: 0 auto;
}


.title_3 {
    float: left;
    width: 100%;
    color: var(--tri);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.title_3:after {
    content: '';
    background: var(--pri);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    margin: 0;
}

.home_we_offer {
    float: left;
    width: 100%;
    padding: 50px 0;
    margin: 0;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.offerWidth {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.offerWidth p {
    font-size: 17px;
    line-height: 25px;
    color: #333;
}

.offerWidth_2 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.offerWidth_2 p {
    font-size: 17px;
    line-height: 25px;
    color: #fff;
}

.home_we_offer ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.home_we_offer ul li {
    width: 24.5%;
    display: inline-block;
}

.home_we_offer ul li:last-child .offer-colm {
    border: none;
}

.offer-colm .title_h3 {
    font-size: 18px;
    line-height: 28px;
    padding: 10px 0 5px;
    margin: 0;
    color: var(--pri);
    font-weight: 600;
}

.offer-colm p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
}

.offer-colm {
    text-align: center;
    border-right: 1px solid #d3d3d3;
    padding: 15px;
}

.offer-colm img {
    display: block;
    max-width: 80px;
    margin: 0 auto;
}

.home_featured {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 60px;
    background: url(../images/background.webp) no-repeat;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.home_featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1c;
    opacity: 0.8;
    z-index: -1;
}

.webpulse_home_featured:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#featuredProducts .owl-prev,
#featuredProducts .owl-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background: var(--pri);
    border-radius: 100%;
    z-index: 9
}

#featuredProducts .owl-nav .owl-prev {
    left: -20px;
}

#featuredProducts .owl-nav .owl-next {
    right: -20px;
}

#featuredProducts .owl-prev:hover,
#featuredProducts .owl-next:hover {
    background: var(--sec);
    color: #fff;
    border-color: var(--sec)
}

#featuredProducts .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.featuredBlock {
    display: block;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.featuredBlock:hover {
    box-shadow: 0 0px 30px rgba(0, 0, 0, .10)
}

.featuredBlock .image-box {
    position: relative;
}

.featuredBlock .image-box .image {
    position: relative;
    margin-bottom: 0;
    background: #fff;
}

.featuredBlock .image-box .image img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.featuredBlock .caption-box {
    position: relative;
    padding: 15px 20px;
    padding-right: 70px;
    background-color: #ffffff;
    border-top: 1px solid #ebebeb;
    border-top: 0;
}

.featuredBlock .caption-box .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    background-color: var(--pri);
    line-height: 60px;
    color: #ffffff;
}

.featuredBlock .caption-box .icon svg {
    width: 22px;
    height: 22px;
}

.featuredBlock:hover .caption-box .icon {
    background: var(--sec)
}

.featuredBlock .caption-box .title_h3 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-align: left;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.featuredBlock:hover .caption-box .title_h3 {
    color: var(--pri);
}

.featuredBlock .overlay-box {
    position: absolute;
    left: 0;
    top: 100%;
    height: 100%;
    width: 100%;
    background-color: rgb(255, 255, 255, .90);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 600ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featuredBlock:hover .overlay-box {
    top: 0%;
}

.featuredBlock .overlay-box:before {
    position: absolute;
    left: 40px;
    bottom: 0;
    height: 90%;
    width: 1px;
    background-color: var(--tri);
    content: "";
    opacity: .70;
}

.featuredBlock .overlay-box:after {
    position: absolute;
    bottom: 40px;
    left: 0;
    height: 1px;
    width: 90%;
    background-color: var(--tri);
    opacity: .70;
    content: "";
}

.featuredBlock .overlay-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    padding-left: 70px;
    padding-right: 30px;
}

.featuredBlock .overlay-box .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 27px;
    color: #333;
    font-weight: 400;
    margin-bottom: 20px;
}

.featuredBlock .overlay-box .link-box {
    position: relative;
    display: block;
}

.featuredBlock .overlay-box .link-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2em;
    color: var(--text-color);
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.featuredBlock .overlay-box .link-box a:hover {
    color: var(--pri);
}

.featuredBlock .overlay-box .link-box a svg {
    margin-left: 5px;
    width: 24px;
    height: 24px;
}


.home_right {
    float: right;
    max-width: 450px;
    margin: 0 0 15px 25px;
    border-radius: 8px;
    overflow: hidden;
}

.welcomeAbout {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    background: url(../images/about/abt-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.welcomeAbout::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.5;
    z-index: -1;
}


.welcomeAbout .about-image .working-area {
    background-color: var(--theme);
    display: inline-block;
    padding: 25px 16px 25px;
    text-align: center;
    position: absolute;
    top: 86px;
    left: -50px;
}

@media (max-width: 767px) {
    .welcomeAbout .about-image .working-area {
        left: 0;
    }
}

.welcomeAbout .about-image .working-area .inner {
    position: relative;
}

.welcomeAbout .about-image .working-area .inner::before {
    content: "";
    position: absolute;
    bottom: -55px;
    left: -16px;
    width: 50px;
    height: 30px;
    background: var(--theme);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 48% 47%, 0 0);
}

.welcomeAbout .about-image .working-area .inner .icon-box {
    color: var(--white);
}

.welcomeAbout .about-image .working-area .inner .icon-box i {
    font-size: 50px;
    margin-bottom: 15px;
}

.welcomeAbout .about-image .working-area .inner .icon-box h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.welcomeAbout .about-image .video-image {
    position: absolute;
    z-index: 1;
    right: -28%;
    bottom: 67px;
    max-width: 220px;
    overflow: hidden;
    border-radius: 5px;
}

@media (max-width: 1399px) {
    .welcomeAbout .about-image .video-image {
        right: -15%;
    }
}

@media (max-width: 1199px) {
    .welcomeAbout .about-image .video-image {
        right: -28%;
    }
}

@media (max-width: 767px) {
    .welcomeAbout .about-image .video-image {
        right: 0;
        bottom: 0;
    }
}

.welcomeAbout .about-image .video-image img {
    width: 100%;
    height: 100%;
}

.welcomeAbout .about-image .video-image .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.welcomeAbout .about-image .video-image .video-box .video-btn {
    background-image: var(--color-gradient-1);
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 75px;
    border-radius: 50%;
    text-align: center;
}

.welcomeAbout .sub_head {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    line-height: normal;
    color: var(--pri);
    margin-bottom: 7px;
    padding-left: 23px;
}

.welcomeAbout .sub_head::before {
    content: "";
    position: absolute;
    bottom: 7px;
    top: 46%;
    transform: translateY(-50%);
    left: 0px;
    width: 14px;
    height: 14px;
    background-color: var(--pri);
}

.abts_bx {
    position: relative;
    float: left;
    max-width: 480px;
    margin: 0 50px 30px 0;
    z-index: 1;
}

.abts_bx .img_bx1 {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
}

.abts_bx .img_bx1 img {
    border-radius: 6px;
}

.call_now {
    position: absolute;
    bottom: 22px;
    right: -22px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 3px;
}

.call_now img {
    width: 40px;
}

.call_now p {
    margin-bottom: 0;
    font-size: 14px;
    color: #777;
    line-height: 20px;
}

.call_now a {
    color: var(--text-color);
    line-height: 25px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
}

.call_now a:hover {
    color: var(--pri);
}

.welcomeAbout .tx_bx .main-tt,
.welcomeAbout .tx_bx h1,
.welcomeAbout .tx_bx h2,
.welcomeAbout .tx_bx h3 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
    color: var(--sec);
}

.welcomeAbout .tx_bx h1 {
    font-size: 30px;
}

.welcomeAbout .tx_bx p {
    text-align: justify;
}


.welcomeAbout ul {
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
    display: flow-root;
}

.welcomeAbout ul li {
    margin-bottom: 6px;
    font-weight: 400;
    padding-left: 27px;
    position: relative;
    color: #222;
    text-align: justify;
}

.welcomeAbout ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="white" class="bi bi-check" viewBox="0 0 16 16"> <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/> </svg>');
    position: absolute;
    top: 3px;
    /* transform: translateY(-50%); */
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--liner);
    background-color: var(--pri);
    display: flex;
    justify-content: center;
    line-height: 22px;
    border-radius: 100%;
}

.welcomeAbout .work-content .work-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.welcomeAbout .work-content .work-header span {
    height: 100px;
    width: 100px;
    border: 5px solid #d2d2d2;
    text-align: center;
    line-height: 100px;
    font-size: 50px;
    font-weight: 700;
    color: var(--pri);
    margin-right: 20px;
    display: inline-block;
}

.welcomeAbout .work-content .work-header .title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    line-height: normal;
}

.welcomeAbout .work-content .work-item .title {
    font-size: 18px;
    line-height: normal;
    padding-top: 15px;
    padding-bottom: 5px;
    margin: 0;
    text-transform: initial;
}

.welcomeAbout .work-content .work-item .title span {
    color: var(--pri);
}

.welcomeAbout .work-content h2 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.welcomeAbout .work-content .work-item p {
    line-height: 25px;
    padding-right: 0px;
    text-align: justify;
}

.welcomeAbout .work-content .single-work-services p {
    text-align: left;
}

.welcomeAbout .work-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 11px;
    display: block;
    max-width: 100%;
    clear: left
}

.welcomeAbout .work-content li {
    line-height: 28px;
    font-size: 16px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.welcomeAbout .work-content li:before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}


.welcomeAbout .single-work-services {
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 15px 25px 20px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: #fff;
    margin-bottom: 30px;
}

.welcomeAbout .single-work-services .title {
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
    margin-bottom: 10px;
    color: var(--pri);
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.welcomeAbout .single-work-services p {
    font-size: 15px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    margin: 0;
}

.video-section {
    margin: 0;
    padding: 20px 0 20px;
    position: relative;
}

.video-section .video-inner {
    position: relative;
    max-width: 640px;
    width: 100%;
    padding: 140px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 480px;
    margin: 0;
    border-radius: 6px;
}

.video-section .video-inner .video-content a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    text-align: center;
    background: var(--pri);
    border-radius: 4px;
    border: 1px solid var(--pri);
}

.video-section .video-inner .video-content a svg {
    width: 30px;
    height: 30px;
}

.video-section .video-inner .video-content a:hover {
    background: #fff;
    color: var(--pri);
}

.video-section .video-inner .video-content {
    position: relative;
    text-align: center;
}

.read_more_btn {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 40px;
    padding: 0px 18px;
    letter-spacing: normal;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.5s;
    background: var(--pri);
    border: 0;
    outline: 0;
}

.read_more_btn svg {
    width: 18px;
    height: 18px;
    margin-left: auto;
}

.read_more_btn:hover {
    background: var(--sec);
    color: #fff;
}

.read_more_btn.callback {
    background-color: var(--tri);
}

.read_more_btn.callback:hover {
    background-color: var(--sec);
}

.webpulse_home_product {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    /* background: url(../images/background.jpg), no-repeat;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; */
    background: #eee;
}

/* 
.webpulse_home_product:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--tri);
    opacity: 0.8;
} */

.webpulse_home_product .container {
    position: relative;
}

.webpulse_home_product .read_more_btn {
    margin: 0 auto;
}

#ourProducts {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

#ourProducts .owl-prev,
#ourProducts .owl-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background: var(--pri);
    border-radius: 100%;
    z-index: 9
}

#ourProducts .owl-nav .owl-prev {
    left: -20px;
}

#ourProducts .owl-nav .owl-next {
    right: -20px;
}

#ourProducts .owl-prev:hover,
#ourProducts .owl-next:hover {
    background: var(--tri);
    color: #fff;
    border-color: var(--tri)
}

#ourProducts .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.productBlock {
    position: relative;
    display: block;
    background: #fff;
}

.productBlock .image {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.productBlock .image img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.productBlock .productInfo {
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: var(--pri);
}

.productBlock .productInfo a {
    color: var(--text-color);
}

.productBlock:hover .productInfo a {
    color: white;
}

.testimonials_section {
    float: left;
    width: 100%;
    padding: 50px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
    background-color: #f7f7f0;
}

.tm-testi-slide-1 {
    background: #fff;
    padding: 24px 21px 15px;
    margin: 5px 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    border-radius: 18px;
    transition: all .3s ease-in-out
}

.tm-testi-logo {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tm-trustpilot-logo {
    flex: 1
}

.tm-trustpilot-logo img {
    max-width: 91px
}

.tm-star-ratings {
    flex: 1;
    text-align: right;
    font-weight: 600
}

.tm-star-ratings img {
    max-width: 84px;
    margin-left: auto
}

.tm-slide-h4 {
    color: #373737;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 10px
}

.tm-testi-slide-1 p {
    font-weight: 400;
    font-size: 16px;
    padding: 15px 0;
    line-height: 1.5;
    border-bottom: 1px solid #ebeaea;
    color: #707070;
    text-align: left;
    margin: 0;
    min-height: 150px;
}

.tm-slide-h5 {
    color: var(--para-color);
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.tm-slide-h5 span {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-block;
    overflow: hidden;
    margin-right: 7px;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    font-size: 14px;
    color: #0a58ca;
    margin-top: 5px;
}

.morelink:hover {
    color: var(--sec);
}

.webpulse-home_blog {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 30px;
    background: #fff;
}

.blogPost {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 0;
    border: none;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.blogPost .image {
    position: relative;
}

.blogPost .image img {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%, 0 100%);
}

.blogPost:hover {
    -webkit-box-shadow: 0 10px 30px 0 rgba(58, 87, 135, .15);
    -moz-box-shadow: 0 10px 30px 0 rgba(58, 87, 135, .15);
    box-shadow: 0 10px 30px 0 rgba(58, 87, 135, .15);
}

.blogPost .postDate {
    position: absolute;
    bottom: 0;
    font-size: 13px;
    color: #fff;
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 10px;
    right: 19px;
    border-radius: 5px 5px 0 5px;
    background: var(--tri);
}

.blogPost .postDate:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 10px solid transparent;
    bottom: -10px;
    right: 0;
    border-right: 10px solid var(--tri);
}

.postDate span {
    font-size: 19px;
    display: block;
    line-height: 22px;
    color: #fff;
}

.blogPost .postInfo {
    display: block;
    padding: 30px 20px 25px;
    float: left;
    width: 100%;
    background: #fff;
}

.blogPost .postInfo p {
    font-size: 15px;
    margin-bottom: 15px;
}

.blogPost .postInfo .title_h4 {
    text-align: left;
    margin: 0;
    padding: 0;
}

.blogPost .postInfo .title_h4 a {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.blogPost:hover .postInfo .title_h4 a {
    color: var(--pri);
}

.blogPost .postInfo .read_more_btn {
    line-height: 40px;
    max-width: 150px;
    padding: 0 20px;
}


.webpulse_home_clients {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f7f7f0;
}

.webpulse_home_clients .clients {
    border: solid 1px #d8d8d8;
    max-width: 100%;
    background: #fff;
    margin-bottom: 26px;
    position: static;
    opacity: 1;
    margin: 0px;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
}

.webpulse_home_clients .item .image {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.webpulse_home_clients .item .image img {
    aspect-ratio: 2 / 1;
    object-fit: contain;
}

.faq_section {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #eee;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
}

.accordion-header {
    padding: 0 !important;
    margin: 0 !important;
    text-transform: initial;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-button {
    padding: 12px 15px;
    font-size: 18px;
    font-weight: normal;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--pri);
    font-weight: normal;
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    transform: rotate(0deg);
}

.accordion-button:hover,
.accordion-button:focus {
    color: #fff;
    background: var(--pri);
}

.accordion-button:hover:after {
    background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    transform: rotate(-180deg);
}

.accordion-body p {
    font-size: 16px;
    line-height: 24px;
}


.upperFotter {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.upperFotter .image {
    padding: 0;
}

.upperFotter .image img {
    position: relative;
    z-index: 9;
    max-width: 245px;
}

.upperFotter .upperFotter_right {
    padding: 0;
    position: relative;
}

.upperFotter .upperFotter_right:before {
    content: '';
    width: 25000px;
    position: absolute;
    top: 30px;
    left: -70px;
    height: 100%;
    background: var(--tri);
    transform: skew(-33deg);
    z-index: 4;
}

.upperFotter .upperFotter_right:after {
    content: '';
    width: 25000px;
    position: absolute;
    height: 100%;
    top: 50px;
    margin-right: 83px;
    right: 100%;
    background-image: url(../images/footer-top-bg.png);
    background-position: center top;
    transform: skew(-33deg);
    opacity: .1;
}

.upperFotter .upperFotter_right .box {
    position: relative;
    padding-left: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.upperFotter .upperFotter_right .box:before {
    content: '';
    width: 25000px;
    position: absolute;
    height: 100%;
    top: 50px;
    margin-right: 50px;
    right: 100%;
    transform: skew(-33deg);
    background-color: var(--pri);
    z-index: -1;
}

.upperFotter .upperFotter_right .text-box {
    position: relative;
    z-index: 10;
    top: 50px;
}

.upperFotter .upperFotter_right .text-box h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 10px;
}

.upperFotter .upperFotter_right .text-box p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    margin: 0;
}

.upperFotter .upperFotter_right .text-box .number a {
    color: var(--pri);
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    vertical-align: middle;
}

.upperFotter .upperFotter_right .text-box .number+b {
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 12px;
}

.upperFotter .upperFotter_right .text-box .contactBtn {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 45px;
    border: 1px solid #fff;
    color: #fff;
    font-style: normal;
    padding: 0 25px;
    margin-left: 25px;
    margin-top: 15px;
    transition: all .3s ease;
}

.upperFotter .upperFotter_right .text-box .contactBtn svg {
    margin-left: 10px;
    font-size: 24px;
}

.upperFotter .upperFotter_right .text-box .contactBtn:hover {
    background: var(--pri);
    border-color: var(--pri);
    text-decoration: none;
}

footer {
    float: left;
    width: 100%;
    padding: 70px 0px;
    background: #000 url(../images/background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

footer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: linear-gradient(135deg, rgb(0, 34, 96) 0%, rgb(0, 0, 0) 100%);
    opacity: 0.8
}

footer .container {
    position: relative;
}

footer .title_h5 {
    float: left;
    width: 100%;
    font-size: 22px;
    text-align: left;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

footer .title_h5 span {
    color: var(--pri);
}

footer p {
    float: left;
    width: 100%;
    color: #fff;
}

footer p a {
    float: left;
    color: #fff;
}

footer p a:hover {
    color: var(--pri);
}

footer p span {
    float: left;
}

.contact {
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
}

.contact li {
    margin-bottom: 12px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    width: 100%;
}

.contact li svg {
    min-width: 25px;
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.contact li a {
    color: #fff;
    display: inline-block;
}

.contact li a:hover {
    color: var(--pri);
}

.come_with_us {
    color: #fff;
    margin: 10px 0;
    font-size: 16px;
}

.come_with_us svg {
    color: var(--pri);
    margin-right: 10px;
}

.come_with_us a {
    color: var(--pri);
    text-decoration: underline;
    display: inline-block;

}

.come_with_us a:hover {
    color: var(--pri);
}

footer ul.social li a {
    -ms-transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

footer ul.social li a svg {
    -ms-transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}


footer .footerLink {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

footer .footerLink li {
    line-height: 30px;
    list-style: none;
    color: #fff;
    font-size: 16px;
}

footer .footerLink li a {
    color: #fff;
}

footer .footerLink li a:hover {
    color: var(--pri);
}

.copyright {
    float: left;
    width: 100%;
    background: var(--tri);
    line-height: 40px;
    color: #fff;
}

.copyright p {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
    line-height: 40px;
}

.copyright a {
    color: #fff;
    display: inline-block;
}

.copyright p a:hover {
    color: var(--pri);
}

.textRight {
    text-align: right;
}

.car_gototop {
    bottom: -180px;
    z-index: 9999;
    opacity: 1;
    cursor: pointer;
    background: #ffffff;
    border-radius: 2px;
    color: #ffffff;
    display: table;
    height: 45px;
    right: 15px;
    min-width: 45px;
    position: fixed;
    text-align: center;
    z-index: 5;
    transition: all 0.6s;
    background: var(--sec);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);
}

.car_gototop:hover {
    background: var(--black);
}

.car_gototop.show {
    bottom: 30px !important;
}

.car_gototop.car-run {
    bottom: 100% !important;
}

.whatapp_btn {
    background: #01e675;
    width: 50px;
    height: 50px;
    color: #fff;
    position: fixed;
    left: 20px;
    bottom: 120px;
    cursor: pointer;
    z-index: 9;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);
}

.whatapp_btn svg {
    width: 24px;
    height: 24px;
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: #fff;
}

#whatsapp .modal-dialog {
    margin-top: 15%;
}


.send_enquiry {
    background: #ffffff;
    border-radius: 40px;
    bottom: 60px;
    color: #ffffff;
    display: table;
    height: 50px;
    left: 20px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 9;
    transition: all 0.2s linear;
    background: var(--sec);
    display: flex;
    align-items: center;
    justify-content: center;
}

.send_enquiry svg {
    width: 24px;
    height: 24px;
    line-height: 50px;
}

.send_enquiry:hover {
    color: #fff;
    padding: 0 20px;
}

.send_enquiry:focus {
    color: #fff;
}

.send_enquiry span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 50px;
    transition: all 0.5s;
    text-transform: uppercase;
}

.send_enquiry:hover span {
    opacity: 1;
    letter-spacing: 1px;
    padding-left: 10px;
}


.modal-content {
    border-radius: 0;
}

.modal-header {
    padding: 0 15px;
    background: var(--tri);
    color: #fff;
    border-radius: 0;
}

.modal-header h5 {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
}

.modal-header h6 {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
}

.modal-header .modal-title {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    padding: 15px 0;
    text-transform: initial;
    letter-spacing: 0.2px;
}

.btn-close {
    width: 1em;
    height: 1em;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    outline: 0;
}

.send_p {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}

.g-recaptcha {
    transform: scale(0.80);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0
}



/* Inner Heading Banner*/
.heading_banner {
    float: left;
    width: 100%;
    position: relative;
    background-size: 100%;
    background-position: center;
    padding: 160px 0 60px;
    margin: 0;
}

.heading_banner:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 0;
    content: '';
}

.heading_banner .container {
    position: relative;
    z-index: 9;
}



.heading_banner h2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: normal;
    color: #eee;
    text-align: center;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

.heading_banner .cat_title {
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    background-color: var(--pri);
}

.heading_banner .cat_title2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: normal;
    color: #eee;
    text-align: center;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}


/* Breadcrumb*/
.inner_breadcrumb {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
    margin: 0;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.inner_breadcrumb .breadcrumb {
    background: none;
    border-radius: 0;
    border: none;
    list-style: none;
    padding: 0;
    float: left;
    text-transform: capitalize;
    margin: 0;
}

.inner_breadcrumb .breadcrumb li {
    font-weight: 600;
    text-transform: capitalize;
    color: #666;
    float: left;
    line-height: 40px;
}

.inner_breadcrumb .breadcrumb li a {
    float: left;
    padding: 0;
    color: #666;
    letter-spacing: 0.3px;
}

.inner_breadcrumb .breadcrumb li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    padding: 0 14px;
    color: #fff;
    display: inline-block;
}

.inner_breadcrumb .breadcrumb li.active {
    color: var(--pri);
}

.inner_breadcrumb .breadcrumb li+li:before {
    content: "/";
    color: #fff;
    padding: 0 14px;
}

.inner_breadcrumb .breadcrumb li+li:before {
    float: left;
    padding: 14px 10px;
    color: #bfbfbf;
}

.title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.right_side .title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

/* About Us */
.about_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.left_sidebar {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.left_sidebar .left_title {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}


.left_sidebar ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--pri);
}

.left_sidebar ul li {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #444;
    list-style: none;
}

.left_sidebar ul li a {
    color: #FFF;
    padding: 10px;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
}

.left_sidebar ul li a:hover,
.left_sidebar ul li a:focus,
.left_sidebar ul li a.active {
    background: var(--pri);
    color: #fff;
}

.left_sidebar ul li ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.left_sidebar ul li ul li {
    border-bottom: 1px dashed #CCC;
    list-style-type: none;
    position: relative;
}

.left_sidebar ul li ul li a {
    display: block;
    font-weight: 500;
    color: #333;
    text-align: left;
    font-size: 14px;
    padding: 4px 15px;
    text-decoration: none;
    line-height: 24px;
}

.left_sidebar ul li ul li a:hover,
.left_sidebar ul li ul li a:focus,
.left_sidebar ul li ul li a.active {
    background: var(--pri);
    color: #fff;
}

.left_sidebar ul li ul li a i {
    float: right;
    line-height: 24px;
}

.left_sidebar ul li ul li ul {
    display: none;
    transition: all 2s;
    position: absolute;
    left: 98%;
    top: 0px;
    z-index: 200;
    background: #fff;
    width: 200px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.left_sidebar ul li ul li:hover ul {
    display: block;
    transition: all 2s;
}

.left_sidebar ul li ul li ul li a {
    display: block;
    font-weight: 400;
    color: #333;
    text-align: left;
    font-size: 13px;
    padding: 4px 15px;
    text-decoration: none;
    text-transform: initial;
    line-height: 24px;
}

.left_sidebar ul li ul li ul li a:hover,
.left_sidebar ul li ul li ul li a:focus,
.left_sidebar ul li ul li ul li a.active {
    background: var(--pri);
    color: #fff;
}

.left_sidebar form {
    float: left;
    width: 100%;
    background: #fff;
    padding: 10px 10px 10px;
}

.right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.right_side h2 {
    padding: 0px;
    margin: 20px 0 5px;
    line-height: 30px;
    font-size: 22px;
    color: var(--pri);
    font-weight: 600;
}

.right_side h3 {
    padding: 0px;
    margin: 10px 0 5px;
    line-height: 30px;
    font-size: 20px;
    color: var(--pri);
    font-weight: 600;
}

.wps_right {
    float: left;
    width: 100%;
    /*👉 background: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;👈*/
}

.wps_right p {
    line-height: 24px;
    margin-bottom: 10px;
    text-align: justify;
    font-size: 16px;
    font-weight: normal
}

.wps_right ul {
    margin: 0 0 25px;
    padding: 0;
}

.wps_right ul li {
    line-height: 28px;
    font-size: 16px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.wps_right ul li:before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}

.left_image {
    float: left;
    width: 340px;
    margin: 0px 15px 15px 0;
    text-align: center;
}

.left_image .left_centered {
    width: 100%;
    position: relative;
    padding: 0px;
    min-height: 338px;
    overflow: hidden;
    border: 1px solid #eee;
}

.left_image .left_centered .image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 338px;
    transition: transform .5s ease;
}

.left_image .left_centered .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}



.right_image1 {
    float: right;
    width: 340px;
    margin: 0px 0px 15px 15px;
    text-align: center;
}

.right_image1 .left_centered {
    width: 100%;
    position: relative;
    padding: 0px;
    min-height: 338px;
    overflow: hidden;
    border: 1px solid #eee;
}

.right_image1 .left_centered .image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 338px;
    transition: transform .5s ease;
}

.right_image1 .left_centered .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.category_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #f7f7f0;
}

.category_page h1 {
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.category_page .wps_right ul {
    margin: 0 0 25px;
    padding: 0;
}

.category_page .wps_right ul li {
    display: block;
    list-style: none;
    line-height: 24px;
    color: #423f3f;
    font-size: 16px;
    font-weight: normal;
}

.category_page .wps_right ul li:before {
    margin-right: 5px;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='currentColor' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");

}

.product_right_image .read_more_btn {
    max-width: 200px;
    margin: 0 auto;
}

.product_right_image .read_more_btn svg {
    margin-left: 0;
    margin-right: 5px;
}

.product_right_image {
    float: right;
    max-width: 500px;
    width: 100%;
    margin: 0px 0 25px 15px;
    text-align: center;
}

.product_right_image img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.product_right_image .detail_image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 500px;
    /* border: 1px solid #eee; */
    margin-bottom: 15px;
}

.product_right_image .detail_image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.product_right_image .product_dimage {
    width: 100%;
    text-align: center;
    overflow: hidden;
    height: 400px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.more_images {
    float: left;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

#thumbs {
    padding-top: 10px;
    overflow: hidden;
    text-align: center;
}

#thumbs img,
#largeImage {
    padding: 0;
    cursor: pointer;
    border: 1px solid #eee;
}

#thumbs img {
    display: inline-block;
    margin-right: 6px;
    width: 70px;
}

#thumbs img.active {
    border-color: #ac2990;
}

.wps_right h2 {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 3px;
    color: var(--sec);
}

.wps_right h3 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 3px;
    color: var(--sec)
}

.wps_right table {
    margin: 0;
    width: 100%;
}

.wps_right table tbody tr td {
    vertical-align: middle;
    padding: 6px 10px;
    font-size: 16px;
    line-height: normal;
    text-align: left;
}

.wps_right table tbody tr td {
    border: 1px solid #eaeaea;
}

.wps_right table tbody tr td:first-child {
    color: var(--text-color);
    font-weight: 600;
}

.you_may {
    font-size: 24px;
    font-weight: 600;
    color: var(--sec);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.pr-li {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
    transition: 0.2s;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.pr-li:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px;
}

.pr-li .img_bx {
    padding: 0;
    border-right: 1px solid #eee;
    height: 100%;
}

.pr-li .img_bx img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.pr-li .g_100 .img_bx {
    border: 0;
}

.pr-li .tx-bx {
    padding: 15px;
}

.grid.pr_view .pr-li .tx-bx {
    padding-top: 0;
}


.pr-li .tx-bx .title {
    color: var(--text-color);
    border-bottom: 1px solid #eee;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: left;
}

.pr-li .tx-bx .title a {
    color: var(--pri);
}

.grid.pr_view .pr-li .tx-bx .title {
    text-align: center;
    border: none;
    margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
    text-align: center;
}

.pr-li .tx-bx .title a {
    font-size: 20px;
    color: var(--text-color);
    transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
    color: var(--sec);
}

.pr-li .tx-bx .info {
    max-height: 270px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.grid.pr_view .pr-li .tx-bx .info {
    display: none;
}

.pr-li .bt_bx {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
    background-color: #aaa;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.multi-imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-block: 10px;
    border-top: 1px solid #eee;
}

.multi-imgs .imgs {
    border: 1px solid #e3e3e3;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.multi-imgs .imgs.youTube a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--liner);
    background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
    width: 30px;
    height: 30px;
    color: white;
}

.multi-imgs .imgs.active {
    border: 1px solid var(--pri);
}

.multi-imgs .imgs img {
    object-fit: contain;
    object-position: center;
}

.productBrochureandvideo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #cdcdcd;
    padding: 5px 8px;
    font-weight: 400;
    transition: 0.3s;
    font-size: 14px;
    color: var(--para-color);
}

.productBrochureandvideo a svg {
    color: #b90000;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.productBrochureandvideo a:hover {
    color: #444;
    border: 1px dashed #444;
}

.v-btn svg {
    width: 43px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #d5d5d5;
    border-style: solid;
    border-width: 1px;
    padding: 6px 10px;
    font-size: 15px;
}

.padding0 {
    padding: 0;
}

.right-content {
    position: relative;
    padding-right: 15px;
}

.right-content h3 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.right-content h3 a {
    color: var(--tri);
}

.right-content h4 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
}

.right-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.blue-line1 {
    width: 100%;
    display: block;
    height: 1.1px;
    background: #eee;
    position: relative;
    margin-bottom: 10px;
    padding: 0 15px;
}

.product_listing:hover .right-content h3 a {
    color: var(--pri);
}

.product_listing:hover .right-content h4 a {
    color: var(--pri);
}

.right-content .table-responsive {
    float: left;
    width: 100%;
    overflow: hidden;
    max-height: 230px;
    overflow: auto;
    padding-right: 5px;
}

.right-content table {
    margin-bottom: 15px;
}

.right-content table tbody tr td {
    vertical-align: middle;
    padding: 6px 10px;
    font-size: 16px;
    line-height: normal;
    text-align: left;
}

.right-content table tbody tr td {
    border: 1px solid #eaeaea;
    width: 60%;
}

.right-content table tbody tr td:first-child {
    color: var(--tri);
    font-weight: 500;
    width: 40%;
}

.team_member {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0px 3px 5px 0px rgba(210, 210, 210, 0.75);
    transition: all 0.35s ease-in-out;
    border-style: solid;
    border-width: 1px 1px 0px 1px;
    border-color: #eee;
}

.team_member .image {
    width: 100%;
    position: relative;
    padding: 15px 15px 15px 0;
    text-align: center;
    min-height: 268px;
    overflow: hidden;
    border-right: 1px solid #eee;
    display: inline-block;
}

.team_member .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.team_info {
    position: relative;
    padding-right: 15px;
}

.team_info h3 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    margin: 0;
}

.team_info h3 small {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}



/*  Testimonial Page  */

.testimonial_block {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.testimonial_text_box {
    margin: 0 0 30px;
    padding: 32px 20px 35px 0;
    background: #eee;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    display: table;
    position: relative;
    border-radius: 4px;
}

.testimonial_text_box .this-quote {
    margin: 0 20px;
    width: 30px;
}

.testimonial_text_box .this-quote img {
    width: auto;
}

.testimonial_text_box:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    bottom: -25px;
    left: 69px;
    border-top: 25px solid #eee;
    border-right: 25px solid transparent;
}

.testimonial_text_box .this-texts {
    display: table-cell;
    width: calc(100% - 70px);
    vertical-align: top;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

.testimonial_author .media-left {
    padding-right: 20px;
    float: left;
}

.testimonial_author .media-left img {
    border: 1px solid var(--pri);
    border-radius: 4px;
}

.testimonial_author .media-left a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.testimonial_author .media-body {
    vertical-align: middle;
}

.testimonial_author .this-title {
    font-size: 18px;
    color: var(--pri);
    text-align: left;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 0;
}

.testimonial_author .loc {
    color: var(--pri);
    line-height: 20px;
    margin: 0;
}


.gallery_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #eee;
}

.gallery_page .gallery_item {
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 0.98px 0.02px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.gallery_page .gallery_item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.gallery_item_info {
    text-align: center;
    padding: 15px;
}

.gallery_item_info h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
}

.gallery_item_info p {
    font-size: 13px;
    margin: 0;
    margin-top: 4px;
    color: #333;
    max-width: 100%;
}

.hover_effect {
    display: block;
    position: relative;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 376px;
}

.hover_effect:after {
    color: #fff;
    position: absolute;
    font-size: 1.6em;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.hover_effect img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
}

.hover_effect:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    filter: alpha(opacity=60);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: .6;
    -khtml-opacity: .6;
    opacity: .6;
}

.hover_effect:hover img {
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
}

.hover_effect:hover {
    background: var(--pri);
}

.hover_effect:after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='white' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z'/><path d='M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z'/><path fill-rule='evenodd' d='M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5z'/></svg>");
}

.blog_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.blog_page .blog_left h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.blog_page .blogPost {
    margin-bottom: 25px;
    position: relative;
}

.left_title1 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.right_news {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background: #fff;
}

.right_news:last-child {
    margin-bottom: 0;
}

.right_news .image {
    float: left;
    width: 100%;
    margin: 0 0 10px;
    position: relative;
    overflow: hidden;
    height: 274px;
}

.right_news .image img {
    position: absolute;
    max-width: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.right_news .title_h4 {
    padding: 10px;
    line-height: 18px;
    font-size: 15px;
    margin: 0px;
    text-align: left;
}

.right_news .title_h4 a {
    color: #333;
}

.right_news:hover .title_h4 a {
    color: var(--pri);
}



/* New Blog Details Page */
.blog_details {
    float: left;
    width: 100%;
    background: #fff;
}

.blog_details ul {
    display: inline-block;
    margin: 0px 0 20px;
    padding: 0;
}

.blog_details ul li {
    display: inline-block;
    margin-right: 15px;
    list-style: none;
}

.blog_details ul li:before {
    content: none;
    margin: 0;
}

.blog_details ul li a {
    color: #333333;
    transition: all 0.5s ease-out;
}

.blog_details ul li i {
    margin-right: 5px;
}

.blog_details1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog_details_img {
    max-width: 750px;
    margin: 20px auto;
}

.blog_details1 p {
    text-align: justify;
    line-height: 24px;
}

.blog_details1 .block-quote {
    padding: 30px 40px;
    margin-bottom: 20px;
    background: #eee;
    border-left: 3px solid var(--pri);
}

.blog_details1 .block-quote p {
    font-size: 15px;
    line-height: 24px;
}

.blog_details1 h3 {
    margin: 0 0 5px;
    padding: 0;
    line-height: 30px;
}

.blog_details1 ul {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.blog_details1 ul li {
    line-height: 28px;
    font-size: 16px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.blog_details1 ul li:before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}

.fb-comments {
    width: 100%;
}

/* Blog Details  */
.blogdetails img {
    width: 100%;
}

.blog_news .content_details {
    float: left;
    width: 100%;
    background: #eee;
    padding: 20px 20px 20px;
}

.blog_news .content_details h2 {
    text-transform: capitalize;
    line-height: 30px;
    font-size: 20px;
    margin: 0 0 10px;
}

.blog_news .content_details h2 a {
    color: #333333;
    transition: all 0.5s ease-out;
}

.blog_news .content_details ul {
    display: inline;
    margin: 0px;
}

.blog_news .content_details ul li {
    display: inline-block;
    margin-right: 15px;
}

.blog_news .content_details ul li:before {
    content: none;
    margin: 0;
}

.blog_news .content_details ul li i {
    margin-right: 5px;
}

.blog_news .block-quote {
    padding: 30px 40px;
    margin-bottom: 20px;
    background: #fdfdfd;
    border-left: 3px solid #e59509;
}

.blog_news .block-quote p {
    font-size: 15px;
    line-height: 24px;
}

.blog_news .content_details ol {
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.blog_news .content_details ol li {
    list-style: none;
    line-height: 24px;
    color: #423f3f;
    font-size: 15px;
    font-weight: normal;
}

.blog_news .content_details ol li::before {
    content: "\f0da";
    font-family: "FontAwesome";
    margin-right: 5px;
}


.contact_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
}

#contact_form label.error,
.output {
    color: #FB3A3A;
    font-weight: normal;
    margin-bottom: 15px;
}

#quick_form label.error,
.output {
    color: #FB3A3A;
    font-weight: normal;
    margin-bottom: 15px;
}

#quick_enquiry label.error,
.output {
    color: #FB3A3A;
    font-weight: normal;
    margin-bottom: 15px;
}

.pac-container {
    z-index: 100000;
}


.contact_map {
    float: left;
    width: 100%;
    height: 550px;
}

.contact_form_grid1 {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 4px;
    overflow: hidden
}

/*👉.contact_details {
    background: var(--pri);;
    border-radius: 4px 0 0 4px;
    padding: 40px 40px 50px 30px;
}👈*/

.contact_details .title_h2_2 {
    color: var(--pri);
    font-size: 20px;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact_details p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact_details .address_list {
    clear: both;
    margin: 0 0 20px;
    padding: 0;
}

.contact_details .address_list li {
    clear: both;
    list-style: none;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact_details .address_list li svg {
    min-width: 25px;
    height: 25px;
    margin-right: 5px;
}

.contact_details .address_list li a {
    color: #333;
    display: flex;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact_details .address_list li a span {
    font-size: 30px;
    margin-right: 13px;
}

.contact_details .address_list li:first-child {
    display: flex;
    align-items: center;
}

.contact_details .address_list li span {
    font-size: 30px;
    margin-right: 13px;

}

.contact_details .address_list li a:hover,
.contact_details .address_list li a:focus {
    color: var(--pri);
}


.contact_form_grid .form_grid {
    background-color: #ffffff;
    padding: 30px;
}


.form_grid .title_h2_2 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
    color: var(--pri);
}

.contact_form_grid1 ul.social {}

.contact_form_grid1 ul.social li a {
    -ms-transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

.contact_form_grid1 ul.social li a svg {
    -ms-transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

/* Sitemap page */
.sitemap_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #eee;
    position: relative;
}

.sitemap_right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--pri);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.sitemap {
    border-left: 1px solid #666;
    padding: 0;

}

.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
    padding: 0px 0px 0px 15px;
    margin-bottom: 5px;
}

.sitemap li ul {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li a {
    color: #333;
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
}

.sitemap li a:hover {
    color: var(--pri);
}

.market_area h3 {
    float: left;
    display: block;
}

.market_area h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--pri);
}

.market-list {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.sitemap_page .wps_right h2,
.sitemap_page .wps_right h3 {
    margin-block: 10px;
}

.market-list li {
    list-style: none;
    padding-right: 10px;
    line-height: 20px;
    width: 25%;
    float: left;
}

.market-list li:before {
    content: none !important;
    margin-right: 0 !important;
}

.market-list li a {
    width: calc(100% - 10px);
    height: auto;
    padding: 7px 0 7px 12px;
    margin: 0 0 9px;
    display: block !important;
    color: #333 !important;
    font-size: 15px;
    background-color: #ddd;
}

.market-list li a:hover {
    background: var(--pri);
    color: #fff !important;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 41px;
}


/* Products Poup */
.product_popup {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.product_popup_image {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    overflow: hidden;
    position: relative;
    height: 430px;
}

#callback .product_popup_image {
    height: 176px;
}

.product_popup_image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    margin: auto;
}

.product_popup h6 {
    color: var(--pri);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
    padding: 0;
}

.product_popup p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    text-align: left;
    margin-bottom: 15px;
}

#product_enquiry label.error {
    color: #FB3A3A;
    font-weight: normal;
}

.product_right_image .read_more {
    margin-top: 0;
}


.logob {
    border-radius: 14px;
    padding: 5px 5px;
    background-color: #fff;
}

.video_section iframe {
    width: 100%;
    height: 415px;
}


.latest {
    font-size: 26px;
    font-weight: bold;
    color: #0c0c0c;
    margin: 0 0 20px;
}

.webpulse-home_blog h6 span {
    color: var(--pri);
}

.webpulse-home_blog h6 {
    text-transform: uppercase;
}

.feature_height {
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    height: 140px;
}

.thumb {
    text-align: center;
    width: 100%;
    display: inline-block;
    padding: 0px;
}

.fadeImg {
    animation-name: fadeimg;
    animation-duration: 2s;
}

@keyframes fadeimg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 55%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 1px;
    z-index: 2;
    transition: 0.2s ease-in-out;
    background: #fff;
    opacity: 1;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8502e'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8502e'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-next:hover,
.carousel-control-next:focus,
.carousel-control-prev:hover,
.carousel-control-prev:focus {
    opacity: 1;
    background: var(--pri);
}

.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-next:focus .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-prev:focus .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 16px;
    width: 16px;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}



.industry-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.hover {
    overflow: hidden
}

.hover .overlay {
    transform: translate3d(-110%, 0, 0);
    animation-duration: .2s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.hover.mouseenter.top .overlay {
    animation-name: slide--enter-top
}

.hover.mouseenter.right .overlay {
    animation-name: slide--enter-right
}

.hover.mouseenter.bottom .overlay {
    animation-name: slide--enter-bottom
}

.hover.mouseenter.left .overlay {
    animation-name: slide--enter-left
}

.hover.mouseleave.top .overlay {
    animation-name: slide--leave-top
}

.hover.mouseleave.right .overlay {
    animation-name: slide--leave-right
}

.hover.mouseleave.bottom .overlay {
    animation-name: slide--leave-bottom
}

.hover.mouseleave.left .overlay {
    animation-name: slide--leave-left
}

@keyframes slide--enter-top {
    0% {
        transform: translate3d(0, -100%, 0)
    }

    100% {
        transform: none
    }
}

@keyframes slide--enter-right {
    0% {
        transform: translate3d(100%, 0, 0)
    }

    100% {
        transform: none
    }
}

@keyframes slide--enter-bottom {
    0% {
        transform: translate3d(0, 100%, 0)
    }

    100% {
        transform: none
    }
}

@keyframes slide--enter-left {
    0% {
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        transform: none
    }
}

@keyframes slide--leave-top {
    0% {
        transform: none
    }

    100% {
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slide--leave-right {
    0% {
        transform: none
    }

    100% {
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slide--leave-bottom {
    0% {
        transform: none
    }

    100% {
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slide--leave-left {
    0% {
        transform: none
    }

    100% {
        transform: translate3d(-100%, 0, 0)
    }
}

.industry-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0 70px;
    background: #fff
}

.hover {
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--pri);
    text-align: center;
    opacity: .9;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 17px
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown::-webkit-scrollbar-thumb {
    background-color: var(--pri);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}


.certificateBox {
    text-align: center;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.certificateBox .certificateImg {
    position: relative;
}

.certificateBox .certificateImg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--pri);
    z-index: 1;
    transition: .4s;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.certificateBox:hover .certificateImg::before {
    opacity: 0.5;
}

.certificateBox .certificateImg .link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 100%;
    height: 0;
    width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pri);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    transition: .3s linear;
    z-index: 2;
}

.certificateBox:hover .certificateImg .link {
    height: 35px;
    width: 35px;
}

.certificateBox .certificateImg .link:hover {
    color: white;
    background: var(--liner);
    background-color: var(--pri);
}

.certificateBox .certificateContent {
    padding: 10px 0;
    font-weight: bold;
    font-size: 17px;
}

.video-sec {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 50px 0;
    background-color: #f7f7f0;
}

.vidBx .imgBx {
    position: relative;
}

.vidBx .imgBx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    outline: 0;
    transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .txBx {
    text-align: center;
    margin-top: 15px;
    padding-inline: 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.cmTitle {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 3px;
    font-weight: 600;
    color: var(--text-color);
}