:root {
    --primary-color: #FFFFFF;
    --secondary-color: #1B1B1B66;
    --text-color: #A7AABB;
    --bg-color: #00011D;
    --accent-color: #A93E17;
    --accent-secondary-color: #15399A;
    --divider-color: #FFFFFF0F;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Inter", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/


@font-face {
    font-family: 'Arial Regular';
    font-style: normal;
    font-weight: normal;
    src: local('fonts/Arial Regular'), url('fonts/ARIAL.woff') format('woff');
}

html {
  scroll-behavior: smooth;
}


.nav-link.active {
  color: #00F0FF !important; /* highlight active menu */
  font-weight: bold;
}
li.nav-item.submenu ul li a.nav-link.active {
    color: #890aff !important;
}



body {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;

    line-height: 1.1em;
    color: var(--text-color);
    background: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: #11122bc1;
    border-left: 1px solid #11122b;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8F00FF 0.26%, #00F0FF 99.99%);

}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    z-index: 1;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .1);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: linear-gradient(270deg, #00F0FF 0%, #8F00FF 100%);
    background-size: 200% auto;
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    outline: none;
    padding: 17px 30px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;

}

.btn-default:hover {
    background-position: right center;
}

.btn-default.btn-highlighted {
    border: 1px solid var(--accent-color);
    background: var(--bg-color);
    padding: 16px 30px;
}

.btn-default.btn-highlighted::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default.btn-highlighted:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.readmore-btn {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 34px;
}

.readmore-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::after {
    border-color: var(--accent-color);
    transform: rotate(45deg);
}

