@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --fontFamily: 'Roboto', sans-serif;
    --darkColor: #013277;
    --blueDarkMore: #fde375;
    --blueColor: #013277;
    --textColor: #333;
    --colorWhite: #fff;
    --blueBorderColor: #fde375;
    --facebook: #3C5B9B;
    --twitter: #2b2b2b;
    --linkedin: #027ba5;
    --youtube: #f70000;
    --instagram: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    --textSize: 15px;
    --paraText: 14px;
    --smallSize: 13px;
    --headingOne: 30px;
    --headingTwo: 24px;
    --headingThree: 20px;
    --headingFour: 18px;
    --headingFive: 16px;
    --headingSix: 16px;
    --whiteBorderColor: #eee;
    --orageColor: #fd982a;
    --greyColor: #666;
    --offWhiteColor: #f5f5f5;
    --errorColor: #dc3545;

}

body {
    line-height: 30px;
    font-family: var(--fontFamily);
    font-size: var(--textSize);
    color: var(--textColor);
    font-weight: 400;
    overflow: hidden;
    overflow-y: scroll;
}

p a {
    color: var(--textColor);
    width: auto;
    display: inline-block
}

p a:hover {
    text-decoration: underline;
    outline: 0
}

p {
    line-height: 24px;
    font-size: var(--textSize);
    color: var(--textColor);
    /* text-align: justify; */
    font-weight: 400
}

a {
    color: var(--textColor);
    text-decoration: none;
    outline: 0;
    display: block
}

a:hover,
a:focus,
a:active {
    outline: 0;
    text-decoration: none;
    color: var(--color);
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
    width: 100%
}

blockquote {
    padding: 0;
    border: 0
}

h1 {
    font-size: var(--headingOne);
    margin: 0;
}

h2 {
    font-size: var(--headingTwo);
    margin: 0
}

h3 {
    font-size: var(--headingThree);
    margin: 0
}

h4 {
    font-size: var(--headingFour);
    margin: 0
}

h5 {
    font-size: var(--headingFive);
    margin: 0
}

h6 {
    font-size: var(--textSix);
    margin: 0
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: var(--paraText);
    font-weight: 400;
    line-height: 1.5;
    color: var(--textColor);
    background-color: var(--colorWhite);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    height: 40px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

textarea.form-control {
    height: 100px;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.text-orange {
    color: #fd982a !important;
}

.header {
    float: left;
    background: var(--colorWhite);
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.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;
    animation-fill-mode: both;
    background: var(--colorWhite);
    padding: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.header .topBar {
    float: left;
    width: 100%;
    position: relative;
    background: #545454;
    font-size: 13px;
}

/* .header .topBar:before,
.header .topBar:after {
    position: absolute;
    content: '';
    background-color: var(--colorWhite);
}

.header .topBar:before {
    bottom: -1px;
    right: 0;
    height: 25px;
    width: calc(50% - 610px);
    border-top: 1px solid var(--darkColor);
}

.header .topBar:after {
    bottom: -22px;
    width: 38px;
    height: 38px;
    transform: rotate(52deg);
    right: calc(50% - 570px - 55px);
    border-left: 1px solid var(--darkColor);
} */

/* .header .topBar .container {
    position: relative;
}

.header .topBar .container:before {
    position: absolute;
    content: '';
    background-color: var(--colorWhite);
    border-top: 1px solid var(--darkColor);
    bottom: -1px;
    left: 0px;
    height: 25px;
    width: 175px;
} */

.header .topBar .container p {
    font-size: var(--paraText);
    color: var(--colorWhite);
    margin: 0;
    padding: 0;
    line-height: 35px;
}

.header .topBar .topRight {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.topSocial {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
}

.topSocial li {
    margin: 0px 0 0 3px;
    display: inline-block;
}

.topSocial li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorWhite);
}

.topSocial li a svg {
    color: var(--colorWhite);
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}

.topSocial li.facebook a {
    background: var(--facebook);
}

.topSocial li.twitter a {
    background: var(--twitter);
}

.topSocial li.linkedin a {
    background: var(--linkedin);
}

.topSocial li.youtube a {
    background: var(--youtube);
}

.topSocial li.instagram a {
    background: var(--instagram);
}

.header .topBar .topRight .searchForm {
    float: left;
    width: 70%;
    margin: 3px 0;
    padding: 0;
    position: relative;
    z-index: 9;
}

.header .topBar .topRight .searchForm .searchInput {
    width: 100%;
    line-height: 30px;
    background: var(--colorWhite);
    border: 0;
    font-size: var(--paraText);
    height: 30px;
    padding: 0 12px;
    border-radius: 2px;
}

.header .topBar .topRight .searchForm .searchInput:focus-visible {
    outline: 0;
}

.header .topBar .topRight .searchForm .searchBtn {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    border: 0;
    line-height: 30px;
    padding: 0px;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orageColor);
    color: var(--colorWhite);
    border-radius: 0 3px 3px 0;
}

.header .topBar .topRight .searchForm .searchBtn:hover,
.header .topBar .topRight .searchForm .searchBtn:focus {
    background: var(--blueBorderColor);
    color: var(--colorWhite);
}

.header .navigation {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-left: auto;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}

.header .navigation .logo {
    position: relative;
    width: 275px;
}

/* 
.header .navigation .logo:before,
.header .navigation .logo:after {
    position: absolute;
    content: '';
    background-color: var(--colorWhite);
    width: 38px;
    height: 38px;
    top: -17px;
    z-index: 1;
} */

/* .header .navigation .logo:before {
    transform: rotate(50deg);
    border-left: 1px solid var(--darkColor);
    right: calc(100% - 35px);
} */

/* .header .navigation .logo:after {
    transform: rotate(-50deg);
    border-right: 1px solid var(--darkColor);
    left: calc(100% + -30px);
} */

.header .navigation .logo a {
    position: relative;
    z-index: 2;
}

/* .header .navigation .logo a::before {
    position: absolute;
    content: '';
    background-color: var(--colorWhite);
    border-top: 1px solid var(--darkColor);
    top: -25px;
    left: 19px;
    height: 25px;
    width: 177px;
    margin: 0 auto;
    z-index: 0;
} */

.header .navigation .logo a img {
    /* margin-top: -10px;
    margin-left: -10px; */
    position: relative;
    z-index: 1;
    width: 100%;
}

.navigation .navbar button {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--colorWhite);
    font-size: var(--headingTwo);
    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(--textColor);
    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 .container {
    position: relative;
    /* max-width: 1200px; */
}

.navigation .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navigation .menu ul {
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    justify-content: end;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative
}

.navigation .menu ul li a {
    padding: 24px 13px;
    display: block;
    color: var(--textColor);
    transition: all 0.3s ease;
    font-size: 16px;
    background: transparent;
    font-weight: 500;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--orageColor);
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: -65%;
    text-align: left;
    border: 0;
    position: absolute;
    width: 295px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: var(--colorWhite);
    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 {
    transition: all .3s ease;
    /* width: 240px; */
}



.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.navigation .menu .cs-dropdown li:first-child a {
    border-top: 0
}

.navigation .menu ul>li>ul.cs-dropdown>li a:hover {
    color: var(--colorWhite);
    background: var(--blueColor);
}


/* .navigation .menu ul >li ul.cs-dropdown >li:hover a {
    color: var(--colorWhite);
    background: var(--blueColor);
} */

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    color: var(--textColor);
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: var(--colorWhite);
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: var(--textColor);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 10px;
    line-height: normal;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    background: transparent;
    transition: all 0.3s ease;
    border-bottom: 1px solid #62739924;
}

.navigation ul li ul li.cs-submenu a:hover button svg {
    color: #fff !important
}

.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: var(--textColor);
}

.navigation ul li.cs-submenu a button svg {
    width: 10px;
    height: 10px;
}

.navigation>ul>li.cs-submenu a:hover button svg {
    color: #ffc773 !important;
}

.navigation>ul>li.cs-submenu:hover svg {
    color: var(--orageColor) !important;
}

.navigation ul>li.cs-submenu:hover>ul.cs-dropdown>li.cs-submenu svg {
    color: var(--textColor);
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: var(--textColor);
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
    color: #333;
}

/* .navigation ul >li.cs-submenu >ul.cs-dropdown >li.cs-submenu:hover svg {
    color: var(--colorWhite);
} */

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.navigation .menu ul li ul.cs-dropdown li ul {
    top: 0px;
    right: 0px;
}

.navigation .menu ul li ul.cs-dropdown li ul {
    display: none;
}

.navigation .menu ul li ul.cs-dropdown li ul {
    top: 0px;
    left: 100%;
}

.navigation .menu ul li ul li {
    width: 100%;
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    display: none;
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block;
}

.homeIcon svg {
    width: 26px;
    height: 26px;
}

header .topSocial li a {
    /* color: #013277 !important;
    background: #fff !important; */
    border-radius: 5px;
    border: 1px solid #dddddd61;
}

header .topSocial li a svg {
    color: #fff;
}

.requestBtn {
    padding: 10px 25px;
    background: var(--blueColor);
    border-radius: 4px;
    border: 1px solid var(--blueBorderColor);
    color: var(--colorWhite);
    font-size: var(--textSize);
    line-height: normal;
    width: auto;
    text-align: center;
    display: inline-block;
    margin-left: 25px;
}

.requestBtn:focus,
.requestBtn:hover {
    background: #edac15;
    color: var(--colorWhite);
    border-color: #edac15
}


.sliderSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.homeSlider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border: 1px solid var(--blueBorderColor);
    line-height: 0;
    position: absolute;
    top: 48%;
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background: #2D2D2D;
    border-radius: 100%;
    z-index: 9
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    display: none;

}

.carousel-caption {
    position: absolute;
    right: 0%;
    bottom: 0;
    left: -1%;
    padding-top: 1.25rem;
    z-index: 9;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
    top: 0px;

    /* justify-content: center; */
}

.homeSlider .swiper-button-prev {
    left: 20px;
    right: auto
}

.homeSlider .swiper-button-next {
    left: auto;
    right: 20px;
}

.homeSlider .swiper-button-prev:hover,
.homeSlider .swiper-button-next:hover {
    background: var(--orageColor);
    border-color: var(--orageColor);
    color: var(--colorWhite);
}

.carousel-inner .slide::before {
    content: "";
    background: #00000056;
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* .homeSlider .swiper-slide img {
    width: 100%;
    max-width: 100%;
    transition: 3s all;
    transform: scale(1);
}

.homeSlider .swiper-slide-active img {
    animation: scale 8s ease forwards;
} */

/* @keyframes scale {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
} */

/* .homeSlider .swiper-slide .bannerInfo {
    position: absolute;
    top: 0;
    left: 12%;
    height: 100%;
    max-width: 45%;
    width: 100%;
    display: flex;
    align-items: center;

} */

.homeSlider .swiper-slide .bannerInfo.rightAlign {
    top: 0;
    left: auto;
    right: 12%;
}

.homeSlider .swiper-slide .bannerInfo .sliderTag {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    background: var(--orageColor);
    color: var(--colorWhite);
    padding: 3px 15px;
    display: inline-block;
    border-radius: 4px;
    line-height: normal;
}

.homeSlider .swiper-slide .bannerInfo .sliderTitle {
    line-height: normal;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 25px;
    /* text-transform: uppercase; */
    color: var(--colorWhite);
}

.homeSlider .swiper-slide .bannerInfo p {
    display: block;
    color: var(--colorWhite);
    font-size: 18px;
    /* text-align: left; */
}

.homeSlider .active .sliderTag {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.1s;
}


.homeSlider .active .sliderTitle {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.homeSlider .active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    text-align: left;
    animation-delay: 0.3s;
}

.homeSlider .active .readMore {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 0.5s;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 20px;
    height: 20px;
}



.offer_banner_v1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff
}

.offer_banner_v1 .offer-item {
    float: left;
    width: 100%;
    position: relative;
    z-index: 0;
    min-height: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: end;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.offer_banner_v1 .offer-item:before {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
    -webkit-transition: opacity 180ms ease;
    transition: opacity 180ms ease;
}

.offer_banner_v1 .offer-itemn:after {
    border-radius: inherit;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.33);
}

