@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

:root {
    --blue: #0558a8;
    --dark-blue: #04427b;
    --black: #222;
    --grey: #808080;
    --font: 'Roboto Condensed', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background: #fff;
    color: var(--black);
    font-family: var(--font);
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    color: var(--black);
    margin: 0 0 20px;
    font-weight: bold;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #333;
}

p a {
    color: #333;
    width: auto;
    display: inline-block;
}

p a:hover {
    text-decoration: underline;
    outline: none;
}

p {
    letter-spacing: normal;
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 15px;
    color: #363636;
}

a {
    color: #7f7f7f;
    text-decoration: none;
    outline: none;
    display: block;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

.text-justify {
    text-align: justify !important;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
    width: 100%;
}

blockquote {
    padding: 0;
    border: 0;
}

label {
    color: #7f7f7f;
    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(--blue);
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: none;
}

h2 {
    font-size: 26px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    margin: 0 0 30px;
    font-weight: bold;
    overflow: hidden;
}


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.stricky-fixed .topbar {
    display: none;
}


.header .topbar {
    background: transparent;
}

.header .menu_wrapper {
    background: transparent;
}

.top_right {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.phone_call {
    display: inline-block;
    list-style: none;
    margin: 0 15px;
    padding: 0
}

.phone_call a,
.phone_call span {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.phone_call svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle
}

.phone_call a:hover,
.phone_call span:hover {
    color: var(--blue);
}

ul.social {
    float: left;
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

.topbar ul.social {
    float: right;
}

ul.social li {
    margin: 0px 0 0 3px;
    display: inline-block;

}

ul.social li a {
    transition: background 0.2s ease-in-out;
    text-align: center;
    width: 45px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--blue);
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);

}

ul.social li a:hover {
    background: var(--dark-blue);
}

ul.social li a svg {
    color: #fff;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
}


.search {
    max-width: 330px;
    width: 100%;
    margin: 0 0px;
    margin-left: auto;
    padding: 0;
    position: relative;
}

.search:before {
    border-bottom: 40px solid #08317b;
    border-left: 26px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    left: -30px;
    width: 30px;
    top: 0;
    bottom: 0;
}

.search input.form-control {
    height: 40px;
    background: #08317b;
    color: #fff;
    border: 0;
    width: 95%;
    border-radius: 0;
    outline: 0;
}

.search input.form-control::-moz-placeholder {
    color: #fff;
}

.search_btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 15px;
    line-height: 40px;
    background: var(--blue);
    color: #fff;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    height: 40px;
    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: #ff5460;
}



.navbar .phone_call {
    margin: 10px 0;
}

.navbar .phone_call a {
    color: #fff;
}

.navbar .phone_call a:hover,
.navbar .phone_call a:focus {
    color: var(--blue);
}

.header .navigation {
    float: right;
    width: 100%;
    position: relative;
    background: #fff;
}

.header .navigation:after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-right: 20px solid transparent;
    border-top: 61px solid #fff;
}

.header .navigation::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    border-left: 20px solid transparent;
    border-bottom: 61px solid #fff;
}

.header .logo {
    max-width: 170px;
}

.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(--blue);
    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(--blue);
    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: right;
    display: block;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative
}

.navigation .menu ul li a {
    padding: 18px 12px;
    display: block;
    color: var(--grey);
    transition: all 0.3s ease;
    font-size: 17px;
    background: transparent;
    font-weight: 700;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--blue);
    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(--blue);
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: #fff;
    background: var(--blue);
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: #fff;
    color: var(--grey);
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--blue)
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: var(--grey);
    font-size: 14px;
    padding: 7px 15px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    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: var(--grey);
}

.navigation ul li.cs-submenu a button svg {
    width: 16px;
    height: 16px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--blue);
}

.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;
}

.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;
    width: 280px;
    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;
}

.navigation .menu ul>li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