.cb-cursor:before {
    background: linear-gradient(90.01deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-color) transparent var(--accent-secondary-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-title.section-title-center {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 100px;
    padding: 10px 50px;
    margin-bottom: 15px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background: url('../images/dwarf/title-first-line.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 40px;
    height: 2px;
}

.section-title h3::after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../images/dwarf/title-second-line.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 40px;
    height: 2px;
}

.section-title h1 {
    font-size: 60px;
    line-height: 75px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 0;
    cursor: default;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 0;
    cursor: default;
    line-height: 45px;
}

.section-title h1 span,
.section-title h2 span {
    font-weight: 700;
    background: linear-gradient(140deg, #00F0FF 0%, #8F00FF 100%);

    /* background-size: 200% auto; */
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.section-title.featurenew.rightt h2 {
    font-size: 40px;
    width: 500px;
    padding-bottom: 50px;
    line-height: 60px;
}

/* .section-title h1:hover span,
.section-title h2:hover span {
    background-position: right center;
} */

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    color: #DADADA;
}

.section-title-content p {
    margin: 0;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    text-align: left;
    margin-top: 30px;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

header.main-header .header-sticky {
  top: 0;
  z-index: 100;
  width: 100%;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--bg-color);
    border-bottom: 1px solid var(--divider-color);
}

.navbar {
    padding: 30px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper .navbar-nav {
    /* border: 1px solid var(--dark-divider-color);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
	border-radius: 30px; */
    padding: 0 10px;
}



.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    padding: 13px 25px !important;
    border-radius: 100px;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
    margin-top: 4px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #00F0FF;
}

.main-menu ul li a:focus-visible {
    box-shadow: none;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 200px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    text-align: left;
    padding: 13px 0px;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding:10px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color:#111;
    padding:10px 20px !important;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: #0ddbff;
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: none;
    background-size: 200% auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open {
    background-position: right center;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--primary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--primary-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: #1A1A3A;
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 20px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--bg-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--bg-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    padding: 190px 0 290px;
}


/* .video-image {
    background-image: url('../images/dwarf/second-vidimg-bg.png') !important;
	background-repeat: no-repeat;
	background-size: cover;
} */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(1deg, rgba(0, 0, 0, 0.00) 20.46%, #00011D 99.49%), linear-gradient(179deg, rgba(0, 0, 0, 0.00) 0.44%, #00011D 119.12%);

    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}


.hero-btn {
    justify-content: center;
}

.hero .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image {
    background: url('../images/hero-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 225px 0 175px;
}

.hero.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.00) 20.46%, #000 99.49%), linear-gradient(179deg, rgba(0, 0, 0, 0.00) 0.44%, #000 119.12%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 30px;
    text-align: center;
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 100%;
    /* max-width: 840px; */
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content .section-title p {
    font-size: 18px;
    color: var(--primary-color);
}

.hero-content-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content-btn .video-play-button {
    display: inline-flex;
    align-items: center;
}

.hero-content-btn .video-play-button p {
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    margin: 0 15px 0 0;
}

.hero-content-btn .video-play-button a {
    height: 50px;
    width: 50px;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.hero-content-btn .video-play-button a:hover {
    background-position: right center;
}

.hero-content-btn .video-play-button a i {
    font-size: 18px;
    color: var(--primary-color);
}

.hero .our-solutions-circle {
    text-align: end;
}

.our-solutions-circle a {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    overflow: hidden;
}

.our-solutions-circle a figure img {
    max-width: 200px;
    border-radius: 50%;
    animation: agencycirclerotate 25s infinite linear;
}

@keyframes agencycirclerotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.our-solutions-circle a:hover figure img {
    animation-play-state: paused;
}

.our-solutions-circle .agency-circle-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90px;
    width: 90px;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.our-solutions-circle a:hover .agency-circle-arrow {
    background-position: right center;
}

.our-solutions-circle .agency-circle-arrow img {
    max-width: 38px;
    transition: all 0.4s ease-in-out;
}

.our-solutions-circle a:hover .agency-circle-arrow img {
    transform: rotate(45deg);
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
    /* background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%); */
    padding: 0px 0;
}

.scrolling-ticker-box {
    --gap: 60px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 100s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.scrolling-content img {
    width: 100%;
    max-width: 173px;
    height: 100px;
    padding: 3px;
}

/************************************/
/***       06. About Us css	      ***/
/************************************/
.our-benefititle.featuessec {
    margin-top: 50px;
}


.about-us {
    padding: 10px 0 0;
}

.about-image {
    text-align: center;
}

.about-us-content {
    padding-right: 35px;
    padding-top: 80px;
}

.section-title.featurenew h2 {
    font-size: 45px;
    width: 350px;
    line-height: 55px;
}
.our-benefititle.featuessec.new {
    padding-top: 100px !important;
    background-image: url(../images/dwarf/fboutlet-rightareea.png);
    background-repeat: no-repeat;
   background-position: right top;
    background-size: auto;
    background-position-y: -70px;
}

.about-us-list {
    border-left: 1px solid var(--divider-color);
    display: flex;
    flex-wrap: wrap;
    gap: 70px 30px;
    padding-left: 50px;
}

.about-us-item {
    width: 100%;
}

.about-us-item .icon-box {
    margin-bottom: 20px;
}

.about-us-item .icon-box img {
    max-width: 40px;
}

.about-us-item-content h3 {
    position: relative;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.about-us-item-content h3:after {
    content: '';
    position: absolute;
    top: 3px;
    left: -60px;
    background: url('../images/dot-accent-icon.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.about-us-item-content p:last-child {
    margin: 0;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
    padding: 80px 0;
}

.our-service-image {
    height: 100%;
}

.our-service-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.our-service-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.43;
    object-fit: cover;
    border-radius: 20px;
}

.service-boxes {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    background-image: url(../images/dwarf/feature-bg-two.png);
    background-repeat: no-repeat;
    background-size: contain;

}
.our-benefit-img {
    background-image: url(../images/dwarf/feature-img-right.png);
    background-repeat: no-repeat;
    background-size: cover
}
.about-us.storee {
    background-image: url(../images/dwarf/feature-bg-two.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top;
    background-position-y: -64px;
    background-position-x: -144px;
}

.about-us.newonebg {
    background-image: none !important;

}

.service-item {
    position: relative;
    width: calc(25% - 25px);
    background: #1a1a3a;
    border-radius: 16px;
    padding: 60px 30px 30px;
    text-align: left;
    transition: all 0.4s ease;
    overflow: visible;
    margin-top: 50px;
    height: 180px;
    cursor: pointer;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0);

border: 1px solid transparent;
}

.service-item:hover {
    height: 230px; /* grows smoothly */
    transform: translateY(-30px);
    border: double 1px transparent; /* needed to create the "space" for gradient */
    border-radius: 16px;
    background-image: linear-gradient(#1a1a3a, #1a1a3a),
                      linear-gradient(to right, #00F0FF, #8F00FF);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2)
}

/* .service-item .icon-box:hover {
    margin-top: 15px;
} */

.service-solution-item:hover {
    /* box-shadow: 0px 0px 24px 0px #0099FF66 inset;
     transition: box-shadow 0.5s ease-in-out; */
}


.service-item .icon-box {
    position: absolute;
    top: -30px;
    /* floating outside initially */
    left: 30px;
    width: 60px;
    height: 60px;
    background: #00011D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
}

.section-title h5 {
    width: 165px;
    margin: auto;
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    /* letter-spacing: 1px; */
    text-transform: capitalize;
    color: #00F0FF;
    background: #1A1A3A;
    /* border: 1px solid var(--divider-color); */
    border-radius: 100px;
    padding:17px 0px;
    margin-bottom: 20px;
      -webkit-transition: all 1s ease;
	transition: all 1s ease;
}


.shadow-al::after {
  content: "";
  position: absolute;
  z-index: -1;
 left: -7%;
    height: 120%;
    width: 114%;
    opacity: 0;
    top: -10%;
  border-radius: 50px;
  background: #00F0FFE5;
background: linear-gradient(45deg, #00F0FF, #8F00FF);
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);


      /* Animation added */
  animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
}



.service-item .icon-box img {
    width: 28px;
    height: 28px;
    /* filter: brightness(0) invert(1);  */
    /* filter: invert(1); */
    transition: all 0.4s ease;
}

.service-item:hover .icon-box {
    top: 20px;
    background: #00011D;
    transform: scale(1.05);
    border-radius: 15px;
}

.service-item:hover .service-item-content {
    margin-top: 45px;
    overflow: hidden;

}



.service-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.service-item-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}


.service-item-content h3 {
    font-size: 17.5px;
    line-height: 1.3em;
    text-transform: capitalize;
    margin-bottom: 10px;
}


.service-item .icon-box {
    margin-right: 30px;
}

.service-item-content:hover h3 {
    color: #00F0FF;
}


.service-item:hover {
    /* padding-top: 30px;
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(to right, #8c04ff, #4f6aff) 1;
    border-image-slice: 1;
    border-radius: 10px; */
}



.service-item-content h3 a {
    color: inherit;
}

.service-item-content p {
    margin-bottom: 0px;
}

.section-title.featurenew.rightt {
    text-align: right;
    justify-items: end;
}

.section-footer-text {
    text-align: center;
    margin-top: 60px;
}

.section-footer-text p {
    color: var(--white-color);
    margin: 0;
}

.section-footer-text p span {
    background: linear-gradient(90deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
    font-weight: 400;
    line-height: 1em;
    color: var(--primary-color);
    border-radius: 100px;
    padding: 2px 10px;
    margin-right: 10px;
}

.section-footer-text a {
    font-weight: 700;
    text-decoration: underline;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.section-footer-text a:hover {
    background-position: right center;
}

/************************************/
/***     08. Our Feature css      ***/
/************************************/

.our-feature {
    padding: 80px 0 50px;
}

.our-feature-item {
    position: relative;
    display: flex;
    gap: 30px 90px;
    align-items: end;
    flex-wrap: wrap;
    background: var(--secondary-color) url('../images/feature-item-bg-shape.png') no-repeat;
    background-position: top left;
    background-size: auto;
    height: calc(100% - 30px);
    border: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    padding: 60px 0 0 60px;
    margin-bottom: 30px;
    overflow: hidden;
}

.feature-item-content {
    width: calc(38% - 45px);
    height: 100%;
}

.feature-item-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-item-content p:last-child {
    margin-bottom: 0;
}

.feature-item-content a {
    margin-top: 15px;
}

.feature-item-image {
    position: relative;
    width: calc(62% - 45px);
}

.feature-item-image figure {
    display: block;
    border-radius: 20px 0 0 0;
}

.feature-item-image figure img {
    width: 100%;
    border-radius: 20px 0 0 0;
    aspect-ratio: 1 / 0.569;
    object-fit: cover;
}

.our-feature-item.featured-box .feature-item-content {
    margin-right: 20px;
}

.our-feature-item.featured-box .feature-item-content,
.our-feature-item.featured-box .feature-item-image {
    width: 100%;
    height: auto;
}

.our-feature-item.featured-box .feature-item-image {
    margin-left: 80px;
    padding-top: 20px;
}

.our-feature-item.featured-box .feature-item-image figure img {
    aspect-ratio: 1 / 0.475;
    border-radius: 10px 0 0 0;
}

.company-earn-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    animation: companyearn 3s infinite linear alternate;
}

@keyframes companyearn {
    0% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-80px);
    }
}

.company-earn-image img {
    width: 100%;
    border-radius: 20px;
}

/************************************/
/***       09. Our Facts css      ***/
/************************************/

.our-facts {
    padding: 80px 0;
}

.facts-details-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    padding: 30px;
    margin-right: 30px;
    overflow: hidden;
}

.fact-image,
.fact-details-content {
    width: calc(50% - 15px);
}

.fact-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.fact-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.54;
    border-radius: 20px;
}

.fact-details-content .our-solutions-circle {
    text-align: center;
    margin-bottom: 20px;
}

.fact-details-content .our-solutions-circle a figure img {
    max-width: 160px;
}

.fact-details-content .our-solutions-circle .agency-circle-arrow {
    height: 70px;
    width: 70px;
}

.fact-details-content .our-solutions-circle .agency-circle-arrow img {
    max-width: 26px;
}

.fact-details-content p {
    margin-bottom: 0;
}

.our-fact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fact-counter-item {
    position: relative;
    width: calc(50% - 15px);
    background: var(--secondary-color) url('../images/fact-counter-item-bg.svg') no-repeat;
    background-position: top left;
    background-size: auto;
    border: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.fact-counter-item .icon-box {
    margin-bottom: 30px;
}

.fact-counter-item .icon-box img {
    width: 100%;
    max-width: 60px;
}

.fact-counter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.fact-counter-content h2 {
    width: calc(35% - 10px);
    font-size: 36px;
    background: linear-gradient(90deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact-counter-content p {
    width: 65%;
    margin: 0;
}

/************************************/
/***     10. Our Projects css     ***/
/************************************/

.our-projects {
    padding: 80px 0 50px;
}

.project-item {
    position: relative;
    border: 1px solid var(--dark-divider-color);
    background: var(--secondary-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-image a {
    display: block;
    overflow: hidden;
    cursor: none;
}

.project-image img {
    width: 100%;
    aspect-ratio: 1 / 0.648;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

.project-item-body {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding: 40px;
}

.project-item-content {
    width: calc(100% - 90px);
}

.project-item-content p {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.project-item-content h3 {
    font-size: 20px;
}

.project-item-content h3 a {
    color: inherit;
}

.project-btn {
    margin-left: 30px;
}

.project-btn a {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--dark-divider-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.project-btn a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    background: linear-gradient(90deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.project-btn a:hover:after {
    transform: scale(1);
}

.project-btn a img {
    position: relative;
    max-width: 18px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-btn a:hover img {
    transform: rotate(45deg);
}

/************************************/
/***      11. How It Work css     ***/
/************************************/

.how-it-work {
    padding: 50px 0 50px;
}

.banner-first-image {
    text-align: center;
    margin-top: -230px;
    padding-bottom: 110px !important;
}

.banner-first-image {
    background-image: url(../images/dwarf/second-vidimg-bg.png) !important;
    background-repeat: no-repeat;
    /* width: 100%; */
    /* height: 100%; */
    background-position: bottom;
    /* background-size: cover; */
}

.how-work-step-box {
    position: relative;
    height: calc(100% - 30px);
    /* background: var(--secondary-color) url(../images/work-step-box-bg.png) no-repeat; */
    background-position: top left;
    background-size: auto;
    /* border: 1px solid var(--dark-divider-color); */
    border: 1px solid #4F4F80;
    /* backdrop-filter: blur(100px); */
    /* -webkit-backdrop-filter: blur(100px); */
    border-radius: 20px;
    /* margin-bottom: 30px; */
    padding: 40px;
    overflow: hidden;
    /* padding-bottom: 100px !important; */
}

.work-step-no {
    margin-bottom: 40px;
}

.work-step-no h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--primary-color);
    display: inline-block;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.4s ease-in-out;
}

.how-work-step-box:hover .work-step-no h3 {
    background-position: right center;
}

.work-step-content {
    /* border-bottom: 1px solid var(--divider-color); */
    margin-bottom: 0px;
    padding-bottom: 15px;
}

.how-work-step-box p {
    color: #ffffff;
}

.work-step-content.secondroww {
    text-align: center;
    padding-bottom: 10px;
}

span.pricingname {
    color: #ffffff;
    letter-spacing: 0px;
    font-size: 16px;
    font-weight: 400;
}

.work-step-content h3 {
    font-size: 30px;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #00F0FF;
    line-height: 25px;
    font-family: 'Arial Regular';
    font-weight: 700;
    letter-spacing: 1px;
}

.work-step-content p {
    margin-bottom: 0;
}

.work-step-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.work-step-list ul li {
    position: relative;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-left: 30px;
}

.work-step-list ul li:last-child {
    margin-bottom: 0;
}

/* .work-step-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #00BB38;
    transition: all 0.3s ease-in-out;
} */

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonial {
    position: relative;
    padding: 50px 0 0 0;
}

.our-testimonial.webview::after {
    position: absolute;
    content: "";
    background-image: url(../images/dwarf/testimonial-center-img.png), url(../images/dwarf/google-gb.png), url(../images/dwarf/testisec-right-bgg.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, right;
    /* background-position-y: 420px; */
    background-position-y: 270px, 270px, -100px;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* z-index: 5; */
}


.testimonial-slider .swiper-wrapper {
    cursor: default;
}

.our-benefit-img.fb-outletarea {
    padding: 80px 0 20px 0;
    background: url(../images/dwarf/fb-outlett-bgg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
}


.testimonial-item {
    position: relative;
    /* background: var(--secondary-color) url('../images/testimonial-item-bg-shape.png'); */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    /* border: 1px solid var(--dark-divider-color); */
    /* border-radius: 20px;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px); */
    overflow: hidden;
}

.testimonial-header {
    /* border-bottom: 1px solid var(--dark-divider-color); */
    padding: 40px 35px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    margin: 0;
    color: #DADADA;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    margin-right: 20px;
}

.author-image figure {
    border-radius: 50%;
}

.author-image img {
    max-width: 50px;
    border-radius: 50%;
}

.author-content {
    width: calc(100% - 70px);
}

.author-content h3 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #00F0FF;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-body {
    /* display: flex
; */
    /* align-items: center; */
    /* padding: 40px 35px; */
    position: relative;
    top: -10px;
    left: -30px;
}

.testimonial-counter {
    width: calc(100% - 50px);
}

.testimonial-counter h2 {
    display: inline-block;
    font-size: 40px;
    background: linear-gradient(90deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.testimonial-counter p {
    text-transform: capitalize;
    margin: 0;
}

/* .testimonial-quote{
	margin-left: 20px;
} */

.testimonial-quote img {
    max-width: 30px;
}

.testimonial-slider .testimonial-pagination {
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 8px;
    width: 8px;
    background: var(--accent-color);
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
    border: 1px solid var(--accent-color);
    height: 20px;
    width: 20px;
}

/************************************/
/***      13. Our Brands css      ***/
/************************************/

.our-brands {
    position: relative;
    padding: 80px 0;
}

.our-brands-box {
    position: relative;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/brands-box-bg-shape.png') no-repeat;
    background-size: cover;
    background-position: top left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px 80px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px;
    padding: 80px;
    overflow: hidden;
}

.brands-content {
    position: relative;
    width: calc(100% - 280px);
    z-index: 1;
}

.brands-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}

.brands-body-content {
    position: relative;
    width: calc(60% - 40px);
}

.brands-body-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background-color: var(--divider-color);
    width: 1px;
    height: 100%;
}

.brands-body-content p {
    margin: 0;
}

.brands-btn {
    width: calc(40% - 40px);
}

/************************************/
/***        14. Our FAQs css      ***/
/************************************/

.our-faqs {
    padding: 80px 0;
}

.faqs-image {
    position: relative;
    margin-right: 30px;
}

.faqs-img figure {
    display: block;
    border-radius: 19px;
    overflow: hidden;
}

.faqs-img figure:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.01%, rgba(0, 0, 0, 0.90) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faqs-img img {
    width: 100%;
    /* aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 20px; */
    background-image: url(../images/dwarf/faq-bg.png);
}

.faqs-image-content {
    position: absolute;
    right: 100px;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

.faqs-img-content-title {
    margin-bottom: 20px;
}

.faqs-img-content-title h3 {
    font-size: 30px;
    text-transform: capitalize;
}

.faq-cta-box {
    display: flex;
    align-items: center;
}

.faq-cta-box .icon-box {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-right: 20px;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.faq-cta-box:hover {
    background-position: right center;
}

.faq-cta-box .icon-box i {
    font-size: 18px;
    color: var(--primary-color);
}

.faq-cta-content {
    width: calc(100% - 60px);
}

.faq-cta-content h3 {
    color: var(--primary-color);
    font-size: 20px;
}

.faq-cta-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.faq-cta-content h3 a:hover {
    color: var(--accent-color);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
    /* background: linear-gradient(90deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%); */
    color: var(--primary-color);
    padding: 17px 50px 17px 70px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
    background: transparent;
}

/* .faq-accordion .accordion-item .accordion-collapse.show {
  box-shadow: 0px 0px 18px 0px #009FE499 inset;

} */
.accordion-item:has(.accordion-collapse.show) {
    box-shadow: 0px 0px 18px 0px #009FE499 inset;
    border-radius: 10px;
    border: none !important;
}


.accordion-button:not(.collapsed) {
    /* background: rgba(0, 153, 255, 0.1);  */
    color: #00F0FF !important;
    /* box-shadow: 0 0 20px rgba(0, 153, 255, 0.3); */
    border-radius: 10px;
}

/* Active minus icon */
.accordion-button:not(.collapsed)::after {
    content: '\2212';
    /* − */
    background-color: #ff4d4f !important;
    /* Red when active */
    color: #111 !important;
    /* Red when active */
}


.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f068';
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    width: 22px;
    height: 22px;
    color: var(--bg-color);
    background-color: #00F0FF;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
}



.faq-accordion .accordion-item .accordion-body {
    position: relative;
    padding: 0px 50px 20px 20px;
    z-index: 1;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--primary-color);
    margin: 0;
    padding: 0 0 0 50px;
}

/************************************/
/***       15. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 80px 0 50px;
}

.post-item {
    position: relative;
    background: #1A1A3A;
    background-position: center center;
    background-size: cover;
    /* border: 1px solid var(--divider-color); */
    border-radius: 20px;
    padding: 30px 20px 30px 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.post-meta {
    margin-bottom: 20px;
}

.post-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-meta ul li {
    line-height: normal;
    text-transform: capitalize;
}

.post-meta ul li a {
    color: inherit;
}

.post-meta ul li i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 5px;
}

/* .post-item-content{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
} */

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 15px;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-content p {
    margin: 0;
}

/************************************/
/***        16. Footer css        ***/
/************************************/

.footer-main {
    border-top: 1px solid var(--dark-divider-color);
    padding: 60px 0 0;
    background: #1A1A3A;
}

.main-footer-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-footer {
    margin-right: 30px;
}

.footer-logo {
    margin-bottom: 45px;
}

.footer-logo img {
    width: 100%;
    max-width: 80px;
}

.about-footer-content {
    margin-bottom: 35px;
}

.about-footer-content p {
    margin-bottom: 0;
}

.footer-privacy-policy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-privacy-policy ul li {
    display: inline-block;
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 15px;
    padding-right: 15px;
}

.footer-privacy-policy ul li:last-child {
    margin: 0;
    padding: 0;
    border-right: none;
}

.footer-privacy-policy ul li a {
    color: inherit;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li a:hover {
    color: var(--accent-color);
}

/* .footer-links{
	border-right: 1px solid var(--dark-divider-color);
    padding-right: 15px;
    margin-right: 15px;
} */

.footer-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
            color: #00F0FF;
}
.about-footer h5

 {
    color: #00F0FF;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    text-transform: capitalize;
    line-height: 1.6em;
    margin-bottom: 5px;
    color: #ffffff;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #00F0FF;
}

.footer-links.footer-content-list {
    border: none;
    padding-right: 0;
    margin-right: 0;
    text-align: end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid var(--dark-divider-color); */
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.footer-contact-item:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.footer-contact-item .icon-box {
    height: 55px;
    width: 55px;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
    background-position: right center;
}

.footer-contact-item .icon-box img {
    position: relative;
    max-width: 26px;
    z-index: 1;
}

.footer-contact-content {
    width: calc(100%);
}

.footer-contact-content p {
    margin-bottom: 0;
    color: #ffffff;
}

.footer-contact-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-content p a:hover {
    color: var(--accent-color);
}

.footer-cta-box {
    position: relative;
    border: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    display: flex;
    gap: 30px 50px;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 20px;
    margin-top: 60px;
    padding: 45px;
    overflow: hidden;
}

.footer-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-newsletter-form {
    width: calc(70% - 25px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-right: 50px;
    border-right: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form h3 {
    font-size: 20px;
}

.footer-newsletter-form form {
    width: 60%;
}

.footer-newsletter-form .form-group {
    display: flex;
}

 .form-group .form-control {
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4em;
    color: #fff !important;
    background: #1A1A3A;
    border: 1px solid var(--dark-divider-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 15px 20px;
}

 .form-group .form-control::placeholder {
    color: #8A8A8A !important;
}

 .form-group .btn-highlighted {
    width: 28%;
    padding: 22px 20px;
    line-height: 1em;
}

.footer-social-links {
    /* width: calc(30% - 25px); */
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    gap: 20px;
}

.footer-social-links span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin: 0;
}

.footer-social-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #00F0FF;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: var(--primary-color);
}

.footer-social-links ul li i {
    font-size: 18px;
    color: #00F0FF;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
    color: var(--primary-color);
}

.footer-copyright-text {
    padding: 60px 0;
    text-align: center;
}

.footer-copyright-text p {
    margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 240px 0 125px;
    z-index: 1;
}

.page-header::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: linear-gradient(1deg, transparent 5.46%, #000 99.49%), linear-gradient(179deg, transparent 0.44%, #000 119.12%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 2;
}

.page-header-box h1 {
    font-size: 80px;
    display: inline-block;
    line-height: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: none;
}

.page-header-box h1 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span {
    background-position: right center;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
    color: var(--primary-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--primary-color);
}

.our-approach {
    position: relative;
    padding: 80px 0;
}

.mission-vision-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.mission-vision-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.mission-vision-header .icon-box {
    margin-right: 20px;
}

.mission-vision-header .icon-box img {
    max-width: 30px;
}

.mission-vision-title {
    width: calc(100% - 50px);
}

.mission-vision-title h3 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: capitalize;
}

.mission-vision-content p {
    color: var(--white-color);
    margin: 0;
}

.our-company-slider {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 60px;
}

.our-company-slider .company-logo {
    text-align: center;
}

.our-company-slider .company-logo img {
    width: 100%;
    max-height: 36px;
}

.our-benefit {
    padding: 80px 0;
}

.our-benefit-content {
    margin-right: 30px;
}

/* .our-benefit-img{
	margin-bottom: 40px;
} */
.our-benefit.secondone {
    padding: 0 0 50px 0;
}

.outlet-divider {
    text-align: center;
}

.our-benefit-content.secondone {
    margin-left: 30px;
}

.our-benefit {
    padding: 20px 0 80px 0;
    background: url(../images/dwarf/outlet-one-bg.png);
    background-repeat: no-repeat;
    background-position: left;
        background-size: contain;
}


.our-benefit-img.command {

    padding: 20px 0 80px 0;
    background: url(../images/dwarf/feature-img-bgright.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.our-benefit.secondone {
    padding: 50px 0 80px 0;
    background: url(../images/dwarf/outlet-two-bg.png);
    background-repeat: no-repeat;
    background-position: right;
        background-size: contain;
}

.our-benefit-img figure {
    display: block;
    border-radius: 20px;
}

.our-benefit-img img {
    width: 100%;
    /* aspect-ratio: 1 / 0.5; */
    /* object-fit: cover; */
    border-radius: 20px;
}

.our-benefit-list {
    display: flex;
    flex-wrap: wrap;
}

.our-benefit-item {
    width: 50%;
}

.our-benefit-item {
    padding: 55px 55px 55px 0;
    border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
}

.our-benefit-item:nth-of-type(2n + 2) {
    padding: 55px 0 55px 55px;
    border-bottom: 1px solid var(--divider-color);
    border-right: none;
}

.our-benefit-item:nth-last-child(-n + 2) {
    padding-bottom: 0;
    border-bottom: none;
}

.our-benefit-item:nth-child(-n + 2) {
    padding-top: 0;
}

.our-benefit-item .icon-box {
    margin-bottom: 30px;
}

.our-benefit-item .icon-box img {
    width: 100%;
    max-width: 40px;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.benefit-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.benefit-item-content p {
    margin: 0;
}

.our-benefit-footer {
    margin-top: 60px;
}

.our-benefit-footer p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.our-benefit-footer p a {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.our-benefit-footer p a:hover {
    background-position: right center;
}

.our-team {
    padding: 80px 0 50px;
}

.team-item {
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.091;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-body {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-radius: 20px;
    backdrop-filter: saturate(180%) blur(50px);
    -webkit-backdrop-filter: saturate(180%) blur(50px);
    overflow: hidden;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 12%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.team-body::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    background: linear-gradient(90deg, var(--accent-color) 0.26%, var(--accent-secondary-color) 99.99%);
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.team-item:hover .team-body::after {
    top: 0;
}

.team-content {
    position: relative;
    z-index: 1;
}

.team-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    color: var(--primary-color);
    margin: 0;
}

.team-social-list {
    position: relative;
    display: flex;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-list {
    height: 35px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.team-social-list ul li {
    display: inline-block;
    margin-right: 10px;
}

.team-social-list ul li:last-child {
    margin: 0;
}

.team-social-list ul li a i {
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li a:hover i {
    color: var(--bg-color);
}

.our-clients {
    padding: 80px 0;
}

.our-clients-box {
    position: relative;
    border: 1px solid var(--dark-divider-color);
    border-radius: 20px;
    padding: 70px 50px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.our-clients-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    opacity: 40%;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.our-clients-box .section-title {
    margin-bottom: 60px;
}

.client-logo {
    position: relative;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    height: 100%;
    width: 100%;
    z-index: -1;
}

.client-logo img {
    position: relative;
    width: 100%;
    height: 30px;
    z-index: 1;
}

.our-faqs.about-faqs {
    padding: 80px 0 160px;
}

/************************************/
/***    18. Services Page css     ***/
/************************************/

.page-services {
    padding: 160px 0 80px;
}

.page-services .service-item {
    width: calc(33.33% - 20px);
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single {
    padding: 80px 0 160px;
}

.page-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.page-catagery-list {
    background: var(--secondary-color) url('../images/sidebar-catagery-list-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-catagery-list h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-catagery-list ul li {
    border-bottom: 1px solid var(--divider-color);
    line-height: 1.5em;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover {
    color: var(--accent-color);
}

.page-catagery-list ul li a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover:before {
    border-color: var(--accent-color);
    transform: rotate(45deg);
}

.sidebar-cta-box {
    position: relative;
    background: url('../images/sidebar-cta-box.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.sidebar-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
}

.sidebar-cta-logo,
.sidebar-cta-content,
.sidebar-cta-contact {
    position: relative;
    z-index: 1;
}

.sidebar-cta-logo {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 50%;
    margin-bottom: 30px;
}

.sidebar-cta-logo img {
    width: 100%;
    max-width: 48px;
}

.sidebar-cta-content {
    margin-bottom: 40px;
}

.sidebar-cta-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar-cta-content p {
    margin: 0;
}

.sidebar-cta-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-cta-contact ul li {
    width: 100%;
    margin-bottom: 20px;
}

.sidebar-cta-contact ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-contact ul li a {
    display: inline-flex;
    align-items: center;
    line-height: 1.4em;
    color: var(--text-color);
    background: var(--divider-color);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact ul li a:hover {
    color: var(--primary-color);
}

.sidebar-cta-contact ul li a img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.page-single-image {
    margin-bottom: 40px;
}

.page-single-image figure {
    display: block;
    border-radius: 20px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.service-entry h2:hover span {
    background-position: right center;
}

.service-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-entry ul li {
    position: relative;
    width: calc(33.33% - 20px);
    line-height: 1.25em;
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 10px 15px 10px 45px;
}

.service-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 12px;
    left: 15px;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.service-solution-box,
.service-impact-box,
.service-innovation-box,
.building-smarter-box {
    margin-top: 60px;
}

.service-solution-steps {
    margin-top: 40px;
}

.service-solution-item {
    background: #1A1A3A;
    /* border: 1px solid var(--divider-color); */
    border-radius: 15px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}



.service-solution-item:last-child {
    margin-bottom: 0;
}

.service-solution-header {
    /* border-right: 1px solid var(--divider-color); */
    margin-right: 0;
    padding-right: 25px;
}

.service-solution-header .icon-box {
    position: relative;
    background: #00011D;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vhidden {
    visibility: hidden;
}

.service-solution-item .service-solution-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(120deg, var(--accent-color), var(--accent-secondary-color)) no-repeat; */
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-solution-item:hover .service-solution-header .icon-box::before {
    transform: scale(1);
}

.service-solution-header .icon-box img {
    position: relative;
    max-width: 45px;
    z-index: 1;
        transition: all 1s
ease !important;
}

.infochanges .show-h{
    display: none;
        transition: all 1s
ease !important;
}

.infochanges .service-solution-item:hover  .show-a{
    display: none;
        transition: all 1s
ease !important;
}
.infochanges .service-solution-item   .icon-box img{
        transition: all 1s
ease !important;
}
.infochanges .service-solution-item:hover  .show-h{
    display: block;
        transition: all 1s
ease !important;
}
.service-solution-step-no {
    text-align: center;
    margin-top: 15px;
}
.infochanges .service-solution-item{
        box-shadow: 0px 0px 0px 0px #0099FF66 inset !important;
    background: #1a1a3a !important;
    transition: all 1s
ease !important;
}
.infochanges .service-solution-item:hover{
        box-shadow: 0px 0px 20px 0px #0099FF66 inset !important;
    background: #1a1a3a !important;
    transition: all 1s
ease !important;
}

.service-solution-step-no p {
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 0;
}

.service-solution-item-content {
    width: calc(100% - 150px);
}

.service-solution-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-solution-item-content p {
    margin: 0;
    font-size: 14px;
}

.service-impact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/service-impact-list-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
}

.service-impact-item {
    width: calc(33.33% - 20px);
}

.service-impact-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.service-impact-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, var(--accent-color) 0, var(--accent-secondary-color) 100%) no-repeat;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-impact-item:hover .icon-box::before {
    transform: scale(1);
}

.service-impact-item .icon-box img {
    position: relative;
    max-width: 40px;
    z-index: 1;
}

.service-impact-item-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-innovation-list {
    margin-top: 40px;
}

.building-steps-image {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.building-smarter-steps,
.building-smarter-image {
    width: calc(50% - 15px);
}

.building-step-item {
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.building-step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.building-step-no {
    margin-right: 30px;
}

.building-step-no h2 {
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.building-step-item:hover .building-step-no h2 {
    color: var(--accent-color);
}

.building-step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.building-smarter-image figure {
    display: block;
    border-radius: 20px;
    height: 100%;
}

.building-smarter-image img {
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     20. Blog Archive css     ***/
/************************************/

.page-blog {
    padding: 160px 0;
}

.page-pagination {
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}

/************************************/
/***     21. Blog Single css      ***/
/************************************/

.page-single-post {
    padding: 160px 0;
}

.post-single-meta {
    margin-top: 10px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 300;
    line-height: 1.2em;
    margin: 0 0 0.477em;
}

.post-entry h1 {
    font-size: 70px;
}

.post-entry h2 {
    font-size: 48px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url('../images/icon-blockquote.svg'), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background-position: right center;
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background-position: right center;
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     22. Projects Page css    ***/
/************************************/

.page-projects {
    padding: 160px 0 130px;
}

/************************************/
/***    23. Project Single css    ***/
/************************************/

.page-project-single {
    padding: 160px 0;
}

.project-category {
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/sidebar-catagery-list-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 60px;
    padding: 30px;
    overflow: hidden;
}

.project-category-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-category-list ul li {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-list ul li span {
    font-size: 16px;
    font-weight: 400;
}

.category-social-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}

.category-social-link h3 {
    font-size: 20px;
}

.category-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-social-link ul li a {
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.category-social-link ul li a:hover {
    background: var(--primary-color);
}

.category-social-link ul li a i {
    font-size: 18px;
    line-height: normal;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0;
}

.project-entry h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-entry h2 span {
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.project-entry h2:hover span {
    background-position: right center;
}

.project-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.project-challenge-box,
.project-solution-box {
    margin-top: 60px;
}

.project-challenge-list {
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-top: 40px;
    padding: 30px;
}

.project-solution-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    margin-top: 40px;
    text-align: center;
        justify-content: center;
}

.solution-counter-item.one h2 {
    padding: 10px 30px 10px 30px;
    width: 140px;
    text-align: center;
}

.solution-counter-item.three h2 {
    padding: 10px 30px 10px 30px;
    width: 140px;
    text-align: center;
}

.solution-counter-item.four h2 {
    padding: 10px 30px 10px 30px;
    width: 140px;
    text-align: center;
}

.solution-counter-item {
    width: calc(25% - 100px);
}


.solution-counter-item p {
    color: #ffffff;
    font-size: 18px;
    padding-top: 15px;
    font-family: 'Arial Regular' !important;
    margin-bottom: 0px;
}

.solution-counter-item h2 {
    margin-bottom: 10px;
    background: #00011D !important;
    /* background-image: url(../images/dwarf/counter-bg.png) !important; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 1px solid #ffffff2b;
    border-radius: 50px;
    width: 120px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
    margin: auto;
        color: #00F0FF;
    font-size: 40px;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team {
    padding: 160px 0 130px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

.page-team-single {
    padding: 160px 0;
}

.team-single-image {
    margin-bottom: 60px;
}

.team-single-image figure {
    display: block;
    border-radius: 20px;
}

.team-single-image img {
    width: 100%;
    aspect-ratio: 1 / 1.29;
    object-fit: cover;
    border-radius: 20px;
}

.team-member-info,
.team-expertise-box,
.team-guideline-box {
    margin-bottom: 60px;
}

.team-member-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 80px;
}

.member-info-box {
    position: relative;
    width: calc(62% - 40px);
}

.member-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    background-color: var(--divider-color);
    width: 1px;
    height: 100%;
}

.member-info-box .section-title h3 {
    font-size: 16px;
    letter-spacing: 0;
    text-transform: capitalize;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
}

.member-info-box .section-title h3::before,
.member-info-box .section-title h3::after {
    display: none;
}

.member-contact-list {
    width: calc(38% - 40px);
}

.member-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.member-social-links ul li:last-child {
    margin: 0;
}

.member-social-links ul li a {
    width: 36px;
    height: 36px;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.member-social-links ul li:hover a {
    background-position: right center;
}

.member-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

.member-contact-item {
    margin-bottom: 30px;
}

.member-contact-item:last-child {
    margin-bottom: 0;
}

.member-contact-item h3 {
    font-size: 20px;
    display: inline-block;
    text-transform: capitalize;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.member-contact-item p {
    margin-bottom: 0;
}

.member-contact-item p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.member-contact-item p a:hover {
    color: var(--accent-color);
}

.team-expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}

.skills-progress-bar {
    width: calc(50% - 15px);
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 16px;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 100px;
}

.team-guideline-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-guideline-list ul li {
    position: relative;
    width: calc(50% - 15px);
    line-height: 1.25em;
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 10px 15px 10px 40px;
}

.team-guideline-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    top: 10px;
    left: 15px;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials {
    padding: 50px 0 0px;

}

.testmonial-ratings li {
    padding-right: 10px;
}

.testmonial-ratings ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-testimonials .testimonial-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***     27. Image Gallery css    ***/
/************************************/

.page-gallery {
    padding: 160px 0 130px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.829;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***    28. Video Gallery css     ***/
/************************************/

.page-video-gallery {
    padding: 160px 0 130px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: linear-gradient(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
    color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    width: 100%;
    aspect-ratio: 1 / 0.829;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***      29. FAQs Page css       ***/
/************************************/

.page-faqs {
    padding: 160px 0;
}

.page-faqs .page-faq-accordion {
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
    margin-bottom: 0px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us {
    padding: 50px 0 80px;
}

.contact-info-box {
    /* background: var(--secondary-color) url('../images/contact-info-box-bg.svg') no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--dark-divider-color);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 20px; */padding: 20px;
    overflow: hidden;
}

.contact-info-title {
    margin-bottom: 40px;
}

.contact-info-title h3 {
    font-size: 28px;
    text-transform: capitalize;
}

.contact-info-list {
    margin-bottom: 30px;
}

.our-benefititle.about {
    padding: 50px 0 0px 0;
    background-image: url(../images/dwarf/first-about-right-bg.png), url(../images/dwarf/first-about-left-bg.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right, left bottom;

}


button.btn-default.transparent {
    background: #1A1A3A;
    color: #9A9A9A;
    float: right;
}

.contact-info-item {
    /* position: relative; */
    /* display: flex
; */
    /* align-items: center; */
    border: 1px solid #4F4F80;
    /* background: var(--dark-divider-color); */
    border-radius: 20px;
    padding: 40px;
    /* text-align: center; */
    justify-items: center;
    margin-bottom: 55px;
    overflow: hidden;
    text-align: center;
}

a.btn-default.pricing {
    float: none;
    margin: auto;
    display: block;
    position: absolute;
    bottom: 0;
    margin-bottom: 40px;
    width: 320px;
    text-align: center;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon-box {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
    background-position: right center;
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
}

.contact-info-content h3 {
    font-size: 18px;
    color: #00F0FF;
    padding-bottom: 12px !important;
    font-weight: 700;
    font-family: 'Arial Regular';
}

/* .contact-info-content{
	width: calc(100% - 74px);
} */

.contact-info-content p {
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info-content h3 {
    font-size: 20px;
}

.contact-info-content h3 a {
    color: inherit;
}

.contact-social-list {
    display: flex;
    align-items: center;
    gap: 10px 20px;
}

.contact-social-list h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.contact-social-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-social-list ul li {
    display: inline-block;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-social-list ul li:last-child {
    margin-right: 0;
}

.contact-social-list ul li a {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.contact-social-list ul li a i {
    font-size: 18px;
    color: inherit
}

.contact-us-content {
    margin-left: 0;
    border: 1px solid #4F4F80;
    padding: 40px;
    border-radius: 20px;
    margin: 0px 0 30px 30px;
}

.contact-us-form .form-label {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.section-title.messageform p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    color: #CACACA;
}

.contact-us-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: #1A1A3A;
    border: 1px solid var(--dark-divider-color);
    border-radius: 40px;
    padding: 17px 16px 17px 20px;
    box-shadow: none;
    outline: none;
}

.contact-us-form .form-control.message {
    border-radius: 10px;
}

.contact-us-form .form-control::placeholder {
    color: var(--text-color);
    opacity: 80%;
}

.google-map {
    padding: 80px 0 160px;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 600px;
    border-radius: 20px;
}

.google-map-iframe iframe {
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.google-map-iframe:hover iframe {
    filter: grayscale(0%);
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page {
    padding: 160px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 45%;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px) {

    .navbar {
        padding: 20px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .btn-default {
        padding: 14px 20px;
    }

    .btn-default.btn-highlighted {
        padding: 13px 20px;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title.section-title-center {
        max-width: 100%;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        padding: 10px 30px;
        margin-bottom: 15px;
    }

    .section-title h3::before {
        left: 10px;
    }

    .section-title h3::after {
        right: 10px;
    }

    .section-title h1 {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .section-title p span {
        font-size: 18px;
    }

    .section-title-content {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .section-content-btn .section-btn {
        margin-top: 15px;
    }

    .hero {
        padding: 175px 0 90px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 175px 0 90px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-content .section-title p {
        font-size: 20px;
    }

    .hero .our-solutions-circle {
        text-align: left;
    }

    .our-solutions-circle a figure img {
        max-width: 160px;
    }

    .our-solutions-circle .agency-circle-arrow {
        height: 80px;
        width: 80px;
    }

    .our-solutions-circle .agency-circle-arrow img {
        max-width: 30px;
    }

    .our-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-ticker-box {
        --gap: 40px;
    }

    .about-us {
        padding: 80px 0 40px;
    }

    .about-us-content {
        position: initial;
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .about-us-list {
        gap: 30px;
        padding-left: 30px;
        margin-left: 10px;
    }

    .about-us-item-content h3:after {
        left: -40px;
    }

    .about-us-item-content h3 {
        font-size: 20px;
    }

    .our-services {
        padding: 40px 0;
    }

    .our-service-image {
        height: auto;
        margin-bottom: 30px;
    }

    .our-service-image img {
        height: auto;
        aspect-ratio: 1 / 0.5;
    }

    .service-item {
        padding: 30px;
    }

    .service-item .icon-box {
        margin-right: 20px;
    }

    .service-item-content {
        width: calc(100% - 60px);
    }

    .service-item-content h3 {
        margin-bottom: 15px;
    }

    .service-item-content p {
        margin-bottom: 20px;
    }

    .section-footer-text {
        margin-top: 30px;
    }

    .section-footer-text p span {
        font-size: 14px;
        margin-right: 5px;
    }

    .our-feature {
        padding: 40px 0 10px;
    }

    .our-feature-item {
        padding: 30px 0 0 30px;
    }

    .feature-item-content {
        margin-right: 20px;
    }

    .feature-item-content,
    .feature-item-image {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .feature-item-content h3 {
        margin-bottom: 15px;
    }

    .feature-item-content a {
        margin-top: 5px;
    }

    .company-earn-image {
        max-width: 250px;
    }

    .our-facts {
        padding: 40px 0;
    }

    .facts-details-box {
        margin: 0 0 30px 0;
        padding: 20px;
    }

    .fact-image img {
        aspect-ratio: 1 / 1.04;
    }

    .fact-counter-item {
        border-radius: 20px;
        padding: 20px;
    }

    .fact-counter-item .icon-box {
        margin-bottom: 20px;
    }

    .fact-counter-item .icon-box img {
        max-width: 50px;
    }

    .fact-counter-content h2 {
        width: calc(24% - 10px);
        font-size: 32px;
    }

    .fact-counter-content p {
        width: 76%;
    }

    .our-projects {
        padding: 40px 0 10px;
    }

    .project-image img {
        aspect-ratio: 1 / 0.71;
    }

    .project-item-body {
        padding: 20px;
    }

    .project-item-content {
        width: calc(100% - 55px);
    }

    .project-item-content p {
        margin-bottom: 10px;
    }

    .project-btn {
        margin-left: 10px;
    }

    .project-btn a {
        width: 45px;
        height: 45px;
    }

    .project-btn a img {
        max-width: 14px;
    }

    .how-it-work {
        padding: 40px 0 10px;
    }

    .how-work-step-box {
        padding: 30px;
    }

    .work-step-no {
        margin-bottom: 30px;
    }

    .work-step-content {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .work-step-list ul li {
        margin-bottom: 15px;
        padding-left: 25px;
    }


    .work-step-list ul li::before {
        top: 4px;
        font-size: 16px;
    }

    .our-testimonial {
        padding: 40px 0;
    }

    .our-testimonial::before {
        right: -40px;
        height: 180px;
        width: 180px;
        opacity: 30%;
    }

    .testimonial-body,
    .testimonial-header {
        padding: 25px;
    }

    .testimonial-content {
        margin-bottom: 20px;
    }

    .testimonial-counter h2 {
        font-size: 34px;
    }

    .testimonial-slider .testimonial-pagination {
        margin-top: 30px;
    }

    .our-brands {
        padding: 40px 0;
    }

    .our-brands-box {
        gap: 30px;
        padding: 40px;
    }

    .brands-content {
        width: calc(100% - 190px);
    }

    .brands-body-content,
    .brands-btn {
        width: 100%;
    }

    .brands-content .section-title {
        margin-bottom: 20px;
    }

    .brands-body-content::before {
        display: none;
    }

    .our-faqs.about-faqs {
        padding: 40px 0 80px;
    }

    .faqs-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faqs-img img {
        aspect-ratio: 1 / 0.6;
    }

    .faqs-image-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .faqs-img-content-title h3 {
        font-size: 24px;
    }

    .faq-cta-box .icon-box {
        margin-right: 15px;
    }

    .faq-cta-content {
        width: calc(100% - 55px);
    }

    .faq-accordion .accordion-header .accordion-button {
        padding: 14px 45px 14px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        left: 15px;
        font-size: 12px;
        width: 22px;
        height: 22px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px 45px 15px 15px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-item {
        padding: 30px;
    }

    .post-item-content {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-main {
        padding: 40px 0 0;
    }

    .about-footer {
        margin: 0 0 30px 0;
    }

    .footer-logo,
    .about-footer-content {
        margin-bottom: 20px;
    }

    .footer-links {
        padding-right: 5px;
        margin-right: 5px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-contact-item .icon-box {
        height: 50px;
        width: 50px;
        margin-right: 10px;
    }

    .footer-contact-content {
        width: calc(100% - 60px);
    }

    .footer-cta-box {
        gap: 20px;
        margin-top: 30px;
        padding: 20px;
    }

    .footer-newsletter-form {
        width: 100%;
        gap: 20px;
        padding-right: 0;
        border-right: none;
    }

    .footer-newsletter-form .form-group .form-control {
        padding: 10px 18px;
    }

    .footer-newsletter-form .form-group .btn-highlighted {
        padding: 18px 20px;
    }

    .footer-social-links {
        width: 100%;
        justify-content: center;
    }

    .footer-copyright-text {
        padding: 30px 0;
    }

    .page-header {
        padding: 160px 0 70px;
    }

    .page-header-box h1 {
        font-size: 50px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 16px;
    }

    .our-approach {
        padding: 40px 0;
    }

    .mission-vision-header {
        margin-bottom: 20px;
    }

    .our-company-slider {
        margin-top: 0px;
        padding-top: 30px;
    }

    .our-benefit {
        padding: 40px 0;
    }

    .our-benefit-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .our-benefit-item {
        padding: 35px 35px 35px 0;
    }

    .our-benefit-item:nth-of-type(2n + 2) {
        padding: 35px 0 35px 35px;
    }

    .our-benefit-item:nth-child(-n + 2) {
        padding-top: 0;
    }

    .our-benefit-item:nth-last-child(-n + 2) {
        padding-bottom: 0;
    }

    .our-benefit-item .icon-box {
        margin-bottom: 20px;
    }

    .our-benefit-item .benefit-item-content h3 {
        margin-bottom: 10px;
    }

    .our-benefit-footer {
        margin-top: 40px;
    }

    .our-team {
        padding: 40px 0 10px;
    }

    .team-body {
        bottom: 20px;
        left: 20px;
        right: 20px;
        border-radius: 12px;
        padding: 15px;
    }

    .our-clients {
        padding: 40px 0;
    }

    .our-clients-box {
        padding: 50px 30px;
    }

    .our-clients-box .section-title {
        margin-bottom: 30px;
    }

    .client-logo {
        padding: 20px 15px;
    }

    .page-services {
        padding: 80px 0 40px;
    }

    .page-services .service-item {
        width: calc(50% - 15px);
    }

    .page-service-single {
        padding: 80px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagery-list {
        margin-bottom: 30px;
    }

    .page-catagery-list h3,
    .page-catagery-list ul {
        padding: 20px;
    }

    .page-catagery-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .sidebar-cta-box {
        padding: 20px;
    }

    .sidebar-cta-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .sidebar-cta-logo img {
        max-width: 34px;
    }

    .sidebar-cta-content {
        margin-bottom: 30px;
    }

    .sidebar-cta-content h3 .sidebar-cta-contact ul li {
        margin-bottom: 15px;
    }

    .page-single-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-entry ul {
        gap: 20px;
    }

    .service-entry ul li {
        width: calc(33.33% - 13.33px);
        padding: 8px 15px 8px 40px;
        font-size: 14px;
    }

    .service-entry ul li::before {
        font-size: 16px;
        top: 9px;
    }

    .service-solution-box,
    .service-impact-box,
    .service-innovation-box,
    .building-smarter-box {
        margin-top: 40px;
    }

    .service-solution-steps {
        margin-top: 30px;
    }

    .service-solution-item {
        padding: 30px;
        margin-bottom: 30px;
    }

    .service-solution-header {
        margin-right: 30px;
        padding-right: 30px;
    }

    .service-solution-item-content {
        width: calc(100% - 130px);
    }

    .service-impact-list {
        padding: 30px;
        margin-top: 30px;
    }

    .service-impact-item .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 30px;
    }

    .service-impact-item .icon-box img {
        max-width: 30px;
    }

    .service-impact-item-content h3 {
        margin-bottom: 10px;
    }

    .service-innovation-list {
        margin-top: 30px;
    }

    .building-steps-image {
        margin-top: 30px;
    }

    .building-step-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .building-step-no {
        margin-right: 20px;
    }

    .building-step-no h2 {
        margin-bottom: 0;
    }

    .page-blog {
        padding: 80px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 80px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.45em;
    }

    .post-entry h2 {
        font-size: 38px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-projects {
        padding: 80px 0 50px;
    }

    .page-project-single {
        padding: 80px 0;
    }

    .project-category {
        margin-bottom: 30px;
        padding: 20px;
    }

    .project-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry ul li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .project-entry ul li::before {
        font-size: 16px;
    }

    .project-challenge-box,
    .project-solution-box {
        margin-top: 40px;
    }

    .project-challenge-list {
        margin-top: 30px;
        padding: 20px;
    }

    .project-solution-counters {
        gap: 30px 40px;
        margin-top: 30px;
    }

    .solution-counter-item {
        width: calc(25% - 30px);
    }

    .solution-counter-item h2 {
        margin-bottom: 5px;
    }

    .page-team {
        padding: 80px 0 50px;
    }

    .page-team-single {
        padding: 80px 0;
    }

    .team-single-image {
        margin-bottom: 30px;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.8;
        object-position: top center;
    }

    .team-member-info,
    .team-expertise-box,
    .team-guideline-box {
        margin-bottom: 40px;
    }

    .team-expertise-list {
        gap: 30px;
    }

    .team-guideline-list ul {
        gap: 20px;
    }

    .team-guideline-list ul li {
        width: calc(50% - 10px);
        font-size: 14px;
        padding: 8px 15px 8px 40px;
    }

    .team-guideline-list ul li::before {
        font-size: 16px;
    }

    .page-testimonials {
        padding: 80px 0 10px;
    }

    .page-gallery {
        padding: 80px 0 50px;
    }

    .page-video-gallery {
        padding: 80px 0 50px;
    }

    .page-faqs {
        padding: 80px 0;
    }

    .page-faqs .page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 80px 0 40px;
    }

    .contact-info-box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-info-title {
        margin-bottom: 30px;
    }

    .contact-info-title h3 {
        font-size: 24px;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .contact-info-content {
        width: calc(100% - 60px);
    }

    .contact-info-list {
        margin-bottom: 30px;
    }

    .contact-us-content {
        margin-left: 0px;
    }

    .contact-us-form .form-label {
        margin-bottom: 10px;
    }

    .contact-us-form .form-control {
        padding: 12px 16px;
    }

    .google-map {
        padding: 40px 0 80px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

    .error-page {
        padding: 80px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h3 {
        font-size: 12px;
    }

        .section-title h1 {
        font-size: 30px;
        line-height: 45px;
        padding-bottom: 10px;
    }
    .hero-content .section-title p br {
    display: none;
}

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title p span {
        font-size: 16px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .hero-content .section-title p {
        font-size: 14px;
    }

    .hero-content-btn {
        gap: 15px;
    }

    .hero-content-btn .video-play-button p {
        font-size: 14px;
        margin: 0 10px 0 0;
    }

    .hero-content-btn .video-play-button a {
        height: 40px;
        width: 40px;
    }

    .hero-content-btn .video-play-button a i {
        font-size: 16px;
    }

    .our-solutions-circle a figure img {
        max-width: 140px;
    }

    .our-solutions-circle .agency-circle-arrow {
        height: 70px;
        width: 70px;
    }

    .our-solutions-circle .agency-circle-arrow img {
        max-width: 25px;
    }

    .our-scrolling-ticker {
        padding: 10px 0;
    }

    .scrolling-ticker-box {
        --gap: 30px;
    }

    .scrolling-content img {
        height: 35px;
    }

    .about-us-list {
        padding-left: 20px;
    }

    .about-us-item-content h3:after {
        left: -30px;
    }

    .about-us-item-content h3 {
        font-size: 18px;
    }

    .our-service-image img {
        aspect-ratio: 1 / 1.1;
    }

    .service-item {
        padding: 20px;
        width: 100%;
    }

    .service-item-content h3 {
        font-size: 18px;
    }

    .our-feature-item {
        padding: 20px 0 0 20px;
        gap: 20px;
    }

    .feature-item-content h3 {
        font-size: 18px;
    }

    .our-feature-item.featured-box .feature-item-image {
        margin-left: 20px;
    }

    .company-earn-image {
        max-width: 150px;
    }

    @keyframes companyearn {
        0% {
            transform: translateX(10px);
        }

        100% {
            transform: translateX(-25px);
        }
    }

    .company-earn-image img {
        border-radius: 12px;
    }

    .fact-details-content,
    .fact-image {
        width: 100%;
    }

    .fact-counter-item {
        width: 100%;
    }

    .fact-counter-item .icon-box {
        margin-bottom: 10px;
    }

    .fact-counter-content h2 {
        font-size: 28px;
        width: calc(20% - 5px);
        margin-right: 5px;
    }

    .fact-counter-content p {
        width: 80%;
    }

    .project-item-content h3 {
        font-size: 18px;
    }

    .how-work-step-box {
        padding: 20px;
    }

    .work-step-no {
        margin-bottom: 20px;
    }

    .work-step-content h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .testimonial-counter h2 {
        font-size: 28px;
    }

    .our-brands-box {
        padding: 30px 20px;
    }

    .brands-content,
    .our-brands-box .our-solutions-circle {
        width: 100%;
    }

    .faqs-img img {
        aspect-ratio: 1 / 1.1;
    }

    .faqs-img-content-title {
        margin-bottom: 15px;
    }

    .faqs-img-content-title h3,
    .faq-cta-content h3 {
        font-size: 18px;
    }

   .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 12px 12px 50px !important;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        left: 12px !important;
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 0px 15px 15px 15px;
    }

    .faq-accordion .accordion-item .accordion-body p {
        font-size: 14px;
    }

    .post-item {
        padding: 20px;
    }

    .post-meta {
        margin-bottom: 15px;
    }

    .post-meta ul li i {
        font-size: 16px;
    }

    .post-item-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-privacy-policy ul li {
        margin-right: 10px;
        padding-right: 10px;
    }

    .footer-links {
        border-right: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

       .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #00F0FF;
    }

    .footer-links.footer-content-list {
        margin-bottom: 0;
    }

    .footer-cta-box {
        padding: 15px;
    }

    .footer-newsletter-form {
        gap: 15px;
    }

    .footer-newsletter-form h3 {
        font-size: 18px;
    }

    .footer-newsletter-form form {
        width: 100%;
    }

    .footer-newsletter-form .form-group .form-control {
        width: 70%;
    }

    .footer-newsletter-form .form-group .btn-highlighted {
        width: 30%;
        font-size: 14px;
        padding: 15px 8px;
    }

    .footer-social-links span {
        font-size: 18px;
    }

    .footer-social-links ul li {
        margin-right: 10px;
    }

    .footer-copyright-text {
        padding: 15px 0;
    }

    .page-header-box h1 {
        font-size: 30px;
    }

    .mission-vision-header .icon-box {
        margin-right: 10px;
    }

    .mission-vision-title {
        width: calc(100% - 40px);
    }

    .mission-vision-title h3 {
        font-size: 18px;
    }

    .mission-vision-header {
        margin-bottom: 15px;
    }

    .our-benefit-item {
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        border-right: none;
        margin-bottom: 20px;
        padding: 0 0 20px 0;
    }

    .our-benefit-item:nth-of-type(2n + 2) {
        padding: 0 0 20px 0;
    }

    .our-benefit-item:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 20px;
    }

    .our-benefit-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .benefit-item-content h3 {
        font-size: 18px;
    }

    .our-benefit-footer {
        margin-top: 30px;
    }

    .team-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .team-content p {
        font-size: 14px;
    }

    .our-clients-box {
        padding: 30px 15px;
    }

    .client-logo {
        padding: 15px 10px;
    }

    .client-logo img {
        height: 24px;
    }

    .page-services .service-item {
        width: 100%;
    }

    .page-catagery-list h3 {
        font-size: 18px;
    }

    .sidebar-cta-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .sidebar-cta-content {
        margin-bottom: 20px;
    }

    .sidebar-cta-contact ul li {
        margin-bottom: 15px;
    }

    .sidebar-cta-contact ul li a {
        padding: 6px 14px;
    }

    .sidebar-cta-contact ul li a img {
        max-width: 16px;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-entry ul li {
        width: auto;
    }

    .service-solution-item {
        display: flex;
        padding: 15px;
        margin-bottom: 20px;
    }

    .service-solution-header {
        border-right: none;
        /* border-bottom: 1px solid var(--divider-color); */
        margin: 0 10px 20px 0;
        padding: 0 0 20px 0;
    }

    .service-solution-step-no {
        text-align: left;
        margin-top: 10px;
    }

    .service-solution-item-content {
        width: 100%;
    }

    .service-solution-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-impact-list {
        padding: 20px;
    }

    .service-impact-item {
        width: 100%;
    }

    .service-impact-item .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .service-impact-item .icon-box img {
        max-width: 26px;
    }

    .service-impact-item-content h3 {
        font-size: 18px;
    }

    .building-smarter-steps,
    .building-smarter-image {
        width: 100%;
    }

    .building-step-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .building-step-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .building-smarter-image figure {
        height: auto;
    }

    .post-single-meta {
        margin-top: 5px;
    }

    .post-single-meta ol li {
        font-size: 16px;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .project-category-list ul li,
    .category-social-link h3 {
        font-size: 18px;
    }


    .project-entry h2 {
        font-size: 26px;
    }

    .project-challenge-list {
        padding: 12px;
        border-radius: 12px;
    }

    .solution-counter-item {
        width: calc(50% - 20px);
    }

    .solution-counter-item h2 {
        font-size: 20px;
    }

    .team-single-image img {
        aspect-ratio: 1 / 1.15;
        object-position: center center;
    }

    .member-info-box,
    .member-contact-list {
        width: 100%;
    }

    .member-info-box::before {
        width: 100%;
        height: 1px;
        top: auto;
        right: auto;
        left: 0;
        bottom: -20px;
    }

    .member-contact-item {
        margin-bottom: 20px;
    }

    .member-contact-item h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .skills-progress-bar {
        width: 100%;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }

    .skills-progress-bar .skill-data .skill-title,
    .skills-progress-bar .skill-data .skill-no {
        font-size: 18px;
    }

    .team-guideline-list ul li {
        width: 100%;
        padding: 8px 10px 8px 30px;
    }

    .team-guideline-list ul li::before {
        font-size: 14px;
        left: 10px;
        top: 9px;
    }

    .contact-info-box {
        padding: 20px;
    }

    .contact-info-title {
        margin-bottom: 20px;
    }

    .contact-info-title h3 {
        font-size: 20px;
    }

    .contact-info-list {
        margin-bottom: 20px;
    }

    .contact-info-item .icon-box {
        width: 45px;
        height: 45px;
    }

    .contact-info-item .icon-box img {
        max-width: 20px;
    }

    .contact-info-content {
        width: calc(100% - 0px);
    }

    .contact-info-content p {
        margin-bottom: 0;
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .contact-social-list {
        display: block;
    }

    .contact-social-list h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
    .contact-info-item {
    /* position: relative; */
    /* display: flex
; */
    /* align-items: center; */
    border: 1px solid #4F4F80;
    /* background: var(--dark-divider-color); */
    border-radius: 20px;
    padding: 15px;
    /* text-align: center; */
    justify-items: center;
    margin-bottom: 30px;
    overflow: hidden;
    text-align: center;
}
}























.gradient-text {
    background: linear-gradient(90deg, #5f27cd, #01d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-wrapper {
    padding: 0 0 50px 0;
    position: relative;
}

.section-subtext {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.vertical-line {
    display: block;
    margin: 0 auto;
    /* height: 150px; */
}

.line-img {
    display: block;
    margin: 0 auto;
}

.card-box {
    background: #00011D !important;
    border-radius: 30px;
    padding: 25px;
    text-align: center;
    margin: auto;
    min-height: 100%;
    width: 330px;
    border: 1px solid #2B2E76;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.row.vismis {
    margin: auto 40px;
}

.card-box h5 {
    margin-top: 15px;
    font-weight: 600;
}

.card-box p {
    font-size: 15px;
    color: #dadada;
    padding-top: 10px;
}

.card-box.core-beliefs ul {
    padding-top: 5px;
    list-style: square;
    padding-left: 20px;
}


.core-beliefs ul {
    padding: 0;
    list-style: none;
    text-align: left;
    margin-top: 10px;
}

.core-beliefs ul li {

    color: #cfcfe8;
}

.dot-circle {
    width: 8px;
    height: 8px;
    background: #07E3FF;
    border-radius: 50%;
    /* margin-top: -5px; */
    box-shadow: 0 0 15px #07E3FF;
    position: absolute;
    bottom: 165px;
}


.row.dflexrow {
    text-align: right;
    position: relative;
    left: 50px;
}

.row.dflexroweven {
    text-align: left;
    position: relative;
    right: 50px;
    display: inline-block;
}

.col-lg-4.difff {
    width: 100%;
}

.row.dflexroweven p {
    position: relative;
    top: -90px;
}

.row.dflexrow h2 {
    position: relative;
    top: -120px;
    font-size: 40px;
    line-height: 65px;
}

.row.dflexrow p {
    position: relative;
    top: 100px;
}

.row.dflexroweven h2 {
    position: relative;
    top: 60px;
       font-size: 40px;
    line-height: 57px;
}

.card-box p {
    font-size: 14px !important;
}

.card-box li {
    font-size: 14px !important;
}


.row.dflexrow img {
    position: absolute;
    bottom: 100px;
    right: 15px;
}
.row.dflexroweven img {
    position: absolute;
    top: -145px;
}

.our-benefititle.featuessecc {
    margin-top: 120px;
    margin-bottom: 100px;
}
.section-title.featuessecc p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #DADADA;
}
.search-input {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  padding: 0.6rem 1.2rem;
}

.input-group-text {
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  cursor: pointer;
}




.section-title.featuessecc h6 {
    color: #00F0FF;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 300;
}

.our-benefititle.featuessecc img {
    padding-bottom: 70px;
    margin: auto;
    display: block;
}
.about-image.mobviewonly {
    display: none;
}


@media only screen and (max-width: 767px) {


    .video-image video {
    width: 100% !important;
    height: 100% !important;
    border-radius: 36px;
    border: 5px solid #ffffff2b;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
}

    .footer-links.footer-content-list {
    border: none;
    padding-right: 0;
    margin-right: 0;
    text-align: left !important;
}
.footer-links.footer-content-list br {
    display: none;
}

.footer-contact-content p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 25px;
}
    .section-title h3 {
        font-size: 18px;
    }
    .about-us {
        padding: 20px 0 40px;
    }
        .section-title h3::before {
        left: -20px;
    }
        .section-title h3::after {
        right: -20px;
    }




.about-us-btn.pb-5.wow.fadeInUp

 {
    position: absolute;
    bottom: 160px;
    right: 20px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 0;
}
.footer-social-links ul li {
    display: inline;
    margin-right: 15px;
    line-height: 30px;
}

.footer-social-links ul li a {
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid #00F0FF;
    border-radius: 50%;
    transition: all 0.3s
ease-in-out;
}
    .about-footer {
        margin: 0px;
    }
    p.footerbtm {
        text-align: center;
        font-size: 13px;
    }
.about-footer h5

 {
    color: #00F0FF;
}

.banner-first-image {
    background-image: url(../images/dwarf/second-vidimg-bg.png) !important;
    background-repeat: no-repeat;
    /* width: 100%; */
    /* height: 100%; */
    background-position: bottom;
    background-size: cover;
}

.banner-first-image {
    text-align: center;
    margin-top: -70px;
    padding-bottom: 110px !important;
}

.hero-btn {
    justify-content: center;
    display: block !important;
}

       .form-group .form-control {
        width: 60%;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4em;
        color: #8A8A8A !important;
        background: #1A1A3A;
        border: 1px solid var(--dark-divider-color);
        border-radius: 100px;
        outline: none;
        box-shadow: none;
        padding: 20px 25px;
        display: inline;
        margin-top: 25px;
    }
.form-group img {
    position: absolute;
    right: 95px !important;
    top: 62% !important;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}
    .btn-hover {
    width: 60% !important;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: auto !important;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    padding: 20px 25px;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s
ease-in-out;
    transition: all .4s
ease-in-out;
    display: block !important;
}

    .formobvieww {
    display: flex;
}
  .formobvieww .section-title{
    width: 70% !important;
  }
       .formobvieww .section-title h2 {
        font-size: 28px;
        text-align: justify;
        width: 20%;
        line-height: 45px;
    }
    .project-solution-counters {
        gap: 30px 30px;
        margin-top: 0px;
    }

    .solution-counter-item h2 {
    margin-bottom: 10px;
    background: #00011D !important;
    /* background-image: url(../images/dwarf/counter-bg.png) !important; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 1px solid #ffffff2b;
    border-radius: 40px;
    color: #00F0FF;
    width: 100px;
    padding: 20px 15px;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
    margin: auto;
}
.about-image {
    text-align: center;
    display: none;
}
.about-image.mobviewonly {
    display: block;
}
.solution-counter-item p {
    color: #ffffff;
    font-size: 14px;
    padding-top: 15px;
    font-family: 'Arial Regular' !important;
}
    .btn-default {
        padding: 15px 50px;
    }
.service-boxes {
     display: grid;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 per row on mobile */
  }
      .service-item-content {
        width: calc(100% - -2px);
    }
            .service-item-content h3 {
        font-size: 13px;
        margin-top: 30px;
        line-height: 20px;
    }
    .service-item-content p {
    font-size: 10px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}
.section-title.featurenew h2 {
    font-size: 25px;
    width: 100%;
    line-height: 34px;
    text-align: center;
}

/* .section-title.featurenew.rightt {
    text-align: right;
    justify-items: end;
    position: absolute;
    top: -70px;
} */
.our-benefititle.featuessecc img {
    padding-bottom: 40px;
    margin: auto;
    display: block;
    padding: 20px 20px;
}

.our-benefititle.featuessecc {
    margin-top: 0px;
    margin-bottom: 60px;
}
    .section-title h2 {
        font-size: 22px;
        line-height: 30px;
    }

.our-benefit-img img {
    width: 100%;
    /* aspect-ratio: 1 / 0.5; */
    /* object-fit: cover; */
    border-radius: 20px;
    margin-top: 0px;
}
.section-title.featurenew.rightt h2 {
    font-size: 25px;
    width: 100%;
    line-height: 34px;
    text-align: center;
}
.our-benefit-content h2 {
    color: #00F0FF !important;
    text-align: center;
    margin-bottom: 0px !important;
}
.our-benefit-img.retailoutlett img {
    width: 100%;
    /* aspect-ratio: 1 / 0.5; */
    /* object-fit: cover; */
    border-radius: 20px;
    margin-top: 0px;
}
.our-benefit-content.secondone {
    margin-left: 0;
}
.scrolling-content img {
        height: 70px;
    }
       .faq-accordion .accordion-item .accordion-body p {
        color: var(--primary-color);
        margin: 0;
        padding: 0px 15px 0px 38px;
    }
    .form-group.form .form-control {
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.4em;
        color: #fff !important;
        background: #1A1A3A;
        border: 1px solid var(--dark-divider-color);
        border-radius: 20px;
        outline: none;
        box-shadow: none;
        padding: 15px 25px;
        /* display: inline; */
        margin-top: 15px;
    }



.page-testimonials.mobview .testimonial-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.our-testimonial.webview {
    display: none !important;
}
.our-testimonial.mobview {
    display: block !important;
}
.our-testimonial.mobview {
    background-image: none !important;
}
.testi-centerimg img {
    display: block;
    margin: auto;
}
.testi-centerimg {
    background-image: url(../images/dwarf/line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.page-testimonials.mobview {
    background-image: url(../images/dwarf/testi-bg-neww.png);
    background-repeat: no-repeat;
    background-position: center;
}
section.section-wrapper.webview {
    display: none !important;
}
    section.section-wrapper.mobview {
        display: block !important;
        background-image: url(../images/dwarf/mobview-about-line.png) !important;
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
                padding-top: 20px;
    }
    .section-subtext {
    color: #b8b8d0;
    font-size: 14px;
    line-height: 1.6;
}
.row.dflexrow.mobviewww {
    text-align: center;
    position: unset;
    left: 0;
    background: #00011d;
}
.row.dflexrow.mobviewww h2 {
    position: unset;
    top: 0;
    line-height: 35px;
}
.row.dflexrow.mobviewww p {
    position: unset;
    top: 0;
    margin-bottom: -5px;
}
.row.dflexroweven.mobviewww h2 {
    position: unset;
    top: 0;
    line-height: 35px;
}
.row.dflexroweven.mobviewww p {
    position: unset;
    top: 0;
            margin-bottom: 0px;
}
.row.dflexroweven.mobviewww {
    text-align: center;
    position: relative;
    right: 0;
    display: inline-block;
 margin-top: 100px;
        background: #00011d;
}

.row.vismis {
    margin: 0;
            padding-top: 50px;
}
.work-step-content.offerpricearea h3 {
    padding-top: 20px;
}
.solution-counter-item.one h2
 {
    padding: 10px 30px 10px 30px;
    width: 100%;
    text-align: center;
}
.solution-counter-item.two h2
 {
    padding: 10px 30px 10px 30px;
    width: 100%;
    text-align: center;
}
.solution-counter-item.three h2
 {
    padding: 10px 30px 10px 30px;
    width: 100%;
    text-align: center;
}
.solution-counter-item.four h2
 {
    padding: 10px 30px 10px 30px;
    width: 100%;
    text-align: center;
}
.twoal {
    display: flex;
    flex-direction: row;
    justify-content: flex-start !important;
    padding-top: 5px;
}
.right-content-area.twosd.ms-4 {
    position: relative;
    right: -70px;
    top: -5px;
}
a.btn-hover.color-3.pricing {
    width: 100% !important;
    position: relative !important;
    display: block !important;
    bottom: 45px !important;
}
.about-us-content {
    padding-right: 0;
    padding-top: 0px !important;
}
.our-benefititle.featuessec.new {
    padding-top: 10px !important;
    background-image: url(../images/dwarf/fboutlet-rightareea.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
    background-position-y: -70px;
}
.our-benefit-img.fb-outletarea {
    padding: 0px 0 20px 0;
    background: none !important;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}
.row.dflexrow h2 {
    position: relative;
    top: -120px;
    font-size: 26px;
    line-height: 65px;
}
.row.dflexroweven h2 {
    position: relative;
    top: 60px;
    font-size: 26px;
    line-height: 57px;
}
h2.fontsiie.wow.fadeInUp {
    font-size: 25px !important;
    width: 100%;
    line-height: 34px;
    text-align: center;
}


.contact-info-item.twoo.wow.fadeInUp.col-6.col-md-12 {
    width: 46%;
    margin-left: 10px;
    background: #00011D;
}
.contact-info-item.onee.wow.fadeInUp.col-6.col-md-12 {
    width: 46%;
    margin-right: 10px;
    background: #00011D;
}
.contact-info-item.botend.wow.fadeInUp.col-12.col-md-12 {
    background: #00011D;
}

    .contact-us-content {
        margin-left: 0px;
        background: #00011D;
        margin-top: -30px;
        padding: 20px !important;
    }
    .row.contactt.align-items-center {
    background: url(../images/dwarf/contact-area.png) !important;
    background-repeat: no-repeat !important;
}
.footer-main {
    border-top: 1px solid var(--dark-divider-color);
    padding: 60px 0 0;
    background: none;
}
p{
    font-size: 14px;
}

.about-us-btn.footer {
    padding-top: 8px !important;
    padding-bottom: 25px;
    display: flex;
    justify-content: end;
    position: absolute;
    width: 100%;
    bottom: 165px;
    left: 95px;
}
a.btn-hover.color-3.footer-btnn {
    padding: 15px 18px !important;
    margin-right: 0px;
    width: 170px !important;
    font-size: 16px;
}
.our-benefititle.about {
    padding: 50px 0 0px 0;
    background-image: url(../images/dwarf/first-about-left-bg.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-position-y: 1265px;
}
.about-us.bigimagemain {
    background: none !important;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 25px !important;
    background-position: center top;
}

.tab {
    padding: 15px 10px !important;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: 0.3s;
    color: #d3d3e7;
        font-size: 14px !important;
}
    .tabs {
        width: 40% !important;
        background-color: #1A1A3A;
        display: flex;
        flex-direction: column;
        text-align: left;
        max-height: 430px !important;
        overflow-y: auto;
        padding-right: 5px;
        margin-bottom: 10px;
    }
.content.pricing {
    width: 60% !important;
    background-color: #1A1A3A;
    padding: 10px !important;
    text-align: left;
    border-left: 2px solid #111 !important;
}
.left-border-linee.none {
    border-left: 1px solid #ffffff45;
    padding-left: 10px !important;
    padding-top: 10px;
    padding-bottom: 0 !important;
    margin-bottom: -10px !important;
}
.table-header {
    display: flex;
    justify-content: flex-start;
    gap: 50px !important;
    background-color: #15172b;
    color: #b0b3d6;
    /* padding: 15px 20px; */
    font-weight: 600;
    font-size: 14px;
    /* border-bottom: 1px solid #2c2f47; */
}
.checkbox-list {
    max-height: 340px !important;
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 10px;
}

.more-content {
    display: block !important;
    margin-top: 10px;
    text-align: left;
}
button.toggle-btn.mt-3 {
    display: none  !important;
}
.columns {
    text-align: center;
    padding-bottom: 0px !important;
}

.left-border-linee p {
    font-size: 16px;
}
.left-border-linee {
    border-left: 1px solid #ffffff45;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 0 !important;
    margin-bottom: -10px !important;
    align-content: space-around !important;
}
 .left-border-linee p br {
       display: block !important;
    }
    h3.price-rate-highlight {
    font-size: 32px !important;
}

}

    .left-border-linee p br {
       display: none;
    }


.row.contactt.align-items-center {
    background: none;
}
.main-menu .nav-menu-wrapper .navbar-nav {
    padding: 0 65px;
}




section.section-wrapper.webview {
    display: block;
}
section.section-wrapper.mobview {
    display: none;
}

.our-testimonial.webview {
    display: block;
}
.our-testimonial.mobview {
    display: none;
}

.our-benefit-content h2 {
    color: #00F0FF !important;
}



   .how-work-step-box:hover {
    box-shadow: 0px 0px 24px 0px #0099FF66 inset !important;
    transition: box-shadow 0.5s ease-in-out;

}
.how-work-step-box .bgchanges{
 	transition: all 2s ease;
}
.how-work-step-box{
 	transition: all 2s ease;
}
.how-work-step-box:hover .bgchanges{
background-image: linear-gradient(to right, #8F00FF, #00F0FF);
 color: #fff !important;
 	transition: all 2s ease;
}

.contact-us-content:hover {
    box-shadow: 0px 0px 24px 0px #0099FF66 inset !important;
    transition: box-shadow 0.5s ease-in-out;
}

.contact-info-item:hover {
    box-shadow: 0px 0px 24px 0px #0099FF66 inset !important;
    transition: box-shadow 0.5s ease-in-out;
}
.card-box:hover {
    box-shadow: 0px 0px 10px 0px #0099FF66 inset !important;
    background: #1a1a3a !important;
    transition: all 1s ease !important;
}

a.btn-hover.color-3.footer-btnn {
    padding: 12px 20px;
    margin-right: 0px;
}


.right-content-area {
    text-align: center;
}
.right-content-area.one {
    text-align: end;
}

span.pricing-span-area {
    position: absolute;
    top: 5px;
    background: #00f0ff;
    padding: 3px 10px 3px 10px;
    font-size: 12px;
    border-radius: 5px;
    color: #3E3E3E;
    left: 135px;
}

.right-content-area span {
    color: #00F0FF;
}
.about-us-btn.footer {
    padding-top: 0px !important;
        padding-bottom: 25px;
    display: flex;
    justify-content: end;
}
.btn-hover.sticky {
    margin: 20px !important;
}

.btn-hover {
    width: 200px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    /* margin: 20px; */
        display: block;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    padding: 15px 20px;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}
.btn-hover.color-3 {
    background-image: linear-gradient(to right, #8F00FF, #00F0FF, #00F0FF, #8F00FF);
    /* box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75); */
}
.testimonial-header {
    	transition: all 2s ease;
        position: relative;
        background: transparent;
}
.testimonial-header::after {
    transition: all 2s
ease;
opacity: 0;
}
.testimonial-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dwarf/google-gb.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 500ms ease; /* transition on opacity only */
}

.testimonial-header:hover::after {
    opacity: 1;
}

.testimonial-header:hover h3 {
    background: linear-gradient(140deg, #00F0FF 0%, #8F00FF 100%);
    background: linear-gradient(140deg, #00F0FF 0%, #8F00FF 100%);
    /* background-size: 200% auto; */
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-header.is-sticky {
      position: fixed;
    top: 16px;
  /* box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-animation: slideDown 0.35s ease-out;
  animation: slideDown 0.35s ease-out; */
}

.main-header.is-sticky .navbar {
  padding: 0px 0;
  align-items: center;
}

.main-header.is-sticky  .navbar-brand img{
    width: 150px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.icons-an input{
    font-size: 14px !important;
}
.icons-an {
  margin-top: 5px;
  position: relative;
}

.icons-an img {
  position: absolute;
  right: 15px;
  top: 14px;
}
.solution-counter-item h2 {
 transition: all 1s ease;
}
.solution-counter-item:hover h2 {
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0);
    transition: all 1s ease;
}
.vismis .card-box h5 {
       transition: all 1s ease;
}
.vismis .card-box:hover h5 {
    color: #00F0FF;
       transition: all 1s ease;
}
.fontsiie{
    font-size: 32px !important;
}
.twoal{
    display: flex
;
    flex-direction: row;
    justify-content: end;
}
.twosd{
    display: flex;
}
#submitBtn {
    cursor: not-allowed;
    font-weight: 400;
}

#submitBtn.enabled {
   background-image: linear-gradient(to right, #8F00FF, #00F0FF);
   color: #fff;
   font-weight: 400;
}


.main-header.is-sticky .container{
    background: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(30px);
    -webkit-animation: slideDown 0.35s
ease-out;
    animation: slideDown 0.35s
ease-out;
    background: rgba(255, 255, 255, 0.1);
        padding-left: 25px;
    border-radius: 10px;
}






/* Active state inside each section */
.infochanges .service-solution-item.active,
.infochanges.dho .service-solution-item.active {
  box-shadow: 0px 0px 20px 0px #0099FF66 inset !important;
  background: #1a1a3a !important;
  transition: all 0.5s ease !important;
}

/* Hover state inside each section */
.infochanges .service-solution-item:hover,
.infochanges.dho .service-solution-item:hover {
  box-shadow: 0px 0px 20px 0px #0099FF66 inset !important;
  background: #1a1a3a !important;
}

/* Disable .active highlight when another item is hovered — scoped per section */
.infochanges:hover .service-solution-item.active:not(:hover) {
  box-shadow: none !important;
  background: transparent !important;
}

.infochanges.dho:hover .service-solution-item.active:not(:hover) {
  box-shadow: none !important;
  background: transparent !important;
}



.work-step-list ul li img {
    position: absolute;
    left: -1px;
    top: -1px;
}

p.footerbtm {
    color: #ffffff;
}



/* Ensure submenu behaves well */
.nav-item.submenu ul {
  display: none;
  position: absolute;
  background: #fff;
  list-style: none;
  padding: 10px 0;
}

.nav-item.submenu:hover ul {
  display: block;
}

/* Adjust spacing for mobile */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 10px 15px;
  }
      .navbar-collapse {
        background: #1A1A3A !important;
        position: relative;
        top: 30px;
    }
    .main-menu .nav-menu-wrapper>ul.navbar-nav.mobile {
    align-items: center;
    display: inline;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 !important;
}

ul#mobileMenu .nav-link.active {
    background: linear-gradient(270deg, #00F0FF 0%, #8F00FF 100%);
    border-radius: 0px;
    color: #fff !important;
    font-weight: bold;
}

.main-header.is-sticky .container {
    background: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 15px 0 !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(30px);
    -webkit-animation: slideDown 0.35s
ease-out;
    animation: slideDown 0.35s
ease-out;
    background: rgba(255, 255, 255, 0.1);

    border-radius: 10px;
}
.main-header.is-sticky {
    position: fixed;
    top: 0 !important;
}

header.main-header.is-sticky img {
    padding-left: 15px;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(../images/dwarf/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    border: none !important;
    background-size: 100%;
}

}



.navbar-toggler-icon {
  background-image: url(../images/dwarf/menu.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: background-image 0.3s ease;
  border: none;
}

.navbar-toggler.active .navbar-toggler-icon {
  background-image: url(../images/dwarf/close.png);
}




.about-us.bigimagemain {
    background: url(../images/dwarf/about-bigimg-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 80px;
    background-position: center top;
}



.video-image video {
    width: 916px;
    height: 510px;
    border-radius: 36px;
    border: 0px solid #ffffff2b;
    box-shadow: 0 0 20px rgb(0 153 255 / 78%);
}



   .table-wrapper {
    max-width: 750px;
    margin: 40px auto 15px auto;
    text-align: center;
}

    .table-section {
      display: flex;
      /* border: 1px solid #2c2f47; */
      /* border-radius: 10px; */
      overflow: hidden;
      background-color: #11122b;
    }

    /* Table Header */
.table-header {
    display: flex;
    justify-content: flex-start;
    gap: 113px;
    background-color: #15172b;
    color: #b0b3d6;
    /* padding: 15px 20px; */
    font-weight: 600;
    font-size: 14px;
    /* border-bottom: 1px solid #2c2f47; */
}
.left-border-linee.none {
    border-left: none;
}
.left-border-linee {
    border-left: 1px solid #ffffff45;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 0 !important;
    margin-bottom: -10px !important;
}


    .tabs {
      width: 50%;
      background-color: #1A1A3A;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .tab {
      padding: 15px 20px;
      cursor: pointer;
      border-left: 3px solid transparent;
      transition: 0.3s;
      color: #d3d3e7;
    }

    .tab.active {
      background: linear-gradient(90deg, #4b2cff, #00d4ff);
      color: #fff;
      border-left: none;
    }

   .content.pricing {
    width: 50%;
    background-color: #1A1A3A;
    padding: 20px;
    text-align: left;
    border-left: 2px solid #111 !important;
}

    .description {
      font-size: 13px;
      color: #9a9ccf;
      margin-bottom: 10px;
    }

    .checkbox-list {
      max-height: 300px;
      overflow-y: auto;
      padding-right: 5px;
      margin-bottom: 10px;
    }

    /* Custom checkbox style */
    label {
      display: flex;
      align-items: center;
      margin: 15px 0;
      cursor: pointer;
      font-size: 14px;
    }

    input[type="checkbox"] {
      appearance: none;
      width: 18px;
      height: 18px;
      border: 2px solid #9a6bff;
      border-radius: 4px;
      margin-right: 10px;
      position: relative;
      cursor: pointer;
      transition: 0.2s;
    }

    input[type="checkbox"]:checked {
      background-color: #9a6bff;
    }

    input[type="checkbox"]:checked::after {
      content: '✔';
      color: #fff;
      position: absolute;
      top: 0;
      left: 3px;
      font-size: 12px;
    }

    .counter.pricing {
    font-size: 15px;
    color: #fff;
    margin-top: 16px;
}


.tabs::-webkit-scrollbar {
    width: 2px;
    background-color: var(--primary-color);
}
.checkbox-list::-webkit-scrollbar {
    width: 2px;
    background-color: var(--primary-color);
}
    /* .about-us-btn.pricing {
  position: relative;
}

a.btn-hover.color-3.pricing {
  position: absolute;
  bottom: 0;
  margin-bottom: 40px;
  width: 100% !important;
  text-align: center;
  left: 0;
} */

a.btn-hover.color-3.pricing {
    float: none;
    margin: auto;
    display: block;
    position: absolute;
    bottom: 0;
    margin-bottom: 40px;
    width: 540px;
    max-width: 550px;
    text-align: center;
}

.counter.pricing span {
    color: #00f0ff;
}



 .columns {
    text-align: center;
    padding-bottom: 20px;
}
 

  .more-content {
    display: none;
    margin-top: 10px;
        text-align: left;
  }
  .toggle-btn {
    margin-top: 10px;
    cursor: pointer;
    color: #BABABA;
    font-weight: 500;
    font-size: 14px;
    border: none;
    background: none;
  }

    .serviceelist {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 500px;
  }

  .serviceeitem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .serviceeitem i {
    font-size: 24px;
    color: #00f0ff; /* icon color */
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px; /* align with text */
  }
  .serviceecontent h5 {
    padding-bottom: 20px;
}

 .serviceecontent {
    display: flex;
    flex-direction: column;
   
    margin-left: 10px !important;
}

.serviceecontent p {
    margin-bottom: 10px;
}

  .serviceecontent strong {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .serviceecontent span {
    font-size: 14px;
    color: #b0b3d6; /* lighter subtext color */
  }


  span.highlit-moduless {
    color: #00F0FF !important;
}