.offer_banner_v1 .offer-item:hover:before {
    opacity: .05;
}


.offer_banner_v1 .offer-item:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(10deg, rgb(17 17 17 / 0%) 0, rgb(17 17 17 / 0%) 99%, #11111100 100%)
        /* linear-gradient(10deg, rgba(17, 17, 17, .70196) 0, rgba(17, 17, 17, .01) 99%, #111 100%) */
}

.offer_banner_v1 .offer-item .offer-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.offer_banner_v1 .offer-item .offer-content span.span {
    color: var(--orageColor);
    margin-bottom: 10px;
    text-transform: capitalize;
    font-size: 14px;
}

.offer_banner_v1 .offer-item .offer-content h3 {
    padding-right: 15%;
    color: var(--colorWhite);
    font-size: var(--headingTwo);
    margin-bottom: 15px
}

.offer_banner_v1 .offer-item .offer-content .h3_title {
    color: var(--colorWhite);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    overflow: hidden;
    line-height: 1.1
}


.custom_item {
    border: 1px solid var(--whiteBorderColor);
    border-radius: 6px;
    background-color: #fafafe;
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, .9);
    transition: all .3s ease;
    margin: 0px 0 20px;
    text-align: center;
    display: block;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1)
}

.custom_item .custom_img {
    position: relative;
    width: 100%;
    margin-bottom: 10px;

}

.custom_item .custom_img svg {
    width: 80px;
    height: 80px;
    color: var(--darkColor);
}

.custom_item .custom_title {
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    color: #0c0c0c;
    font-size: var(--textSize);
    font-weight: 500;
    line-height: 1.1
}

/* .custom_item:hover .custom_title {
    color: --var(--orageColor)
} */

.main-btn {
    display: inline-block;
    position: relative;
    padding: 14px 45px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #ef682f;
    text-transform: capitalize;
    border-radius: 28px;
    z-index: 1;
    transition: all .5s ease;
    background: -webkit-linear-gradient(0deg, #f25743, #ef682f 50%);
    letter-spacing: 0.5px;
}

.main-btn:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 5px;
    z-index: -1;
    transition: all .5s ease
}

.offer-item:hover .main-btn {
    color: #ef682f
}

.offer_banner_v1 .offer-item:hover .offer-content h3 {
    color: #ef682f
}

.offer-item:hover .main-btn:before {
    width: 100%;
    left: 0
}

.offer_banner_v1 .offer-item .offer-content .main-btn {
    padding: 6px 17px;
    font-size: 14px;
    line-height: 23px
}


.homeAbout {
    float: left;
    width: 100%;
    position: relative;
    padding: 70px 0px 100px;
    background-image: url(../images/aboutbg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.homeAbout:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgb(1 50 119 / 88%);
}

.homeAbout .title1 {
    position: relative;
    color: var(--orageColor);
    font-size: var(--headingOne);
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 15px;
    font-family: var(--fontFamily);
}

.homeAbout h2 {
    position: relative;
    color: var(--orageColor);
    font-size: var(--headingThree);
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.homeAbout h3 {
    position: relative;
    color: var(--orageColor);
    font-size: var(--headingThree);
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.homeAbout p {
    position: relative;
    line-height: 24px;
    font-size: var(--textSize);
    color: var(--colorWhite);
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: justify;
}

.galleryColumn {
    float: left;
    max-width: 450px;
    margin: 10px 15px 0 0;
    position: relative;
    z-index: 1;
}

.galleryColumn .image {
    position: relative;
    margin-bottom: 25px;
}

.row__shape {
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    transition: all ease 1.5s;
    -webkit-transition: all ease 1.5s;
    -moz-transition: all ease 1.5s;
}

.shape__svg {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    fill: #fff;
}



.homeFactsheet {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    position: relative;
    background: #f7f7f7;
}

.homeFactsheet .factsheetOne {
    position: relative;
    display: block;
    background: transparent;
    padding-top: 55px;
    margin-bottom: 50px;
    text-align: center;
}

.homeFactsheet .factsheetOne .factsheetIcon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background: var(--colorWhite);
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--orageColor);
    text-align: center;
    z-index: 3;
    line-height: 100px;
}

.homeFactsheet .factsheetOne .factsheetIcon:before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    content: "";
    background: var(--orageColor);
    border-radius: 50%;
    transition: all .5s ease-in-out 0s;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(-90deg) translateZ(0);
    opacity: 0;
    z-index: -1
}

.homeFactsheet .factsheetOne:hover .factsheetIcon:before {
    transform: perspective(1200px) rotateY(0) translateZ(0);
    transition-delay: .1s;
    opacity: 1
}


.factsheetInfo {
    position: relative;
    display: block;
    background: var(--colorWhite);
    box-shadow: 0 4px 11px -1px #ececec;
    position: relative;
    display: block;
    padding: 26px 25px 32px;
    padding-top: 70px;
    border-top: 1px solid var(--whiteBorderColor);
}

.factsheetInfo .factsheetTitle {
    font-weight: 600;
    margin: 0px;
    font-size: var(--headingFour);
    line-height: 24px;
    color: var(--darkColor);
}

.factsheetInfo p {
    margin: 0;
    font-size: var(--paraText);
    padding: 0;
    color: var(--textColor);
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.homeProducts {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: var(--colorWhite);
    position: relative;
}

.homeProducts:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -13px;
    margin-left: -16px;
    z-index: 9;
    background-color: #fff;
    background-repeat: no-repeat;
    border: solid #e1f5ff;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 25px;
    height: 25px;
}

.title2 {
    padding: 0;
    font-size: var(--headingTwo);
    margin: 0;
    float: none;
    width: 100%;
    text-align: center;
    color: var(--darkColor);
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
    display: flow-root;
}

.title2:after {
    background: var(--orageColor);
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px
}

.products {
    float: left;
    width: 100%;
}

.singleItem {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 10px;
    margin-bottom: 15px;
}

.feature_item {
    background: var(--colorWhite);
    margin: 0 0 15px;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .13);
    border-radius: 12px;
    overflow: hidden;
}

.feature_item .feature_image {
    height: auto;
    position: relative;
    text-align: center;
    min-height: auto;
    overflow: hidden;
    border-bottom: 1px solid var(--whiteBorderColor);
    aspect-ratio: 1;
}

.feature_item .feature_image .image {
    position: relative;
    padding: 0;
    text-align: center;
    min-height: inherit;
    aspect-ratio: 1;
    overflow: hidden;
    height: auto;
    transition: all .4s ease-in-out
}

.feature_item .image img {
    position: absolute;
    margin: auto;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    aspect-ratio: 1;
}

.right-content a.readMore {
    margin-bottom: 10px;
}

.feature_item:hover .feature_image .image {
    transform: scale(1.1)
}

.feature_sec {
    display: block;
    overflow: hidden;
    padding: 9px;
    text-align: center
}

.feature_sec .title_h3 {
    font-size: var(--headingFour);
    margin: 7px 0 7px;
    font-weight: 700;
    color: var(--darkColor);
}

.feature_sec .title_h3 a {
    color: var(--darkColor);
}

.feature_sec:hover .title_h3 a {
    color: var(--orageColor)
}

.feature_sec p {
    font-weight: 400;
    font-size: var(--textSize);
    color: var(--textColor);
    text-align: center;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.readMore {
    position: relative;
    line-height: 24px;
    color: var(--colorWhite);
    font-size: var(--paraText);
    font-weight: 600;
    background: var(--orageColor);
    display: inline-block;
    padding: 10px 25px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--orageColor);
    transition: all .3s ease
}

.readMore:focus,
.readMore:hover {
    color: #ffffff;
    border-color: #fff;
    background: #1a1a1a;
}


.readMore2 {
    position: relative;
    line-height: 24px;
    color: var(--colorWhite);
    font-size: var(--paraText);
    font-weight: 500;
    background: var(--darkColor);
    display: inline-block;
    padding: 10px 25px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--darkColor);
    transition: all .3s ease
}

.readMore2:focus,
.readMore2:hover {
    color: var(--darkColor);
    border-color: var(--darkColor);
    background: transparent
}

.readMore2 svg {
    width: 16px;
    height: 16px;
}

.feature_sec .readMore {
    margin-bottom: 10px;
}

.products .owl-next,
.products .owl-prev,
.products2 .owl-next,
.products2 .owl-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: var(--colorWhite) !important;
    font-size: 14px;
    border: 0;
    outline: 0;
    background: var(--darkColor) !important;
    border-radius: 100%;
    z-index: 50;
    border: 1px solid var(--darkColor);
    text-align: center;
    cursor: pointer;
    transition: all .3s ease
}

.products .owl-prev,
.products2 .owl-prev {
    left: -50px;
    top: 48%
}

.products .owl-next,
.products2 .owl-next {
    right: -50px;
    top: 48%
}

.products .owl-next:hover,
.products .owl-prev:hover,
.products2 .owl-next:hover,
.products2 .owl-prev:hover {
    background: var(--orageColor) !important;
    color: var(--colorWhite);
    border-color: var(--orageColor) !important;
}

.homeCommunity {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #f7f7f7;

}

.brand2-bg-1 {
    background-color: #f9f9f9;
    border-radius: 15px;
}

.community__content {
    padding: 0;
    padding: 40px;

}

.community__content-inner .titleNew1 {
    font-size: 42px;
    margin-block-start: 20px;
    margin-block-end: 20px;
    color: var(--darkColor);
    line-height: normal;
    font-weight: 700;
}

.community__content-inner p {
    font-size: var(--textSize);
    text-align: left;
    margin-bottom: 20px;
}

.join-btn {
    padding: 8px 24px;
    background-color: #d6f2fe;
    border-radius: 8px;
}

.community__thumb-inner {
    object-fit: cover;
    transition: all .3s linear;
    position: relative;
}

.community__thumb-inner img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;

}

.community__thumb-playbtn {
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
}

.community__thumb-playbtn a img {
    object-fit: cover;
    transition: all .3s linear;
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.community__thumb-playbtn:hover a img {
    transform: scale(1.05);
}

.faqSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: var(--colorWhite);
}

.faqTitle {
    font-size: var(--headingOne);
    text-transform: capitalize;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 36px;
}

.faqTitle span {
    color: #edac15;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 6px !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: var(--headingFour);
    font-weight: normal;
}

.accordion-button:not(.collapsed) {
    color: var(--colorWhite);
    background: var(--darkColor);
    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: var(--colorWhite);
    background: var(--darkColor);
}

.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: var(--textSize);
    line-height: 24px;
}

.company-video-intro {
    margin-bottom: 20px;
    margin-top: 57px;
}