/*.navigation .menu ul > li:nth-child(3) ul.cs-dropdown {
    width: 520px
}

.navigation .menu ul > li:nth-child(3) ul.cs-dropdown li {
    display: inline-block;
    width: 50%;
    float: left;
    position: relative;
}

.navigation .menu ul > li:nth-child(3) ul.cs-dropdown li:nth-child(even) {
    border-left: 1px solid #eee;
}*/

/* banner */
.home_slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative
}

.home_slider #slider {
    overflow: hidden;
    width: 100%
}

.slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    width: 100%;
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgb(126 174 217 / 30%);
}

#slider .slide ._silcap {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 1100px;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

#slider .slide ._silcap ._btgr {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#slider .slide ._silcap ._tt {
    font-size: 35px;
    color: var(--blue);
    font-weight: bolder;
    text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
    animation-delay: 0.4s;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#slider .slide ._silcap ._btgr {
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 1.4s;
}

#slider .owl-item:nth-child(3n + 3).active ._tt,
#slider .owl-item:nth-child(3n + 3).active p,
#slider .owl-item:nth-child(3n + 3).active ._btgr {
    animation-name: fadeInLeft;
}

#slider .owl-item:nth-child(3n + 1).active ._tt,
#slider .owl-item:nth-child(3n + 1).active p,
#slider .owl-item:nth-child(3n + 1).active ._btgr {
    animation-name: fadeInRight;
}

#slider .owl-item:nth-child(3n + 2).active ._tt {
    animation-name: fadeInDown;
}

#slider .owl-item:nth-child(3n + 2).active p {
    animation-name: fadeInUp;
}

#slider .owl-item:nth-child(3n + 2).active ._btgr {
    animation-name: fadeInUp;
    animation-delay: 1.4s;
}

#slider .slide ._silcap p {
    color: #000;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 15px;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.9s;
}


#slider .slide ._silcap .btn-1,
#slider .slide ._silcap .btn-2 {
    padding: 10px 12px;
    border-radius: 2px;
    color: white;
    font-size: 15px;
    min-width: 120px;
    transition: 0.3s;
}

#slider .slide ._silcap .btn-1 {
    border: 1px solid var(--blue);
    background: var(--blue);
}

#slider .slide ._silcap .btn-2 {
    border: 1px solid var(--blue);
    color: var(--blue);
}


#slider .slide ._silcap .btn-1:hover,
#slider .slide ._silcap .btn-2:hover {
    background: white;
    color: var(--blue);
    border-color: white;
}

.home_slider .slide img {
    width: 100%;
    max-width: 100%;
}

#slider .owl-prev,
#slider .owl-next {
    line-height: 0;
    position: absolute;
    top: 55%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: var(--blue);
    border: 0;
    outline: 0;
    background: #fff;
    z-index: 9;
    border-radius: 2px;
}

#slider .owl-prev svg,
#slider .owl-next svg {
    height: 18px;
    width: 18px;
}

#slider .owl-nav .owl-prev {
    left: 40px;
}

#slider .owl-nav .owl-next {
    right: 40px;
}

#slider .owl-prev:hover,
#slider .owl-next:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

#slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.title_1 {
    float: left;
    width: 100%;
    color: var(--blue);
    font-size: 28px;
    font-weight: 700;
    display: block;
    padding-bottom: 14px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.title_1 span {
    color: var(--black);
}

.title_1:before {
    content: '';
    background: var(--blue);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 60px;
    height: 3px;
    margin: 0 auto;
    border-radius: 4px;
}