.vedio-inner {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.vedio-overly {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(237, 172, 21, 0.80);
}

.vedio-overly::before {
    position: absolute;
    content: "";
    width: 85%;
    height: 85%;
    border: 1px solid #edac15;
    left: 0;
    right: 0;
    margin: 0px auto;
    transform: translateY(-50%);
    top: 50%;
}

.vedio-button {
    text-align: center;
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

.vedio-inner img {
    width: 100%;
}

.vedio-button {
    position: relative;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background-color: transparent;
    background-image: url('../images/play_button.png');
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    margin: 0px auto;
}

.vedio-button a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.vedio-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

.company-video-intro h2 {
    font-size: var(--headingFour);
    font-weight: 600;
    line-height: 27px;
}

.factCounter {
    float: left;
    width: 100%;
    background: var(--darkColor);
    padding-bottom: 80px;
    padding-top: 50px;
    position: relative;
    text-align: center;
}

.factCounter .title2 {
    color: var(--colorWhite);
}

.maxWidth {
    max-width: 950px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

.maxWidth p {
    color: var(--greyColor);
    line-height: 24px;
    font-size: var(--textSize);
    text-align: center;
    margin-bottom: 20px;
}


.factCounter .factTitle h2 {
    color: var(--colorWhite);
    font-weight: 600;
    font-size: var(--headingOne);
    margin-bottom: 10px;
}

.factCounter .factTitle h2 span {
    color: #222;
}

.factCounter .factTitle p {
    color: #f1f1f1;
    font-size: var(--headingFour);
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.factCounter ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    grid-gap: 15px;
    justify-content: center;
}

.factCounter ul li {
    width: calc(100% / 4 - 15px);
    padding: 35px 15px;
    border: 1px solid #b8caf140;
    margin-bottom: 30px;
    list-style: none;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff14;

}


.factCounter ul li:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--orageColor);
    -webkit-transition: .5s;
    transition: .5s;
}

.factCounter ul li:hover:before {
    height: 100%
}

.factCounter ul li p {
    width: 100%;
    display: block;
    padding: 0px 5px 0px;
    transition: all 500ms ease;
    position: relative;
    text-align: center;
    line-height: normal;
    color: var(--colorWhite);
}

.factCounter ul li svg {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.factCounter ul li p strong {
    color: var(--orageColor);
    display: block;
    font-weight: 600;
    margin: 0px;
    font-size: var(--headingFour);
    line-height: 24px;
}

.factCounter ul li:hover p strong {
    color: var(--colorWhite);
}

.webpulse_home_clients .icon-box i {
    width: 55px;
    height: 55px;
    display: block;
    margin: auto;
}

.webpulse_home_clients .icon-box i svg {
    width: 50px;
    height: 50px;
}

.homeTestimonials {
    float: left;
    width: 100%;
    position: relative;
    padding: 40px 0px 40px;
    background: #f7f7f7;
}


#testimonials {
    float: left;
    width: 100%;
    margin: 0;
}

.homeTestimonials .testimonialItem {
    position: relative;
    text-align: center;
    margin: 25px 10px 35px;
    opacity: 0.5;
}

.homeTestimonials .owl-item.active.center .testimonialItem {
    -webkit-transform: scale(1.11);
    -ms-transform: scale(1.11);
    transform: scale(1.11);
    opacity: 1;
}

.homeTestimonials .testimonialItem .testimonialItem_box {
    position: relative;
    padding: 30px 20px 30px;
    background-color: var(--colorWhite);
    transition: all 300ms ease;
    border-top: 1px solid #fefefe;
    box-shadow: 0px 1px 5px 1px rgba(241, 241, 241, 1);
}

.homeTestimonials .testimonialItem .testimonialItem_box .text {
    position: relative;
    margin-bottom: 25px;


}

.homeTestimonials .testimonialItem .testimonialItem_box .text p {
    font-style: italic;
    font-size: var(--textSize);
    color: var(--textColor);
    text-align: center;
    line-height: 28px;
}

.homeTestimonials .testimonialItem .testimonialTitle {
    position: relative;
}

.homeTestimonials .testimonialItem .testimonialTitle span {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: -50px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    background: var(--colorWhite);
    border-radius: 50%;
    transition: all 300ms ease;
    box-shadow: 0px 1px 5px 1px rgba(241, 241, 241, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blueColor);
    font-size: var(--headingOne);
    font-weight: 600;
}

.homeTestimonials .testimonialItem .testimonialTitle .name {
    position: relative;
    color: var(--textColor);
    font-size: var(--headingFour);
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

.homeTestimonials .testimonialItem .testimonialTitle .designation {
    position: relative;
    color: var(--blueColor);
    font-size: var(--textSize);
}



.home_blog {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}


.single-post2 {
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-thumb2 {
    overflow: hidden;
    width: 100%;
}

.blog-thumb2 img {
    max-width: 100%;
    width: 100%;
    transition: all 0.3s ease-out 0s;
}

.blog-content2 {
    background: #fff;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 2.5px 4.33px 15px 0px rgb(0 0 0 / 9%);
    width: 90%;
    margin: auto;
    margin-top: -35px;
    margin-bottom: 15px;
}

.blog-content2 .b-meta {
    margin-bottom: 10px;
    font-size: 14px;
}

.blog-content2 .b-meta ul {
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
}

.b-meta ul li {
    display: inline-block;
    margin-right: 8px;
    border-right: 2px solid #f5f5f5;
    padding-right: 8px;
}

.b-meta svg {
    margin-right: 5px;
    color: #554c86;
}

.b-meta ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.blog-content2 .title_h5 {
    font-size: var(--headingFive);
    margin-bottom: 5px;
    line-height: normal;
    height: auto;
    position: relative;
    font-weight: normal;
}

.blog-content2 .title_h5 a {
    text-decoration: none;
    line-height: 26px;
    font-size: 18px;
    color: var(--darkColor);
    font-weight: 600;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.blog-content2 .title_h5 a:hover {
    color: var(--orageColor);
}

.blog-content2 h5 span {
    position: relative;
    top: inherit;
    left: inherit;
    max-width: 100%;
    transform: inherit;
    width: 100%;
    max-height: 100%;
    line-height: 25px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.blog-content2 p {
    text-align: left;
    line-height: 22px;
    font-size: var(--textSize);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}






.homeClients {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: var(--colorWhite);
}

.homeClients .brand {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.homeClients .brand li {
    position: relative;
    display: block;
    float: left;
    margin-right: 1%;
    width: 24%;
    text-align: center;
    margin-bottom: 50px;
    border-right: 1px #eee solid;
    height: 120px;
}

.homeClients .brand li img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
}

.homeClients .brand li:after {
    width: 80%;
    height: 1px;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    display: block;
    position: absolute;
    bottom: -35px;
    content: "";
    background: var(--whiteBorderColor);
}

.homeClients .brand li:nth-child(4n) {
    border-right: none;
}

.homeClients .brand li:nth-child(n+5):after {
    display: none;
}

/*.homeClients .brand li:nth-child(n+4) {
	margin-bottom: 0px;
}*/

/* 
.footer {
    float: left;
    width: 100%;
    position: relative;
    background-color: #17191b;
    color: var(--textColor);
    padding: 60px 0 0;
}

.footer .logo {
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px;
    border-radius: 4px;
    max-width: 145px;
    background: var(--colorWhite);
}


.footer .footerWidget {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.footer .footerWidget .footerWidget_title {
    color: var(--colorWhite);
    font-size: var(--headingFour);
    font-weight: 600;
    margin-bottom: 14px;
}

.footer .footerWidget p {
    color: var(--colorWhite);
    font-size: var(--textSize);
    line-height: 26px;
    text-align: left;
}

.footer .footerWidget .callUs {
    position: relative;
    display: block;
    background: #010101;
    border-radius: 5px;
    margin-top: 20px;
    padding: 15px 13px 14px;
    display: flex;
    align-items: center;
    max-width: 260px;

}

.footer .footerWidget .callUs .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    background: var(--blueColor);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.callUs .icon:before {
    content: '';
    border-left: 15px solid var(--blueColor);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    right: -10px;
}

.callUs .icon svg {
    width: 30px;
    height: 30px;
    color: var(--colorWhite);
}

.callUs .icon,
.callUs .text {
    display: table-cell;
    vertical-align: middle
}

.callUs .text {
    padding-left: 5px;
    color: var(--colorWhite)
}

.callUs .text span {
    font-size: 18px
}

.callUs .text a {
    font-size: var(--headingFour);
    margin: 0;
    color: var(--orageColor);
    font-size: var(--headingFive);
    font-weight: 600;
}

.callUs:hover .text a {
    color: var(--blueColor)
}

.footerWidget .widgetTitle {
    position: relative;
    display: block;
    font-size: var(--headingFour);
    line-height: 1.2em;
    color: var(--colorWhite);
    font-weight: 600;
    margin-bottom: 20px;
} */

/* .footerWidget .widgetTitle:before {
    position: relative;
    top: -6px;
    height: 2px;
    width: 55px;
    background-color: var(--blueColor);
    display: block;
    content: "";

} */
/* 
.footerWidget ul {
    margin: 0;
    padding: 0
}

.footerWidget ul li {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 15px;
    list-style: none
}

.footerWidget ul li a:before {
    position: absolute;
    left: -5px;
    top: 0;
    font-size: var(--paraText);
    color: var(--colorWhite);
    font-weight: 400;
    line-height: 22px;
    content: 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='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/></svg>");
    transition: all .3s ease;
    transform: rotate(-270deg);
}

.footerWidget ul li a {
    position: relative;
    display: block;
    font-size: var(--textSize);
    line-height: 22px;
    color: var(--colorWhite);
    font-weight: 400;
    padding-left: 20px;
    text-transform: capitalize;
    transition: all .3s ease
}

.footerWidget ul li:hover a {
    color: var(--blueColor);
    padding-left: 30px
}

.footerWidget ul li:hover a:before {
    transform: rotate(0deg);
    left: 0;
} */

.businessWidget {
    border-top: 2px solid #000000;
    position: relative;
    padding: 20px 20px;
    background-color: #010101;
    border-radius: 5px;
}

.singleWidget+.singleWidget {
    border-top: 1px solid #4d4d4e;
    padding-top: 14px;
    margin-top: 13px;
}

.singleWidget .widgetIcon {
    display: table-cell;
    vertical-align: top;
    width: 30px;
}

.singleWidget .widgetIcon svg {
    color: var(--orageColor);
    width: 30px;
    height: 30px;
    display: block;
    line-height: 1em;
    position: relative;
    top: 7px;
}

.singleWidget .widgetInfo {
    padding-left: 20px;
    display: table-cell;
    vertical-align: top;
}

.singleWidget .widgetInfo .title6 {
    color: var(--colorWhite);
    font-size: var(--headingFive);
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.2;
}

.singleWidget .widgetInfo a {
    color: var(--colorWhite);
    font-size: var(--headingThree);
    font-weight: 500;
    display: block;
}

.singleWidget .widgetInfo a:hover {
    color: var(--orageColor);
}

.singleWidget .widgetInfo p {
    color: var(--colorWhite);
    font-size: 15px;
}


/* 
.footerBottom {
    position: relative;
    text-align: center;
    padding: 10px 0;    margin-top: 30px;
    background-color: #0a0b0c;
}

.footerBottom .copyright {
    position: relative;
    display: block;
    font-size: 15px;
    color: var(--colorWhite);
    font-weight: 400;
    text-align: left;
}

.footerBottom .copyright.textRight {
    text-align: right;
}

.footerBottom .copyright a {
    display: inline-block;
    color: var(--blueColor);
}

.footerBottom .copyright a:hover {
    text-decoration: underline;
} */


#scrollUp {
    position: fixed;
    z-index: 999;
    bottom: 5px;
    bottom: 158px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--textColor);
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: none;
    background-image: linear-gradient(180deg, #ffc83e, #ef9b2d);
}

#scrollUp svg {
    width: 24px;
    height: 24px;
}

#scrollUp:hover {
    background: var(--textColor);
    color: var(--colorWhite);
}

.contactFixed {
    position: fixed;
    right: 20px;
    bottom: 5px;
    z-index: 99;
    transition: all .3s ease-in-out
}

.contactFixed ul {
    width: auto;
    margin: 0;
    padding: 0
}

.contactFixed ul li {
    list-style: none;
    position: relative
}

.contactFixed ul li a {
    background: var(--orageColor);
    width: 45px;
    height: 45px;
    color: var(--colorWhite);
    font-size: var(--headingTwo);
    cursor: pointer;
    z-index: 99;
    border-radius: 100%;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16), 0 3px 10px rgba(0, 0, 0, .16)
}

.contactFixed ul li a svg {
    width: 24px;
    height: 24px;
}

.contactFixed ul li:nth-child(1) a {
    background: #1a1a1a
}

.contactFixed ul li:nth-child(3) a {
    background: #01e675
}



.whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--colorWhite);
    cursor: pointer;
    z-index: 99;
    border-radius: 100%;
    transition: all 300ms ease-in-out;
    left: 22px;
    background: #01e675;
    bottom: 40px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16), 0px 3px 10px rgba(0, 0, 0, 0.16);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp:hover,
.whatsapp:focus {
    background: #0bcf6e;
    color: var(--colorWhite);
}

.whatsapp svg {
    width: 22px;
    height: 22px;
}

#whatsapp .modal-dialog {
    margin-top: 15%;
}

.modal-content {
    border-radius: 0;
}

.modal-header {
    padding: 0 15px;
    background: var(--darkColor);
    color: var(--colorWhite);
    border-radius: 0;
}