.title_2 {
    float: left;
    width: 100%;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.title_2 span {
    color: var(--blue);
}

.title_2:before {
    content: '';
    background: var(--blue);
    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(--blue);
    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(--blue);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    margin: 0;
}

.tx-pri {
    color: var(--blue) !important;
}

._us {
    float: left;
    width: 100%;
    padding: 50px 0;
    margin: 0;
    background: #eee;
    overflow: hidden;
    position: relative;
    z-index: 1
}

._us .heading-sec ._hdtt::before{
    content: none;
}

._us .heading-sec ._hdtt{
    padding-bottom: 0;
}

._us .list-style-one {
    margin: 0;
    padding: 0;
}


._us .list-style-one li {
    position: relative;
    color: var(--grey);
    list-style: none;
}

._us .list-style-one li span {
    position: relative;
    color: var(--blue);
    list-style: none;
}

._us .list-style-one li span svg {
    height: 15px;
    width: 15px;
    margin-right: 5px;
}

._us ._usbx {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 20px 25px;
    gap: 15px;
    border-radius: 3px;
    transition: 0.3s;
    margin-top: 20px;
    box-shadow: 1px 1px 8px -5px #00000060;
    height: calc(100% - 20px);
}

._us ._usbx:hover {
    transform: translateY(-8px);
    box-shadow: 1px 3px 8px -3px #00000060;
}

._us ._usbx ._icbx {
    width: 100px;
}

._us ._usbx p {
    margin-bottom: 0;
    color: var(--grey);
    line-height: 20px;
    font-size: 14px;
}

._us ._usbx ._hebx ._hett {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.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: 20px;
    line-height: 28px;
    padding: 20px 0 10px;
    margin: 0;
    color: var(--blue);
}

.offer-colm p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

.offer-colm {
    text-align: center;
    border-right: 1px solid #d3d3d3;
    padding: 15px;
}

.home_featured {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 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;
    z-index: 1;
}

.home_featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 89, 168, 0.4);
    ;
    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(--blue);
    border-radius: 3px;
    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: #eee;
    color: var(--dark-blue);
}

#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;
    border-radius: 3px;
}

.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;
    height: 285px;
}

.featuredBlock .image-box .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

.featuredBlock .caption-box {
    position: relative;
    padding: 10px 20px;
    padding-right: 50px;
    background-color: #eee;
    border-top: 1px solid #ebebeb;
    border-top: 0;
}

.featuredBlock .caption-box .icon {
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    background-color: var(--blue);
    color: #ffffff;
    height: 50px;
    width: 50px;
    line-height: 50px;
}

.featuredBlock .caption-box .icon svg {
    width: 20px;
    height: 20px;
}

.featuredBlock:hover .caption-box .icon {
    background: var(--blue)
}

.featuredBlock .caption-box .title_h3 {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 30px;
    color: #333333;
    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(--blue);
}

.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(--blue);
    content: "";
    opacity: .70;
}

.featuredBlock .overlay-box:after {
    position: absolute;
    bottom: 40px;
    left: 0;
    height: 1px;
    width: 90%;
    background-color: var(--blue);
    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(--blue);
    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(--blue);
}

.featuredBlock .overlay-box .link-box a svg {
    margin-left: 5px;
    width: 24px;
    height: 24px;
}

.welcomeAbout {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.heading-sec {
    text-align: center;
    margin-bottom: 30px;
}

.heading-sec ._hdbtn {
    font-size: 14px;
    padding: 5px 10px;
    background-color: var(--blue);
    color: white;
    display: inline-block;
    border-radius: 3px;
    margin-bottom: 10px;
    display: none;
}

.heading-sec ._hdtt {
    font-weight: bold;
    font-size: 30px;
    color: var(--black);
    line-height: normal;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.heading-sec ._hdtt::before {
    content: "";
    width: 70px;
    height: 3px;
    position: absolute;
    background: var(--blue);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.welcomeAbout ._rigSec {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 520px;
    margin-bottom: 100px;
    float: left;
    margin-right: 45px;
}

.welcomeAbout ._rigSec ._img1 {
    padding-left: 70px;
}

.welcomeAbout ._rigSec ._img2 {
    width: 70%;
    bottom: -100px;
    position: absolute;
    padding: 15px;
    background-color: white;
    z-index: 1;
}

.welcomeAbout ._rigSec::after {
    content: "";
    position: absolute;
    background: var(--blue);
    width: 18px;
    height: 300px;
    left: 15px;
    top: 0;
}

.welcomeAbout ._cn_bx .mini-title {
    padding-left: 70px;
    display: inline-block;
    font-size: 18px;
    position: relative;
    margin-bottom: 15px;
    color: var(--blue);
}

.welcomeAbout ._cn_bx .mini-title:before {
    content: "";
    height: 1px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 10px;
    background: var(--blue);
}

.welcomeAbout ._cn_bx .mini-title:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 50px;
    background: var(--blue);
    left: 9px;
    bottom: 14px;
}

.welcomeAbout ._cn_bx h1 {
    line-height: normal;
    font-size: 30px;
    margin-bottom: 15px;
}

.welcomeAbout ._cn_bx h2,
.welcomeAbout ._cn_bx h3 {
    line-height: normal;
    font-size: 28px;
    margin-bottom: 15px;
}

.welcomeAbout ._cn_bx p {
    text-align: justify;
}

.read_more_btn {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 42px;
    padding: 0px 25px;
    letter-spacing: normal;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    transition: all 0.5s;
    background: var(--blue);
    border: 0;
    outline: 0;
}

.read_more_btn svg {
    width: 20px;
    height: 20px;
    margin-left: auto;
}

.read_more_btn:hover {
    background: var(--dark-blue) !important;
    color: #fff;
}


.webpulse_home_product {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 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;
}

.webpulse_home_product:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.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(--blue);
    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(--blue);
    color: #fff;
    border-color: var(--blue)
}

#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;
    height: 282px;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
}

.productBlock .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
}

.productBlock .productInfo {
    padding: 10px 10px;
}

.productBlock .productInfo .title_h3 {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 17px;
    color: #333;
    text-align: center;
    position: relative;
    height: 60px;
}

.productBlock .productInfo .title_h3 a {
    color: #333;
}

.productBlock .productInfo .title_h3 a span {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.productBlock:hover .productInfo .title_h3 a {
    color: var(--blue);
}

.testimonials_section {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #1C1C1C;
    background-size: cover;
    background-position: center;
    background-image: url(../images/bg3.png);
}

.testimonials_section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 270px;
    background: #eee;
    z-index: -1;
}


.testimonialItem {
    padding-left: 20px;
    padding-right: 10px;
}

.testimonialsText {
    padding: 30px;
    padding-left: 50px;
    border: 1px solid #efefef;
    position: relative;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 3px;
}

.testimonialsText span {
    position: absolute;
    width: 50px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    top: 40px;
    left: -18px;
    background: var(--blue);
    color: #fff;
}

.testimonialsText span svg {
    width: 30px;
    height: 30px;
}

.testimonialsText span:after {
    position: absolute;
    content: '';
    border-bottom: 9px solid #03173c;
    border-right: 9px solid #03173c;
    border-left: 9px solid transparent;
    border-top: 9px solid transparent;
    bottom: 100%;
    left: 0;
}

.testimonialsText p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
}

.userInfo {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.userInfo ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.userInfo ul li {
    float: left;
    margin-right: 10px;
    list-style: none;
}

.userInfo ul li img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.userInfo ul li span {
    margin: 0;
    color: #eee;
}

.userInfo ul li .userName {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    margin: 0px;
    padding: 0;
    font-weight: 600;
    display: block;
}

.webpulse-home_blog {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #eee;
}

.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(--blue);
}

.blogPost .postDate:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 10px solid transparent;
    bottom: -9px;
    right: 0;
    border-right: 10px solid var(--blue);
}

.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(--blue);
}

.blogPost:hover .postInfo .title_h4 a {
    color: var(--blue);
}

.blogPost .postInfo .read_more_btn {
    line-height: 40px;
    max-width: 150px;
    padding: 0 20px;
}

.webpulse_home_clients {
    float: left;
    width: 100%;
    margin: 0;
    padding: 55px 0;
    background: #fff;
}