.modal-header h5 {
    text-align: left;
    font-size: var(--headingFour);
    line-height: 18px;
    color: var(--colorWhite);
}

.modal-header h6 {
    text-align: left;
    font-size: var(--headingFour);
    line-height: 18px;
    color: var(--colorWhite);
}

.modal-header .modal-title {
    text-align: left;
    font-size: var(--headingFour);
    line-height: 18px;
    color: var(--colorWhite);
    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: 30px 0px;
    margin: 0;
    z-index: 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 h1 {
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 600;
    color: var(--colorWhite);
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

.heading_banner h2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: var(--headingFour);
    font-weight: normal;
    color: var(--whiteBorderColor);
    text-align: center;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

.heading_banner .cat_title {
    margin: 0 0 0px;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    color: var(--colorWhite);
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 0px;
}

.heading_banner .cat_title2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: var(--headingFour);
    font-weight: normal;
    color: var(--whiteBorderColor);
    text-align: center;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}



/* Breadcrumb*/
.inner_breadcrumb {
    float: left;
    width: 100%;
    background: var(--colorWhite);
    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;
    display: inline-block;
    text-transform: capitalize;
    margin: 0;
}

.inner_breadcrumb .breadcrumb li {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--greyColor);
    float: left;
    display: inline-block;
    line-height: 55px;
}

.inner_breadcrumb .breadcrumb li a {
    float: left;
    padding: 0;
    color: var(--greyColor);
    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: var(--colorWhite);
    display: inline-block;
}

.inner_breadcrumb .breadcrumb li.active {
    color: var(--darkColor);
}

.inner_breadcrumb .breadcrumb li+li:before {
    content: "/";
    color: var(--colorWhite);
    padding: 0 14px;
}

.inner_breadcrumb .breadcrumb li+li:before {
    float: left;
    padding: 20px 10px;
    color: #bfbfbf;
}

.title_1 {
    padding: 0 0 0px;
    font-size: 28px;
    margin: 0;
    float: left;
    width: 100%;
    text-align: center;
    text-transform: initial;
    color: var(--darkColor);
    margin-bottom: 25px;
    position: relative;
    overflow: visible;
    font-weight: 600;
}

.title_1:after {
    background: var(--orageColor);
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}

.title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    font-weight: 600;
}

.right_side .title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    font-weight: 600;
}

/* About Us */
.about_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: var(--colorWhite);
}

.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(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    font-weight: 600;
}


.left_sidebar ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--textColor);
}

.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: var(--colorWhite);
    padding: 10px;
    font-weight: 500;
    line-height: 20px;
    font-size: var(--paraText);
}

.left_sidebar ul li a:hover,
.left_sidebar ul li a:focus,
.left_sidebar ul li a.active {
    background: var(--orageColor);
    color: var(--colorWhite);
}

.left_sidebar ul li ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--colorWhite);
}

.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: var(--textColor);
    text-align: left;
    font-size: var(--paraText);
    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(--orageColor);
    color: var(--colorWhite);
}

.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: var(--colorWhite);
    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: var(--textColor);
    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(--orageColor);
    color: var(--colorWhite);
}

.left_sidebar form {
    float: left;
    width: 100%;
    background: var(--colorWhite);
    padding: 10px 10px 10px;
}

.right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    font-weight: 600;
}

.right_side h2 {
    padding: 0px;
    margin: 20px 0 5px;
    line-height: 30px;
    font-size: var(--headingThree);
    color: var(--textColor);
    font-weight: 600;
}

.right_side h3 {
    padding: 0px;
    margin: 10px 0 5px;
    line-height: 30px;
    font-size: var(--headingThree);
    color: var(--textColor);
    font-weight: 600;
}

.wps_right {
    float: left;
    width: 100%;
    /*👉 background: var(--colorWhite);
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;👈*/
}

.wps_right p {
    line-height: 24px;
    margin-bottom: 10px;
    text-align: justify;
    font-size: var(--textSize);
    font-weight: normal
}

.wps_right ul {
    margin: 10px 0px;
    padding: 0;
}

.wps_right ul li {
    line-height: 24px;
    font-size: var(--textSize);
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flow-root;
    margin-bottom: 10px;
    align-items: center;
}

.wps_right ul li:before {
    width: 20px;
    height: 10px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 5px;
    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 var(--whiteBorderColor);
}

.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 var(--whiteBorderColor);
}

.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;
}

.category_page h1 {
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: var(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    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: var(--textSize);
    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 {
    float: right;
    max-width: 500px;
    width: 100%;
    margin: 0px 0 25px 15px;
    text-align: center;
}

.product_right_image .detail_image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 1;
    border: 1px solid var(--whiteBorderColor);
    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%;
    aspect-ratio: 1;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
}

.product_right_image .product_dimage {
    width: 100%;
    text-align: center;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--whiteBorderColor);
    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 var(--whiteBorderColor);
}

#thumbs img {
    display: inline-block;
    margin-right: 6px;
    width: 70px;
}

#thumbs img.active {
    border-color: var(--blueBorderColor);
}

.wps_right h2,
.wps_right h3,
.wps_right h4 {
    font-size: var(--headingThree);
    line-height: normal;
    margin-bottom: 10px;
    color: var(--darkColor);
    font-weight: 600;
}

.wps_right table {
    margin: 0;
    background: var(--colorWhite);
}

.wps_right table tbody tr td {
    vertical-align: middle;
    padding: 6px 10px;
    font-size: var(--textSize);
    line-height: normal;
    text-align: left;
}

.wps_right table tbody tr td {
    border: 1px solid #ccc;
    width: 60%;
}

.wps_right table tbody tr td:first-child {
    color: var(--darkColor);
    width: 40%;
}

.interested_section {
    float: left;
    width: 100%;
    text-align: center;
    margin: 20px 0
}

.interested_section .interested_btn {
    font-size: var(--headingFour);
    color: var(--colorWhite);
    background: var(--textColor);
    border: 1px solid #6b2b76;
    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(--orageColor);
    color: var(--colorWhite);
    border: 1px solid #f7b11b
}

.product_listing {
    float: left;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0px 0px 5px 0px rgba(210, 210, 210, 0.75);
    transition: all 0.35s ease-in-out;
    border-style: solid;
    border-color: #ccc0;
    background: var(--colorWhite);
    border-radius: 5px;
    overflow: hidden;
}

.product_listing .product {
    width: 100%;
    position: relative;
    padding: 0px;
    text-align: center;
    min-height: auto;
    overflow: hidden;
    border-right: 1px solid var(--whiteBorderColor);
    display: block;
}

.product_listing .product .image1 {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 1;
    transition: all 0.4s ease-in-out;
    margin-bottom: 0px;
}

.product_listing .product .image1 img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    aspect-ratio: 1;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    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 var(--whiteBorderColor);
}

.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: #ddaf1c;
}

.product_listing .product .small .item.youtube {
    width: 60px;
    height: 60px;
    background: #f70000;
    color: var(--colorWhite);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_listing .product .small .item.youtube a {
    color: var(--colorWhite);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube svg {
    width: 40px;
    height: 40px;
}



.product_listing .product p {
    font-size: var(--textSize);
    text-align: center;
    margin: 0 0 10px;
}

.product_listing .product .read_more {
    margin-top: 0;
}

.product_listing .right-content .read_more {
    margin-top: 10px;
}

.padding0 {
    padding: 0;
}

.right-content {
    position: relative;
    padding-right: 15px;
}

.right-content .title4 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    margin: 0;
    font-size: var(--headingThree);
    font-weight: 600;
}

.right-content .title4 a {
    color: var(--textColor);
}

.right-content h4 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
}

.right-content p {
    font-size: var(--textSize);
    margin-bottom: 10px;
}

.blue-line1 {
    width: 100%;
    display: block;
    height: 1.1px;
    background: var(--whiteBorderColor);
    position: relative;
    margin-bottom: 10px;
    padding: 0 15px;
}

.product_listing:hover .right-content .title4 a {
    color: var(--orageColor);
}

.product_listing:hover .right-content h4 a {
    color: var(--orageColor);
}

.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: var(--textSize);
    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(--textColor);
    width: 40%;
}

.you_may {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
    line-height: 30px;
    color: var(--orageColor);
    font-size: var(--headingThree);
    font-weight: 600;
    border-bottom: 1px solid var(--whiteBorderColor);
    padding-bottom: 10px;
}

.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: var(--whiteBorderColor);
}

.team_member .image {
    width: 100%;
    position: relative;
    padding: 15px 15px 15px 0;
    text-align: center;
    min-height: 268px;
    overflow: hidden;
    border-right: 1px solid var(--whiteBorderColor);
    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: var(--textColor);
    font-weight: 600;
    font-size: var(--paraText);
}



/*  Testimonial Page  */

.testimonial_block {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.testimonial_text_box {
    margin: 0 0 30px;
    padding: 32px 20px 35px 0;
    background: var(--whiteBorderColor);
    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 var(--whiteBorderColor);
    border-right: 25px solid transparent;
}

.testimonial_text_box .this-texts {
    display: table-cell;
    width: calc(100% - 70px);
    vertical-align: top;
    color: var(--textColor);
    font-size: var(--textSize);
    line-height: 24px;
    text-align: justify;
}

.testimonial_author .media-left {
    padding-right: 20px;
    float: left;

}

.testimonial_author .media-left img {
    border: 1px solid var(--textColor);
    border-radius: 4px;
}

.testimonial_author .media-left a {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    background: var(--whiteBorderColor);
    border-radius: 50%;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orageColor);
    font-size: var(--headingOne);
    font-weight: 600;
}

.testimonial_author .media-body {
    vertical-align: middle;
}

.testimonial_author .this-title {
    font-size: var(--headingFour);
    color: var(--textColor);
    text-align: left;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 0;
}

.testimonial_author .loc {
    color: var(--darkColor);
    line-height: 20px;
    margin: 0;
}


.gallery_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: var(--whiteBorderColor);
}

.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: var(--headingFour);
    color: var(--textColor);
    margin: 0;
    padding: 0;
}

.gallery_item_info p {
    font-size: 13px;
    margin: 0;
    margin-top: 4px;
    color: var(--textColor);
    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: auto;
    aspect-ratio: 1;
}

.category-gallery .hover_effect {
    aspect-ratio: 1;
}

.hover_effect:after {
    color: var(--colorWhite);
    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;
    aspect-ratio: 1;
    object-fit: contain;
    min-width: 100%;
    min-height: 100%;
    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(--orageColor);
}

.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;
}

.blog_page .blog_left h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    font-weight: 600;
}

.blog_page .blogLeft {
    margin-bottom: 20px;
    position: relative;
    background: var(--colorWhite);
}

.blog_page .blogLeft .blogInfo h4 {
    color: var(--textColor);
}

.blog_page .blogLeft .blogInfo .text p {
    color: var(--textColor);
}

.blog_page .blogLeft .blogInfo h4:hover {
    color: var(--orageColor);
}

.blog_page .blogLeft .blogInfo {
    padding-bottom: 15px;
}

/* New Blog Details Page */
.blog_details {
    float: left;
    width: 100%;
}

.blog_details ul {
    display: flex;
    align-items: center;
    justify-content: center;
    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: var(--textColor);
    display: inline-block;
    transition: all 0.5s ease-out;
}

.blog_details ul li i {
    margin-right: 5px;
}

.sharethis-inline-share-buttons {
    margin-bottom: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
}

.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
}

.form-group {
    margin-bottom: 15px;
}

.blog_details1 p {
    text-align: justify;
    line-height: 24px;
}

.blog_details1 .block-quote {
    padding: 30px 40px;
    margin-bottom: 20px;
    background: var(--colorWhite);
    border-left: 3px solid var(--orageColor);
    background: #f9f9f9;
}

.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: none;
    width: 100%;
    margin: 10px 0px;
    padding: 0;
    display: block;
}

.blog_details1 ul li {
    line-height: 28px;
    font-size: var(--textSize);
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flow-root;
    align-items: center;
}

.blog_details1 ul li:before {
    width: 20px;
    height: 20px;
    color: var(--textColor);
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
    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: var(--whiteBorderColor);
    padding: 20px 20px 20px;
}

.blog_news .content_details h2 {
    text-transform: capitalize;
    line-height: 30px;
    font-size: var(--headingThree);
    margin: 0 0 10px;
}

.blog_news .content_details h2 a {
    color: var(--textColor);
    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: var(--offWhiteColor);
    border-left: 3px solid var(--darkColor);
}

.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: var(--textColor);
    font-size: 15px;
    font-weight: normal;
}

.contact_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
}

.cs_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.cs_container .csPanel {
    /* width: 50%; */
    display: table-cell;
    background-color: var(--colorWhite);
    border-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0 2px 6px 0 #989cb0;
    box-shadow: 0 2px 6px 0 #989cb0;
    padding: 20px;
}

.cs_container .csPanel:last-child {
    background-color: rgba(38, 43, 72, .92);
    color: var(--colorWhite);
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-box-shadow: 0 3px 6px #989cb0;
    box-shadow: 0 3px 6px #989cb0;
    background: linear-gradient(90deg, #171a72, #000247);
    /* max-width: 300px; */
    /* width: 100%; */
}



.title_h2_2 {
    margin-bottom: 15px;
    margin-left: 10px;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: var(--orageColor);
    text-align: left;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
}

.address-column p {
    color: var(--colorWhite);
    margin: 0;
    display: flex;
    line-height: 26px;
    margin-bottom: 5px;
}

.address-column p span {
    font-size: var(--headingThree);
    margin-right: 10px;
    color: var(--colorWhite)
}

.address-column p span svg {
    width: 24px;
    height: 24px;
}

.address-column p.phone {
    display: block
}

.address-column p a {
    color: var(--colorWhite);
    display: inline-block;
    font-weight: 600;
}

.address-column p a:hover {
    color: var(--orageColor)
}

.contact_page textarea.form-control {
    height: 100px;
}

#contact_form label.error,
.output {
    color: red;
    font-weight: normal;
    margin-bottom: 15px;
    text-align: left;
    margin: auto;
    width: 100%;
}

#quick_form label.error,
.output {
    color: red;
    font-weight: normal;
    margin-bottom: 15px;
}

#quick_enquiry label.error,
.output {
    color: var(--errorColor);
    font-weight: normal;
    margin-bottom: 15px;
}

.pac-container {
    z-index: 100000;
}


.contact_map {
    float: left;
    width: 100%;
    height: 550px;
}


/* Sitemap page */
.sitemap_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: var(--colorWhite);
}

.sitemap_right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: var(--orageColor);
    font-size: var(--headingTwo);
    color: var(--colorWhite);
    font-weight: 600;
}

.sitemap {
    border-left: 1px solid var(--greyColor);
    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 var(--greyColor);
    padding: 0;
}

.sitemap li a {
    color: var(--textColor);
    font-size: var(--paraText);
    padding-bottom: 5px;
    display: block;
}

.sitemap li a:hover {
    color: var(--darkColor);
}

.market_area .mt25 {
    float: left;
    display: block;
    font-size: var(--headingFour);
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    color: var(--darkColor);
}

.market_area h1 {
    font-size: var(--headingTwo);
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--textColor);
}

.market-list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.market-list li {
    list-style: none;
    padding-right: 10px;
    line-height: 20px;
    width: 25%;
    float: left;
}

.market-list li:before {
    content: none;
    margin-right: 0;
}

.market-list li a {
    width: auto;
    height: auto;
    padding: 10px 0 10px 12px;
    margin: 0 0 9px;
    display: block;
    color: var(--textColor);
    font-size: var(--paraText);
    background-color: var(--offWhiteColor);
}

.market-list li a:hover {
    background: var(--darkColor);
    color: var(--colorWhite);
}


/* Products Poup */
.product_popup {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.product_popup_image {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid var(--whiteBorderColor);
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 1;
}

#callback .product_popup_image {
    height: auto;
    aspect-ratio: 1;
}

.product_popup_image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    margin: auto;
    height: auto;
    aspect-ratio: 1;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
}

.product_popup h4 {
    color: var(--textColor);
    font-size: var(--headingFive);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
    padding: 0;
}

.product_popup p {
    font-size: var(--paraText);
    line-height: 24px;
    color: var(--textColor);
    text-align: left;
    margin-bottom: 15px;
}

#product_enquiry label.error {
    color: var(--errorColor);
    font-weight: normal;
}

.product_right_image .read_more {
    margin-top: 0;
}


.logob {
    border-radius: 14px;
    padding: 5px 5px;
    background-color: var(--colorWhite);
}

.video_section iframe {
    width: 100%;
    height: 415px;
}


.latest {
    font-size: 26px;
    font-weight: bold;
    color: var(--textColor);
    margin: 0 0 20px;
}

.webpulse-home_blog h6 span {
    color: var(--orageColor);
}

.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;
    }
}

.rangeProduct {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border: 1px solid var(--whiteBorderColor);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    transition: all 0.35s ease-in-out;
    background: var(--colorWhite);
}

.rangeProduct:hover {
    box-shadow: 0px 3px 5px 0px rgba(210, 210, 210, 0.75);
}

.rangeProduct .image {
    position: relative;
    height: 253px;
    text-align: center;
    border-bottom: 1px solid var(--whiteBorderColor);
}

.rangeProduct .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
}

.rangeProduct .rangeTitle {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 16px;
    min-height: 50px;
    color: var(--blueDarkMore);
}

.rangeProduct:hover .rangeTitle {
    color: var(--orageColor);
}

.rangeProduct .read_more_product {
    padding: 8px 18px;
    border-radius: 6px;
    line-height: 24px;
}

.product_popup {
    margin-bottom: 10px;
}

.titleh6 {
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: var(--darkColor);
    text-align: left;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.iti {
    width: 100%;
}

.telePhone.mobile {
    padding-left: 84px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 40px;
}

.community__thumb-inner img {
    width: 100%;
}

/* feature */
/* ABOUT CSS CUSTOM */
.features {
    width: 100%;
    padding: 50px 0 0;
    margin: 0;
    position: relative;
    background-image: url(../images/backgrounds.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.features:before {
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: #013277e0;
    background-image: -webkit-linear-gradient(90deg, rgba(6, 23, 51, 0) 0%, rgba(29, 42, 77, 0) 0%, #013277a3 80%);
}

.features .h2_title {
    color: #ffffff;
}

.features .h2_title {
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-red);
    font-size: 30px;
    padding-bottom: 10px;
}

.features .features-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 25px;
}

.features .feature-panel-holder {
    padding-top: 25px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.features .feature-panel-holder:hover .feature-panel.feature-panel-dark a {
    border-color: #fff;
    margin-top: 12px;
    color: #fff;
}

.features .feature-panel-holder .feature-panel {
    position: relative;
    padding: 20px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 33px;
    border-radius: 8px 0 8px 8px;
    border-color: rgba(249, 249, 249, .15);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.features .h2_title:after {
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    background: #d2deff none repeat scroll 0 0;
    margin-left: -50px;
    position: absolute;
    width: 100px;
}

.features .feature-panel-holder .feature-panel .feature-icon {
    margin-bottom: 5px;
}

.features .feature-panel-holder .feature-panel .feature-icon img {
    width: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    filter: invert(1);
    transition: .3s ease-in-out;
}

.features .feature-panel-holder .feature-panel .feature-content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    text-transform: inherit;
    margin-bottom: 6px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
}

.features .feature-panel-holder .feature-panel .feature-content p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    height: 25px;
    font-weight: normal !important;
}

.features .feature-panel-holder:hover .feature-panel.feature-panel-dark {
    background-color: #013277b5;
}

.features .feature-panel-holder:hover .feature-panel.feature-panel-dark .feature-content .titleFact {
    color: #fff;
}

.features .feature-panel-holder:hover {
    padding-top: 0;
}

.features .feature-panel-holder:hover .feature-panel .feature-content p {
    visibility: visible;
    opacity: 1;
    height: 30px;
}

.features .feature-panel-holder .feature-panel.feature-panel-dark {
    border: 1px solid rgb(255 255 255 / 18%);
}

.features .feature-panel-holder .feature-panel a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 13px;
    color: #ffffff;
    margin-top: -32px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.features .features-card .card-panel .panel-body .titleCat {
    font-size: 18px;
    line-height: 32px;
    font-weight: 800;
    color: #22285a;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.features .features-card .card-panel.reversed .panel-icon {
    margin-right: 0;
    margin-left: 40px;
    display: flex;
    align-items: center;
    transform: translateY(-7px);
}

.features .features-card .card-panel.reversed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.features .features-card .card-panel {
    border: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #ffffff;
    border-radius: 8px 0 8px 8px;
    padding: 30px 40px 34px;
    -webkit-box-shadow: 0 5px 83px 0 rgb(9 29 62 / 15%);
    box-shadow: 0 5px 83px 0 rgb(9 29 62 / 15%);
    position: relative;
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
    align-items: center;
}

.features .features-card .card-panel .panel-icon img {
    margin-left: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    min-width: 80px;
    width: 80px;
}

.features .more-features {
    text-align: center;
    margin-bottom: 20px;
}

.features .more-features p {
    font-weight: 700;
    text-align: center;
    font-size: 17px;
    color: #f4f4f4;
    position: relative;
    margin-bottom: 0;
}

.features .more-features.more-features-2 p a {
    color: #b6d6ff;
}

.features .more-features p a {
    position: relative;
    color: #22285a;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    text-transform: capitalize;
    padding-bottom: 8px;
}

.features .features-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    margin-top: -100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.counter-block img {
    width: 60px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--light-gray);
}

.div-cla p.fs-18.mt-0 {
    text-align: justify;
}

.counter-block p {
    overflow: hidden;
    text-align: center;
}

/*  */
.aboutTitle.title_1.text-start:after {
    margin: -3px 0px;
}

.fs-20.mt-3.mb-2.title3 {
    font-size: 18px;
    font-weight: 800;
    line-height: normal;
}

.slides {
    width: 50px;
    border: 1px solid #ccc;
    cursor: pointer;

}

.slides.active {
    border: 1px solid #b46f0d;
}

.w-100 {
    width: 100%;
}

/* pdf */
.item.youtube {
    display: flex;
    align-items: center;
    justify-content: center;
    background: red;
    color: #fff;
    height: 35px;
    border-radius: 5px;
    width: 40px;
}

.item.youtube svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}

.product_showcase {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 6px 0;
    margin-bottom: 8px;
}

.productBrochureandvideo {
    margin-right: 15px;
    border: 1px dashed var(--darkColor);
    padding: 2px 8px;
    border-radius: 5px;
}

.productBrochureandvideo a {
    font-weight: 800;
    color: var(--darkColor);
}

.productBrochureandvideo a svg {
    color: var(--darkColor);
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.productBrochureandvideo a {
    font-weight: 800;
    color: var(--darkColor);
}

/* css */
.more_info {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 10px;
}

/* video section */
.videoName {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--darkColor);
    line-height: 25px;
}

.videoFeedback {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: 5px;
}

.videoFeedback .image {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 15px;
}

.videoFeedback .image img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.videoFeedback .image span {
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    position: absolute;
    z-index: 99;
}

.videoFeedback .image span svg {
    color: #fff;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgb(255 255 255 / 1);
    border-radius: 100%;
    padding: 5px;
}

.videoFeedback .image:before {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.4;
    -webkit-transition: opacity 180ms ease;
    transition: opacity 180ms ease;
}

.videoFeedback .image:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    border-radius: inherit;
    display: block;
    right: 0;
    bottom: 0;
    background: linear-gradient(10deg, rgb(121 173 248 / 37%) 0, rgba(17, 17, 17, .01) 99%, #508de11c 100%);
}

/* 
.carousel-inner .carousel-caption::after {
    content: "";
    background: #000000b7;
    z-index: 2;
    position: absolute;
    width:80%;border-radius: 10px;
    height: 150px;left:10%;bottom:0px;border:2px solid #eeeeeea4;
}
.bannerInfo {
    max-width: 700px;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 99;
    padding: 15px 30px 20px;
    width: 700px;
}
.homeSlider .swiper-slide .bannerInfo p{text-align: center;}
.carousel-caption{max-width: 80%;}
.carousel-caption { 
    z-index: 9;
}
.carousel-caption { 
    align-items: center;
}
.carousel-caption { 
    bottom: 5%;border-radius: 10px;
    height: 150px;
    padding: 0px;;} */