.webpulse_home_clients .clients {
    border: 1px solid #ddd;
    max-width: 100%;
    background: #fff;
    margin-bottom: 26px;
    position: static;
    opacity: 1;
    margin: 0px;
    transition: opacity 0.3s ease;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.webpulse_home_clients .item .image {
    position: relative;
    padding: 15px 10px 0px;
    text-align: center;
    min-height: 90px;
    max-height: 100px;
    overflow: hidden;
    border-radius: 3px;
}

.webpulse_home_clients .item .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.webpulse_home_clients .owl-carousel .owl-dots {
    margin-top: 15px;
}

.faq_section {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #eee;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 4px !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(--blue);
    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(--blue);
}

.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;
    margin-bottom: 0;
}


.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(--blue);
    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(--blue);
    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(--blue);
    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(--blue);
    border-color: var(--blue);
    text-decoration: none;
}

footer {
    float: left;
    width: 100%;
    padding: 50px 0px;
    background: #0f0f0f;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

footer .title_h5 {
    float: left;
    width: 100%;
    font-size: 22px;
    text-align: left;
    color: #fff;
    margin-bottom: 10px;
}

footer .title_h5 span {
    color: var(--blue);
}

footer p {
    float: left;
    width: 100%;
    color: #fff;
}

footer p a {
    float: left;
    color: #fff;
}

footer p a:hover {
    color: var(--blue);
}

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: 7px;
}

.contact li a {
    color: #fff;
    display: inline-block;
}

.contact li a:hover {
    color: var(--grey);
}

.come_with_us {
    color: #fff;
    margin: 10px 0;
    font-size: 16px;
}

.come_with_us svg {
    color: var(--blue);
    margin-right: 10px;
}

.come_with_us a {
    color: var(--blue);
    text-decoration: underline;
    display: inline-block;

}

.come_with_us a:hover {
    color: var(--blue);
}

footer ul.social li a {
    -ms-transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    border-radius: 3px;
    height: 42px;
    width: 42px;
}

footer ul.social li a:hover {
    background: var(--dark-blue);
}

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(--grey);
}

.copyright {
    float: left;
    width: 100%;
    background: var(--dark-blue);
    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(--grey);
    text-decoration: none;
}

.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: 9999;
    transition: all 0.6s;
    background: var(--blue);
    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: 45px;
    height: 45px;
    color: #fff;
    position: fixed;
    left: 15px;
    bottom: 85px;
    cursor: pointer;
    z-index: 999;
    border-radius: 2px;
    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: 2px;
    bottom: 30px;
    color: #ffffff;
    display: table;
    height: 45px;
    left: 15px;
    min-width: 45px;
    position: fixed;
    text-align: center;
    z-index: 9999;
    transition: all 0.2s linear;
    background: var(--blue);
    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);
}

.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(--blue);
    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: cover;
    background-position: center;
    padding: 190px 0 70px;
    margin: 0;
    background-repeat: no-repeat;
}

.heading_banner:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 53 105 / 30%);
    top: 0;
    left: 0;
    z-index: 0;
    content: '';
}

.heading_banner .container {
    position: relative;
    z-index: 9;
}

.heading_banner h1 {
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

.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: var(--blue);
    border-radius: 2px;
}

.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: bold;
    text-transform: uppercase;
    color: #666;
    float: left;
    line-height: 55px;
}

.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(--blue);
}

.inner_breadcrumb .breadcrumb li+li:before {
    content: "/";
    color: #fff;
    padding: 0 14px;
}

.inner_breadcrumb .breadcrumb li+li:before {
    float: left;
    padding: 20px 10px;
    color: #bfbfbf;
}

.title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--blue);
    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(--blue);
    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(--blue);
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}


.left_sidebar ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--blue);
}

.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(--blue);
    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(--blue);
    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(--blue);
    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(--blue);
    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(--blue);
    font-weight: 600;
}

.right_side h3 {
    padding: 0px;
    margin: 10px 0 5px;
    line-height: 30px;
    font-size: 20px;
    color: var(--blue);
    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%;
    border-radius: 4px;
}