.homeSlider .swiper-slide .bannerInfo {
    position: absolute;
    top: 0;
    left: 12%;
    height: 100%;
    max-width: 45%;
    width: 100%;
    display: flex;
    align-items: center;

}

.homeSlider .swiper-slide .bannerInfo.rightAlign {
    top: 0;
    left: auto;
    right: 12%;
}

.homeSlider .swiper-slide .bannerInfo .sliderTag {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    background: var(--orageColor);
    color: var(--colorWhite);
    padding: 3px 15px;
    display: inline-block;
    border-radius: 4px;
    line-height: normal;
}

.homeSlider .swiper-slide .bannerInfo .sliderTitle {
    line-height: normal;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 36px;
    /* text-transform: uppercase; */
    color: var(--colorWhite);
}

.homeSlider .swiper-slide .bannerInfo p {
    display: block;
    color: var(--colorWhite);
    font-size: 20px;
    text-align: left;
}

.homeSlider .active .sliderTag {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.1s;
}


.homeSlider .active .sliderTitle {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.homeSlider .active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    text-align: left;
    animation-delay: 0.3s;
}

.homeSlider .active .readMore {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 0.5s;
}

.clients .image {
    height: 125px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
    transition: .3s ease;
}

.clients .image:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .09);
    border-color: #d1d5db;
}

.clients .image img {
    max-width: 100%;
    max-height: 82px;
    object-fit: contain;
    display: block;
}

.col-md-5c .clients {
    padding: 0px;
}

.col-md-5c {
    width: 50%;
    padding: 0px 15px;
}

/* industry we serve */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.webpulse_home_clients .card {
    position: relative;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .13);
    transition: all 0.5s ease;
    cursor: pointer;
    border: 0px solid #eeeeeead;
    padding: 10px;
    aspect-ratio: 1;
    width: 93%;
    margin: 10px auto 15px;
}

/* Background Image Layer */
.webpulse_home_clients .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

/* Dark Overlay for Text Readability */
.webpulse_home_clients .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(1 50 119);
    /* Deep blue overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

/* Hover States */
.webpulse_home_clients .card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.webpulse_home_clients .card:hover::after {
    opacity: 1;
}

/* Card Content */
.webpulse_home_clients .card-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0px;
    transition: all 0.4s ease;
}

.webpulse_home_clients .card:hover .card-content {
    transform: translateY(-5px);
}

.webpulse_home_clients .icon-box {
    font-size: 45px;
    color: #f39c12;
    margin-bottom: 15px;
    transition: 0.4s;
}

.webpulse_home_clients .card:hover .icon-box,
.webpulse_home_clients .card:hover .titles3,
.webpulse_home_clients .card:hover p {
    color: #ffffff;
}

.webpulse_home_clients .card .titles3 {
    font-size: var(--headingFour);
    margin: 7px 0 7px;
    font-weight: 700;
    color: var(--darkColor);
    line-height: normal;
}

.webpulse_home_clients .card-content p {
    text-align: center;
}

/*  category section*/
.custom_home_category .banner {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    z-index: 0;
}

.custom_home_category .banner:before {
    left: 0;
}

.custom_home_category .banner:before {
    top: 50%;
    transform: translateY(-50%);
}

.custom_home_category .banner:before,
.custom_home_category .banner:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #ffffff4d;
    opacity: 0;
    z-index: 1;
}

.custom_home_category img {
    transition: all 0.5s ease;
}

.custom_home_category .banner:after {
    left: 50%;
    transform: translate(-50%);
}

.custom_home_category .banner:after {
    top: 0;
}

.custom_home_category .data_for_category {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    z-index: 1;
}

.custom_home_category .title {
    background: #fff;
    border-radius: 0px 100px 100px 0px;
    width: 90%;
    box-shadow: 17px 9px 21px 1px #001c2dab;
    padding: 10px;
    font-weight: 600;
    margin: 0px;
    font-size: var(--headingFour);
    line-height: 24px;
    color: var(--darkColor);
}

.custom_home_category .btn {
    padding: 0px;
    margin-left: 27px;
    font-size: 0px;
    border-radius: 0px;
    transition: .3s all ease;
    border: none;
}

.custom_home_category .banner:hover:before {
    animation: effect-height .7s ease-in;
    animation-fill-mode: forwards;
}

.custom_home_category .banner:hover>img {
    transform: scale(1.05);
}

.custom_home_category .banner:hover:after {
    animation: effect-width .7s ease-in;
    animation-fill-mode: forwards;
}

.custom_home_category .customwidth:hover .btn {
    padding: 5px 16px;
    font-size: 13px;
}

.custom_home_category .customwidth:hover .btn {
    padding: 9px 17px;
    margin-left: 27px;
    font-size: 16px;
}

/* testimonials */

.testimonial {
    border-right: 4px solid #013277;
    box-shadow: 0 0 10px rgba(0, 0, 0, .13);
    padding: 30px 30px 30px 130px;
    margin: 5px 15px 0px 15px;
    background: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    border-radius: 5px;
}

.testimonial:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -17px;
    border-top: 25px solid #f68e29;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(45deg);
}

.testimonial:after {
    content: "";
    position: absolute;
    top: -4px;
    left: -17px;
    border-top: 25px solid #f68e29;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(135deg);
}

.testimonial .pic {
    /* display: inline-block; */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 60px;
    left: 20px;
    border: 1px solid #3333331f;
    background: #f9f9f9;
    color: #013277;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .pic img {
    width: 100%;
    height: auto;
}

.testimonial .pic span {
    font-size: 45px;
    font-weight: bold;
}

.testimonial .description {
    margin-bottom: 10px;
    max-height: 160px;
    overflow-y: auto;
    line-height: 24px;
    font-size: var(--textSize);
    color: var(--textColor);
    text-align: justify;
    font-weight: 400;
}

.testimonial .title {
    text-transform: capitalize;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #013277;
    margin: 5px 0;
    transition: 0.4s;
}

.testimonial .post {
    font-size: 15px;
    color: #d7600d;
    font-style: italic;
    display: block;
}



.testimonial:hover {
    background: #f0752014;
    border-right: 4px solid #d7600d;
}

.testimonial:hover:before {
    border-top: 25px solid #013277 !important;
}

.testimonial:hover:after {
    border-top: 25px solid #013277 !important;
}

.testimonial:hover .title {
    color: #d7600d;
}

.testimonial:hover .post {
    font-size: 17px;
    color: #333;
}

/* .header .topBar:after { 
    right: calc(50% - 570px - 75px); 
}
.header .topBar:before { 
    width: calc(50% - 630px); 
} */
.header.stricky-fixed .topBar {
    display: none;
}

.header.stricky-fixed .navigation .logo {
    width: 220px;
}

.header.stricky-fixed .navigation .menu>ul>li a {
    padding: 16px 13px;
}

.header.stricky-fixed .navigation .menu>ul>li ul li a {
    padding: 10px 10px
}

header .topSocial li a svg {
    width: 14px;
    height: 14px;
}

.topSocial li a {
    width: 30px;
    height: 30px;
}

.header .topBar .topRight .searchForm .searchInput {
    border-radius: 5px;
    background: #ffffff40;
    border: 1px solid #ffffff4a;
    color: #fff;
}

.header .topBar .container p.ms-3 a.fs-6.fw-bold {
    color: #fff;
}

.header .topBar .container p.ms-3 a.fs-6.fw-bold:hover {
    color: #d7600d;
}

.header .topBar .topRight .searchForm .searchInput::placeholder {
    color: #fff
}

.header .topBar .topRight .searchForm .searchBtn {
    border-radius: 0 5px 5px 0;
}

.header .topBar {
    padding: 5px 0px;
}

.bg-light {
    background: #f7f7f7 !important;
}

.actionContact a:hover {
    color: #f68e29 !important;
}

/* footer */
/*************** Footer ***************/
.footer {
    float: left;
    width: 100%;
    background: #17191b;
}

footer ul {
    padding: 0;
    display: flow-root;
}

footer ul li {
    list-style: none;
}

footer ul li a,
.footer_widget .footerContact p,
.footer_widget .footerContact p a,
footer .link-secondary2 {
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    transition: 0.3s ease;
}

footer ul li a {
    display: block;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer ul li a:hover,
footer a.link-secondary2:hover,
footer a.link-secondary2:focus,
footer ul.social li a:hover svg {
    color: #f68e29 !important;
    fill: #f68e29;
}

footer .title3,
footer .mb-0.text-white2.fw-bold1.text-uppercase.title3.fs-20.lsp-5 {
    color: #f68e29;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

form#emailSubscribe {
    padding: 2px !important;
    background: #22512b;
}

form#emailSubscribe input::placeholder {
    color: #fff;
}

.w-100.rounded-5.px-4.py-4.bg-sky.d-block {
    background: #323232;
    border-radius: 10px;
    border: 1px solid #cccccc2e;
}

.bg-dark-green,
.btn-dark-green {
    background: #f68e29 !important;
    font-weight: 600;
    transition: 0.4s ease;
}

.bg-dark-green:hover,
.btn-dark-green:hover {
    background: #22512b !important;
}

.border-start1.border-end1.border-light-gray {
    padding: 0 15px;
    border-inline: 1px solid #ebebeb73;
}

.wps_copy {
    padding: 10px 0;
    line-height: 24px;
    background: #000000;
}

.bg-black-transparent {
    background: #000000bf !important;
}

.footer-shadow {
    box-shadow: 0 5px 5px #00000069;
}

.text-gray-light {
    color: #c7c7c7;
}

.text-muted {
    color: #181818 !important;
}

footer p.link-secondary21 {
    color: #999;
}

.post-title.link-secondary2 {
    display: flex;
    font-size: 16px;
    font-weight: 400;
}

.post-title.link-secondary2 a {
    padding-left: 10px;
}

span.post-title.link-secondary2 {
    padding-left: 8px;
    font-family: "Afacad Flux", sans-serif;
}

.w-48 {
    width: 48%;
    margin-right: 10px;
}

/* li.pb-1.float-start.w-48:last-child {
    width: 100%;
} */

.mt-02px {
    margin-top: 2px;
}

.z-index-99 {
    z-index: 99;
}

hr.border-white.bg-white {
    opacity: 0.2;
}

li.pb-1 a.link-secondary2.d-flex.align-items-start {
    font-size: 17px;
    font-weight: 400;
}

.actionContact {
    max-width: 45%;
    min-width: 45%;
}

.actionInfo {
    width: 100%;
    display: flex;
    align-items: center;
}

.actineTagline {
    color: #fff;
    font-size: 20px;
    max-width: 600px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    padding: 7px 0px;
}

.actionContact,
.actionContact a {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 18px;
    font-weight: 600;
}

.actionContact span.border.rounded-circle.p-1 {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actionContact a {
    font-weight: 700;
    font-size: 16px;
}

.actionContact a,
.actionContact .or {
    color: #fff;
    margin: 0px 5px;
}

.footer_widget .footerContact {
    width: 100%;
    display: flex;
}

.footer_widget .footerContact svg {
    color: #f68e29;
    margin-top: 0px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    float: left;
    min-width: 24px;
}

.footer_widget .footerContact .address_place,
.footer_widget .footerContact .email,
.footer_widget .footerContact .number {
    line-height: 15px;
}

.footer_widget .footerContact {
    width: 100%;
    display: flex;
}

.footerContact a:hover {
    color: #f68e29 !important
}

.counter-block.bg-light.rounded.p-3.text-center.h-350 {
    height: 100%;
}

.blog_details1 h2,
.blog_details1 h3 {
    margin: 10px 0px;
    padding: 0;
    line-height: normal;
    font-size: 18px;
    color: #fd982a;
}

/* YouTube Video Grid */
.yt-video-section {
    width: 100%;
    overflow: hidden;
}

/* Video Box */
.yt-video-box {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.yt-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button */
.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 50%;
    background: #d9141b;
    color: #fff;
    text-align: center;
    font-size: 20px;
    text-decoration: none;
    animation: ytPulse 1.4s infinite;
}

.yt-play-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Pulse Animation */
@keyframes ytPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 20, 27, 0.6);
    }

    100% {
        box-shadow: 0 0 0 40px rgba(217, 20, 27, 0);
    }
}

/* contact us */
/* contact us */
.h-170 .bg-sky {
    background: #013277 !important;
}

.corner:hover .bottom_corners:before,
.corner:hover .bottom_corners:after,
.corner:hover:before,
.corner:hover:after {
    border-color: #013277;
    height: 100%;
    z-index: 0;
    width: 100%;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.shadow {
    box-shadow: 0px 0px 5px 1px #ccc !important;
}

.z-index-1 {
    z-index: 1;
}

.h-170 {
    height: 100%;
}

.corner:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    z-index: 0;
    border: 2px solid #013277;
    border-width: 2px 0 0 2px;
    border-radius: 2px 0 0 0;
}

.corner:after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #013277;
    border-width: 2px 2px 0 0;
    border-radius: 0 2px 0 0;
}

.corner .bottom_corners:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -2px;
    z-index: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #013277;
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 2px;
}

.corner .bottom_corners:after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    z-index: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #013277;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 2px 0;
}

.base-header2 {
    position: relative;
    z-index: 9;
}

.z-index-9 {
    z-index: 9;
}

.icon-holder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.single-item.p-3.pt-5.shadow p {
    text-align: center;
}

.scrollbar-width {
    max-height: 570px;
    overflow-y: auto;
    padding-right: 15px;
}

.col-lg-4.col-md-6 .singleItem {
    padding: 5px;
    margin: 0px;

}

.col-lg-4.col-md-6 .feature_item {
    margin: 0px;
}

/* time process */
/* Top Heading Styles */
.main-title {
    color: #0c1a30;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.main-title span {
    color: #2b43b5;
}