.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: #fff;
}

.category_page h1 {
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--blue);
    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;
    font-size: 15px;
}

.product_right_image .read_more_btn svg {
    margin-left: 5px;
}

.product_right_image {
    float: right;
    max-width: 450px;
    width: 100%;
    margin: 0px 0 25px 25px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.product_right_image .detail_image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 450px;
    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: 10px;
    color: var(--blue);
}

.wps_right h3 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--blue)
}

.wps_right table {
    margin: 0;
}

.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;
    width: 60%;
}

.wps_right table tbody tr td:first-child {
    color: var(--blue);
    font-weight: 500;
    width: 40%;
}

.interested_section {
    float: left;
    width: 100%;
    text-align: center;
    margin: 20px 0
}

.interested_section .interested_btn {
    font-size: 18px;
    color: #fff;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 3px;
    padding: 12px 0;
    width: 258px;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
}

.interested_section .interested_btn svg {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.interested_section .interested_btn:hover {
    background: var(--blue);
    color: #fff;
    border: 1px solid var(--blue)
}

.product_listing {
    float: left;
    width: 100%;
    margin-bottom: 25px;
    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;
}

.product_listing .product {
    width: 100%;
    position: relative;
    padding: 0;
    text-align: center;
    min-height: 200px;
    overflow: hidden;
    border-right: 1px solid #eee;
    display: inline-block;
}

.product_listing .product .image1 {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 374px;
    transition: all 0.4s ease-in-out;
    margin-bottom: 10px;
}

.product_listing .product .image1 img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.product_listing .product .small {
    padding-top: 10px;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product_listing .product .small img,
.product_listing .product .largeImage img {
    padding: 0;
    cursor: pointer;
    border: 1px solid #eee;
}

.product_listing .product .small .item {
    display: inline-block;
    margin-right: 6px;
    width: 60px;
    cursor: pointer;
}

.product_listing .product .small .item:last-child {
    margin: 0;
}

.product_listing .product .small .item.active {
    border-color: var(--blue);
}

.product_listing .product .small .item.youtube {
    width: 60px;
    height: 60px;
    background: #f70000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_listing .product .small .item.youtube a {
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube svg {
    width: 40px;
    height: 40px;
}



.product_listing .product p {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px;
}

.product_listing .product .read_more {
    margin-top: 0;
}

.product_listing .right-content .read_more_btn {
    margin-top: 10px;
    max-width: 205px;
    display: inline-block;
}

.product_listing .right-content .read_more_btn:last-child {
    background: var(--blue);
}

.product_listing .right-content .read_more_btn svg {
    margin-left: 6px;
}

.product_listing .right-content .read_more_btn.callback {
    max-width: 240px;
    background: var(--blue);
}

.product_listing .right-content .read_more_btn.callback:hover,
.product_listing .right-content .read_more_btn.callback:focus {
    background-color: #1048af;
}

.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(--blue);
}

.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(--blue);
}

.product_listing:hover .right-content h4 a {
    color: var(--blue);
}

.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(--blue);
    font-weight: 500;
    width: 40%;
}

.you_may {
    float: left;
    width: 100%;
    padding: 0 0 10px;
    margin: 0 0 15px;
    line-height: 30px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.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(--blue);
    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(--blue);
    text-align: left;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 0;
}

.testimonial_author .loc {
    color: var(--blue);
    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;
    overflow: hidden;
    border-radius: 4px;
}

.gallery_page .gallery_item img {
    display: block;
    width: 100%;
    border-radius: 2px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.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: 500px;
}

.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(--blue);
}

.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(--blue);
    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(--blue);
    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(--blue);
}



/* 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_details1 img {
    margin-bottom: 15px;
}

.blog_details_img {
    width: 100%;
    text-align: center;
    height: 500px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog_details_img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0 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(--blue);
}

.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(--blue);;
    border-radius: 4px 0 0 4px;
    padding: 40px 40px 50px 30px;
}👈*/