.sub-title {
    color: #8a94a6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.divider-dots {
    color: #b0b9c6;
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

/* Timeline Container & Central Line */
.timeline-section {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #1d3557;
    transform: translateX(-50%);
    z-index: 1;
}

/* Tight Card-to-Card Vertical Gap */
.step-row {
    margin-top: -80px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Center Circle Number Badge */
.number-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Outer Box / Card Layout */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

/* Left and Right Short Dotted Connectors */
.connect-left::after {
    content: '..........';
    position: absolute;
    right: -60px;
    top: 33%;
    transform: translateY(-50%);
    letter-spacing: 2px;
    z-index: -1;
    font-size: 14px;
}

.connect-right::after {
    content: '..........';
    position: absolute;
    left: -45px;
    top: 74%;
    transform: translateY(-50%);
    letter-spacing: 2px;
    z-index: -1;
    font-size: 14px;
}

/* SVG Icon Circle style inside card */
.icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-container svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Titles inside boxes */
.card-heading {
    margin-bottom: 5px;
    font-weight: 600;
    /* font-size: var(--headingFour);
    line-height: 24px; */
    font-size: 17px;
    line-height: 16px;
}

p.card-body-text {
    margin: 0px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
    .timeline-section .step-row:nth-child(even) {
        position: absolute;
        margin-top: -10px !important;
        position: absolute;
        top: 10px;
    }

    .timeline-section .position-relative {
        margin-bottom: 45px;
    }

    .timeline-section {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .col-custom-center {
        top: -40px;
        position: relative;
    }

    .timeline-section .step-row:nth-child(even) .col-custom-center {
        position: relative;
        left: inherit;
        top: 0px;
        right: -20px;
    }

    .timeline-section .step-row:nth-child(even) .number-badge {
        position: absolute;
    }

    .step-row {
        margin-bottom: -36px;
    }

    .timeline-section::before {
        bottom: 70px;
    }

    .col-custom-side {
        width: 45%;
    }

    .col-custom-center {
        width: 10%;
    }

    .info-card {
        max-width: 100%;
        height: 140px;
    }

    .order-md-1 .info-card {
        margin-right: 10px;
    }

    .order-md-3 .info-card {
        margin-left: 10px;
    }
}

.col-custom-side {
    width: 45%;
}

.col-custom-center {
    width: 10%;
}

/* --- Individual Steps Colors --- */
.badge-s1 {
    background-color: #6a0dad;
}

.card-s1 {
    border: 1px solid #6a0dad;
    border-left: 6px solid #6a0dad;
}

.icon-s1 {
    background-color: #f3e8ff;
    color: #6a0dad;
}

.text-s1 {
    color: #6a0dad;
}

.connect-left-s1::after {
    color: #6a0dad;
}

.badge-s2 {
    background-color: #0056b3;
}

.card-s2 {
    border: 1px solid #0056b3;
    border-right: 6px solid #0056b3;
}

.icon-s2 {
    background-color: #e6f0fa;
    color: #0056b3;
}

.text-s2 {
    color: #0056b3;
}

.connect-right-s2::after {
    color: #0056b3;
}

.badge-s3 {
    background-color: #198754;
}

.card-s3 {
    border: 1px solid #198754;
    border-left: 6px solid #198754;
}

.icon-s3 {
    background-color: #e8f5e9;
    color: #198754;
}

.text-s3 {
    color: #198754;
}

.connect-left-s3::after {
    color: #198754;
}

.badge-s4 {
    background-color: #e11d48;
}

.card-s4 {
    border: 1px solid #e11d48;
    border-right: 6px solid #e11d48;
}

.icon-s4 {
    background-color: #ffe4e6;
    color: #e11d48;
}

.text-s4 {
    color: #e11d48;
}

.connect-right-s4::after {
    color: #e11d48;
}

.badge-s5 {
    background-color: #7c3aed;
}

.card-s5 {
    border: 1px solid #7c3aed;
    border-left: 6px solid #7c3aed;
}

.icon-s5 {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.text-s5 {
    color: #7c3aed;
}

.connect-left-s5::after {
    color: #7c3aed;
}

.badge-s6 {
    background-color: #ea580c;
}

.card-s6 {
    border: 1px solid #ea580c;
    border-right: 6px solid #ea580c;
}

.icon-s6 {
    background-color: #fff7ed;
    color: #ea580c;
}

.text-s6 {
    color: #ea580c;
}

.connect-right-s6::after {
    color: #ea580c;
}

.badge-s7 {
    background-color: #0284c7;
}

.card-s7 {
    border: 1px solid #0284c7;
    border-left: 6px solid #0284c7;
}

.icon-s7 {
    background-color: #f0f9ff;
    color: #0284c7;
}

.text-s7 {
    color: #0284c7;
}

.connect-left-s7::after {
    color: #0284c7;
}

.badge-s8 {
    background-color: #16a34a;
}

.card-s8 {
    border: 1px solid #16a34a;
    border-right: 6px solid #16a34a;
}

.icon-s8 {
    background-color: #f0fdf4;
    color: #16a34a;
}

.text-s8 {
    color: #16a34a;
}

.connect-right-s8::after {
    color: #16a34a;
}

/* Custom Column Layout for bringing left-right cards extremely close */
@media (min-width: 768px) {
    .col-custom-side {
        width: 46.5%;
    }

    .col-custom-center {
        width: 7%;
    }
}

/* Bottom Footer Card */
.bottom-banner {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    max-width: 850px;
}

.target-icon-box {
    width: 50px;
    height: 50px;
    border: 2px solid #2b43b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b43b5;
}

.target-icon-box svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile Screens Optimization */
@media (max-width: 767.98px) {
    .timeline-section::before {
        left: 20px;
    }

    .step-row {
        display: flex;
        flex-direction: column;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .col-custom-side,
    .col-custom-center {
        width: 100% !important;
    }

    .order-md-1,
    .order-md-2,
    .order-md-3 {
        order: unset !important;
    }

    .info-card {
        margin-left: 45px;
        border-left: 6px solid #2b43b5 !important;
        border-right: none !important;
        text-align: left !important;
        flex-direction: row !important;
    }

    .number-badge {
        position: absolute;
        left: -1px;
        top: 20px;
        z-index: 10;
    }

    .connect-left::after,
    .connect-right::after {
        display: none !important;
    }

    .bottom-banner {
        border-radius: 20px;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* counter section */
.counter {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 210px;
    min-height: 246px;
    padding: 25px 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.counter:after {
    content: '';
    background: linear-gradient(to right, #eff0f2, #fefefe);
    height: 152px;
    width: 152px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    top: 25px;
    transition: all 0.5s ease;
    left: 50%;
    z-index: -1;
}

.counter .counter-value {
    background: #cd7c1c;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    width: 100%;
    padding: 5px 0 0px;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6), 0 0 0 2px #fff;
    position: absolute;
    left: 0;
    bottom: 7px;
    z-index: -1;
}

.counter .counter-icon {
    background: linear-gradient(to right, #cd7c1c, #ffa943);
    font-size: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin: 18px auto 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}

.counter:hover .counter:after {
    background: linear-gradient(to right, #d2d4db, #e5d6c6) !important;
}

.counter .title3 {
    color: #cd7c1c;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 22px;
    padding: 0 30px;
    margin: 0 0 15px;
}

.counter .counter-icon svg {
    width: 40px;
    height: 40px;
}

.counter.green .counter-value {
    background: #182b54;
}

.counter.green .counter-icon {
    background: linear-gradient(to right, #182b54, #284b95);
}

.counter.green .title3 {
    color: #182b54;
}

/* .counter.blue .counter-value{ background: #28a9e2; }
.counter.blue .counter-icon{ background: linear-gradient(to right,#013850,#0057c5); }
.counter.blue .title3{ color: #0057c5; }
.counter.gray .counter-value{ background: #36474f; }
.counter.gray .counter-icon{ background: linear-gradient(to right,#36474f,#0d0e10); } */
/* .counter.gray .title3{ color: #0d0e10; } */
@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

@media (min-width:1024px) {
    .feature_sec .title_h3 a {
        line-height: normal;
        font-size: 18px;
        height: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .feature_sec .title_h3 {
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .products .feature_sec {
        height: 205px;
    }

    .testimonial .description {
        height: 125px;
    }

    .col-md-5c {
        width: 20%;
    }
}





.client-mainbox {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
}

.main-client-box {
    grid-column: span 2
}

.main-client-box:nth-child(6) {
    grid-column: 2/span 2
}

.main-client-box:nth-child(7) {
    grid-column: 4/span 2
}

.main-client-box:nth-child(8) {
    grid-column: 6/span 2
}

.main-client-box:nth-child(9) {
    grid-column: 8/span 2
}

@media(max-width:575px) {
    .client-mainbox {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }
}



/* industry we serve */


.project-card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    /* background: rgb(0 0 0 / 28%); */
    background: linear-gradient(0deg, #000000d1, transparent, transparent);
    transition: 0.4s ease;
}

.project-card .title4 {
    position: absolute;
    left: 22px;
    right: 15px;
    bottom: 20px;
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    z-index: 2;
    line-height: normal;
    transition: 0.4s ease;
}

.project-card .title4 span {
    font-size: 22px;
}

.project-card:hover .project-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.project-card:hover .title4 {
    bottom: 32px;
}

.homeAbout ul li {
    position: relative;
    line-height: 24px;
    font-size: var(--textSize);
    list-style: circle;
    margin-left: 20px;
    color: var(--colorWhite);
    width: 100%;
}

.homeAbout ul {
    padding: 0px;
    margin: 10px 0px;
}

.homeAbout .title1 {
    margin-bottom: 0px;
}

.scrollbar-width-home {
    max-height: 355px;
    margin-bottom: 20px;
    padding-right: 15px;
    overflow: hidden;
    overflow-y: auto;
}

@media (max-width: 767px) {
    .project-card {
        height: 220px;
    }

    .project-card .title4 {
        bottom: 85px;
        font-size: 18px;
    }
}

.standards-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.standard-item {
    background: #fff;
    color: #f97316;
    border: 1px solid #ffd5b5;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    transition: .3s;
}

.standard-item:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, .25);
}

.standard-item2 {
    color: #f97316;
    border: 1px solid #ffd5b5a8;
    padding: 14px 19px;
    transition: .3s;
    border-radius: 10px;
    background: oklch(0.98 0.02 73.69);
    width: 49%;
    text-align: center;
}

.standard-item2 .tt {

    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.standard-item2 span {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    text-transform: capitalize;
    letter-spacing: .4px;
}

.standard-item2:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, .25);

}

.standards-list2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.box-table1 .aboutTitle,
.box-table.bg-white.overflow-hidden .aboutTitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.text-ed p {
    margin-bottom: 0px;
}

.ba-points2 {
    background: #fff;
    border-radius: 10px;
    padding: 15px 11px;
    color: #102033;
    margin-bottom: 5px;
    font-weight: 500;
    box-shadow: 0px 0px 5px 1px #1e4f9121;
    border: 1px solid #f9731640;
    border-left: 5px solid #fe7f2a;
}

.rounded-pill.px-3.py-1.fw-bold.border.border-gray.mt-3.bg-light2.text-center {
    background: oklch(0.97 0.05 156.72);
}

.ba-points2 .tt2 {
    color: #fd7f2b;
    font-weight: 700;
    font-size: 16px;
}

@media(max-width:768px) {


    .standards-list {
        gap: 15px;
    }

    .standard-item {
        width: calc(50% - 8px);
        text-align: center;
        padding: 12px 10px;
        font-size: 14px;
    }

}

@media(max-width:480px) {

    .standard-item {
        width: 100%;
    }

}


.videoSection {
    padding: 70px 0;
    background: #fbf7f3;
}


.videoSectionHead p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.videoContentBox {
    height: 100%;
    padding: 38px;
    background: var(--orageColor);
    border-radius: 15px;
    color: #fff;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.videoSmallTitle {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    opacity: .85;
}

.videoContentBox h3 {
    margin: 0 0 15px;
    font-size: 28px;
    line-height: 1.3;
    color: #fff;
}

.videoContentBox p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
}

.videoPoints {
    margin: 0;
    padding: 0;
    list-style: none;
}

.videoPoints li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
}

.videoPoints li:last-child {
    margin-bottom: 0;
}

.videoPoints svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.videoMediaBox {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 15px;
    background: #ddd;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.videoMediaBox img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
}

/* .videoPlayBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--orageColor);
    color: #fff;
    box-shadow: 0 0 0 14px color-mix(in srgb, var(--orageColor) 15%, transparent);
    transition: .3s ease;
} */

.videoPlayBtn:hover {
    background: var(--orageColor);
    color: #fff;
    transform: scale(1.1);
}

.videoPlayBtn svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.videoMediaBox {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 15px;
}

.videoPlaceholder {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.videoPlaceholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .28);
}

.videoPlayBtn {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--orageColor);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 0 14px color-mix(in srgb, var(--orageColor) 15%, transparent);
    transition: 0.3s;

}

.videoPlayBtn svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.videoPlaceholderText {
    position: absolute;
    left: 35px;
    bottom: 30px;
    z-index: 2;
    color: #fff;
}

.videoPlaceholderText span {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.videoPlaceholderText h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

.videoPopup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .85);
}

.videoPopup.active {
    display: flex;
}

.videoPopupInner {
    position: relative;
    width: min(1000px, 94vw);
}

.videoIframeWrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.videoIframeWrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.videoPopupClose {
    position: absolute;
    top: -45px;
    right: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

@media (max-width: 575px) {

    .videoMediaBox,
    .videoPlaceholder {
        min-height: 250px;
    }

    .videoPlayBtn {
        width: 58px;
        height: 58px;
    }

    .videoPlaceholderText {
        left: 20px;
        bottom: 18px;
    }

    .videoPlaceholderText h3 {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .videoSection {
        padding: 55px 0;
    }

    .videoContentBox,
    .videoMediaBox {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .videoMediaBox,
    .videoMediaBox img {
        min-height: 330px;
    }
}

@media (max-width: 575px) {
    .videoSection {
        padding: 45px 0;
    }

    .videoSectionHead .title_1 {
        font-size: 28px;
    }

    .videoContentBox {
        padding: 26px 22px;
    }

    .videoContentBox h3 {
        font-size: 23px;
    }

    .videoMediaBox,
    .videoMediaBox img {
        min-height: 240px;
    }

    .videoPlayBtn {
        width: 58px;
        height: 58px;
    }
}



/* new category page */
.newcate .cmTitle {
    padding: 15px 25px;
    margin-bottom: 20px;
    background: var(--colorWhite);
    border-left: 3px solid var(--orageColor);
    background: #f9f9f9;
}

.newcate ul {
    display: flow-root;
}

.newcate ul li {
    width: 100%;
    float: left;
}

.box-table.bg-white.overflow-hidden {
    border-radius: 10px;
    box-shadow: 0px 0px 5px 1px #cccccc6b;
    font-size: 14px;
}

.box-table.bg-white.overflow-hidden td {
    padding: 13px 15px;
    border-color: rgb(254 127 42 / 18%);
    line-height: normal;
}

.box-table.bg-white.overflow-hidden th {
    padding: 5px 15px;
    background: #fe7f2a !important;
    border: 1px solid #eee;
}

.box-table .table>:not(:first-child) {
    border-top: 1px solid rgb(254 127 42 / 18%);
}

.table-bordered>:not(caption)>* {
    border-color: rgb(254 127 42 / 18%);
}

.imagesLeft2:before {
    content: "";
    position: absolute;
    top: 0px;
    height: 100%;
    left: 0px;
    background: #00000059;
    width: 100%;
}

.ba-points {
    display: grid;
    gap: 5px;
}

.ba-points div {
    background: #fff;
    border-radius: 10px;
    padding: 10px 11px;
    color: #102033;
    font-weight: 500;
    box-shadow: 0px 0px 5px 1px #1e4f9121;
    border: 1px solid #1e4f9138;
    border-left: 5px solid #fe7f2a;
}

.bg-yellos {
    background: #e87c1a;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}

/* dkkd */
.feature_sec.text-start ul {
    padding: 0px;
    margin: 0px;
}

.feature_sec.text-start ul li {
    list-style: circle;
    margin-left: 18px;
}

.service-city-card1 {
    display: block;
    position: relative;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 15px;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
    transition: 0.35s ease;
    box-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px #00000017;
}

.service-city-card1 .title4 {
    font-size: var(--headingFour);
    font-weight: 500;
    color: var(--darkColor);
    line-height: normal;
}

.city-icon {
    width: 45px;
    max-width: 45px;
    min-width: 45px;
    height: 45px;
    background: oklch(0.98 0.02 73.69);
    color: #ff7f2b;
    border-radius: 5px;
    display: grid;
    place-items: center;
    transition: 0.35s ease;
}

.city-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ff7f2b;
}

.service-city-card1 p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 10px;
    padding-top: 10px;
}

.service-city-card1 ul,
.feature_sec.text-start.ps-3 ul {
    padding: 10px 0px 0px;
    margin: 0px;
}

.service-city-card1 li,
.feature_sec.text-start.ps-3 ul li {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 0px;
    list-style: circle;
    margin-left: 18px;
}

.feature_sec.text-start.ps-3 ul {
    padding-top: 0px
}

label.error {
    color: red;
}

footer .link-secondary2 {
    font-size: 14px;
}

.category-gallery .hover_effect {
    aspect-ratio: 1.769 / 1;
    border-radius: 10px;
}

.gallery_page .gallery_item img {
    aspect-ratio: 1.769 / 1;
    border-radius: 2px;
    object-fit: cover;
}

.gallery_page .gallery_item {
    border-radius: 10px;
}

/* Custom 4-Quadrant Pie Chart using Pure CSS */
.shouldConsult .pie-chart-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.shouldConsult .pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Colors matched precisely from the image */
    background: conic-gradient(#008eff 0% 25%,
            #00d285 25% 50%,
            #ffb21d 50% 75%,
            #ff4b5c 75% 100%);
    /* White cross lines inside the pie chart */
    box-shadow: inset 0 0 0 4px #fff;
    position: relative;
}

/* Inner cross divider lines */
.shouldConsult .pie-chart::before,
.shouldConsult .pie-chart::after {
    content: '';
    position: absolute;
    background: #fff;
    z-index: 1;
}

.shouldConsult .pie-chart::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

.shouldConsult .pie-chart::after {
    top: 50%;
    left: 0;
    height: 4px;
    width: 100%;
    transform: translateY(-50%);
}

/* Labels around the Pie Chart (Desktop view) */
.shouldConsult .chart-label {
    position: absolute;
    font-weight: 700;
    font-size: 0.95rem;
    width: 160px;
    line-height: 1.3;
}

.shouldConsult .label-top-right {
    top: 15%;
    left: 105%;
    color: #0000d6;
    text-align: left;
}

.shouldConsult .label-bottom-right {
    bottom: 15%;
    left: 105%;
    color: #007f7f;
    text-align: left;
}

.shouldConsult .label-bottom-left {
    bottom: 15%;
    right: 105%;
    color: #b77900;
    text-align: right;
}

.shouldConsult .label-top-left {
    top: 15%;
    right: 105%;
    color: #b81d1d;
    text-align: right;
}

/* Bottom Legend Dots */
.shouldConsult .legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    flex-shrink: 0;
}

.shouldConsult .dot-blue {
    background-color: #008eff;
}

.shouldConsult .dot-green {
    background-color: #00d285;
}

.shouldConsult .dot-orange {
    background-color: #ffb21d;
}

.shouldConsult .dot-red {
    background-color: #ff4b5c;
}

.shouldConsult .legend-text {
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

/* Responsive adjustments for Tablets/Mobile screens */
@media (max-width: 991.98px) {
    .shouldConsult .chart-label {
        display: none;
        /* Hide outer labels on smaller screens to prevent overlap */
    }

    .shouldConsult .pie-chart-wrapper {
        margin-bottom: 2rem;
    }
}

/* Container holding the timeline */
.shouldConsult .timeline-container {
    position: relative;
    padding: 0 0px;
    margin-top: 20px;
    display: flow;
    float: left;
    width: 100%;
}

/* The horizontal dotted line */
.shouldConsult .timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 2px dotted #cccccc;
    z-index: 1;
}

/* Timeline node containing the vertical pointer line and orange dot */
.shouldConsult .timeline-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Orange indicator line extending up past the dotted line */
.shouldConsult .node-pointer {
    width: 2px;
    height: 25px;
    background-color: #ff8c1a;
    position: absolute;
    top: -25px;
}

/* Orange dot sitting exactly on the dotted line */
.shouldConsult .node-dot {
    width: 12px;
    height: 12px;
    background-color: #ff8c1a;
    border-radius: 50%;
    position: absolute;
    top: 0px;
}

/* Process Feature Cards */
.shouldConsult .feature-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-top: 25px;
    width: 100%;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.shouldConsult .feature-card:hover {
    transform: translateY(-3px);
}

/* SVG Icon Sizing */
.shouldConsult .card-svg-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}

.shouldConsult .card-text {
    font-weight: 500;
    font-size: 0.95rem;
    color: #0b1a30;
    line-height: 1.4;
    text-align: center;
}

/* Mobile Responsive View */
@media (max-width: 767.98px) {
    .shouldConsult .timeline-line {
        display: none;
    }

    .shouldConsult .timeline-node {
        margin-bottom: 2rem;
    }

    .shouldConsult .node-pointer,
    .node-dot {
        display: none;
    }

    .shouldConsult .feature-card {
        margin-top: 0;
        min-height: auto;
        padding: 25px 20px;
    }

    .shouldConsult .section-title {
        margin-bottom: 2.5rem;
    }
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 1px;
}

.w-35 {
    width: 35%;
}

.w-65 {
    width: 65%;
}

.slide img {
    width: 100%;
}

.homeAbout h4 {
    position: relative;
    color: var(--orageColor);
    font-size: var(--headingThree);
    font-weight: 700;
    padding: 0px;
    line-height: normal;
    margin: 10px 0px;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100%;
        padding: 0px 5%;
    }
}