.contact_details .title_h2_2 {
    color: var(--blue);
    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(--blue);
}


.contact_form_grid .form_grid {
    background-color: #ffffff;
    padding: 30px;
}

.contact_form_grid1 .form_grid {
    background-color: #ffffff;
}

.form_grid .title_h2_2 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
    color: var(--blue);
}

.contact_form_grid1 ul.social {}

.contact_form_grid1 ul.social li a {
    -ms-transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    border-radius: 4px;
}

.contact_form_grid1 ul.social li.facebook a {
    background: #3C5B9B;
}

.contact_form_grid1 ul.social li.twitter a {
    background: #359BED;
}

.contact_form_grid1 ul.social li.youtube a {
    background: #f70000;
}

.contact_form_grid1 ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.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(--blue);
    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(--blue);
}

.market_area h3 {
    float: left;
    display: block;
}

.market_area h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--blue);
}

.market-list {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.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: 91%;
    height: auto;
    padding: 10px 0 10px 12px;
    margin: 0 0 9px;
    display: block !important;
    color: #333 !important;
    font-size: 14px;
    background-color: #ddd;
}

.market-list li a:hover {
    background: var(--blue);
    color: #fff !important;
}


/* 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: 100%;
    margin: auto;
}

.product_popup h6 {
    color: var(--blue);
    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;
    font-family: var(--font);
    color: #0c0c0c;
    margin: 0 0 20px;
}

.webpulse-home_blog h6 span {
    color: var(--blue);
}

.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;
    }
}

._team_card{
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15) ;
    border-radius: 4px;
    overflow: hidden;
    border-bottom: 4px solid var(--blue);
    transition: 0.6s ;
    margin-bottom: 20px;
    height: calc(100% - 20px);
}

._team_card:hover{
    transform: translatey(-12px);
}

._team_card ._img-bx{
    position: relative;
}

._team_card ._img-bx svg{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    fill: white;
}

._team_card ._team_des{
    padding: 10px 15px;
}

._team_card ._team_des blockquote{
    fill: var(--blue);
    margin-bottom: 10px;  
}

._team_card ._team_des blockquote svg{
width: 18px;
height: 18px;
}

._team_card ._team_ft{
    padding: 10px 15px;
    background: #f3f3f3;
    border-top: 1px solid #eee;
}

._team_card ._team_ft ._team_nam,
._team_card ._team_ft ._team_post{
    line-height: normal;
}

._team_card ._team_ft ._team_nam{
    font-weight: bold;
    color: var(--blue);
    font-size: 16px;
}
._team_card ._team_ft ._team_post{
    color: var(--grey);
    font-size: 14px;
}

._team_card ._team_des ul {
    margin-bottom: 0px;
}

._team_card ._team_des ul li{
    display: list-item;
    list-style: none;
    line-height: normal;
    font-size: 15px;
    color: var(--grey);
}

._team_card ._team_des ul li span{
    font-weight: 500;
    color: var(--black);
}

._team_card ._team_des ul li::before {
    content: none;
}

.manufacturing_page{
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #eee;
}

.manufacturing_page .unit-bx {
    box-shadow: 0 3px 10px 0 rgba(0, 41, 81, 0.1);
    overflow: hidden;
    border-radius: 4px;
    transition: 0.4s;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--blue);
}

.manufacturing_page .unit-bx:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px -2px rgba(0, 41, 81, 0.1);
}

.manufacturing_page .unit-des{
    margin: 0;
    padding: 15px 20px;
}

.manufacturing_page .unit-des li{
    color: var(--black);
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.manufacturing_page .unit-des li::before{
    content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 13px;
	height: 13px;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='check-circle' class='svg-inline--fa fa-check-circle fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%230558a8' d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'></path></svg>");
}


.manufacturing_page .unit-des li span{
    color: var(--grey);
}

.manufacturing_page .head {
    padding: 10px 20px;
    background: var(--blue);
    color: white;
    font-size: 17px;
    line-height: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
}