/* ----------------------------------------------------------------------------------------
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #081D0D;
    --secondary-color: #FBF8F2;
    --text-color: #636363;
    --accent-color: #d33227;
    --white-color: #FFFFFF;
    --divider-color: #081D0D1A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Onest", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-track {
    background-color: var(--white-color);
    border-left: 1px solid var(--white-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.1em;
    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 {
    padding-right: 15px;
    padding-left: 15px;
}

.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, .3);
    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;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: #dc251f;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 17px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    color: var(--white-color);
}

.btn-default:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background-color: var(--primary-color);
    border-radius: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:before {
    left: 0;
    right: 0;
    opacity: 1;
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted::before {
    background: var(--white-color);
}

.readmore-btn {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    color: #d33227;
    text-transform: capitalize;
    display: inline-block;
    padding-right: 27px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.readmore-btn::before {
    content: '\f061';
    font-family: FontAwesome;
    position: absolute;
    top: 1px;
    right: 0;
    transform: translateX(-3px);
    font-size: 18px;
    color: #d33227;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    color: var(--primary-color);
    transform: translateX(0);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 209px;
    position: relative;
    width: 209px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: #ff1515;
    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: 36%;
    max-width: 100%;
    transform: translate(-28%, -52%);
}

@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 {
    margin-bottom: 40px;
}

.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-left: 18px;
    margin-bottom: 10px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background: #d33227;
    border-radius: 50%;
    transform: translateY(-50%);
}

.section-title h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.section-title-content p {
    margin: 0;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    text-align: left;
    margin-top: 30px;
}

.dark-section {
    background-color: #282321;
}

.dark-section .section-title-content p,
.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p {
    color: var(--white-color);
}

.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: relative;
    background-color: #ffffff;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
    padding: 25px 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>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 6px;
    position: relative;
}

.main-menu ul li.nav-item a {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 14px !important;
    color: #000000;
    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: 3px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #cb3b2d;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.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: 5px 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.nav-item a {
    color: var(--primary-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--white-color);
    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: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 8px;
    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);
}

.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);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: #c9c5c5;
}

.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: 500;
    text-transform: capitalize;
    padding: 8px 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(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 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(--white-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    background-image: url('../images/hero-bg-shape.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 80px 0;
}

.hero.hero-bg-image {
    position: relative;
    background: url(../images/hero-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    
    height: 88vh;
    display: flex;
    align-items: anchor-center;
}

.hero.hero-bg-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000c4;
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
    position: relative;
    padding: 205px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: center;
    z-index: 2;
}

.hero.hero-bg-image.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-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero.hero-bg-image .hero-content {
    text-align: center;
}

.hero.hero-bg-image .hero-content-body {
    justify-content: center;
}

.hero-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
}

.hero-client-box {
    width: calc(60% - 20px);
    display: flex;
    align-items: center;
}

.customer-images {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img {
    position: relative;
    display: inline-block;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
    width: 54px;
    height: 54px;
    z-index: 1;
}

.customer-img:first-child {
    margin: 0;
}

.customer-img figure {
    display: block;
}

.customer-img img {
    max-width: 100%;
    border-radius: 50%;
}

.customer-img.add-more {
    width: 54px;
    height: 54px;
    background-color: var(--accent-color);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-img.add-more p {
    color: var(--primary-color);
    margin: 0;
}

.hero-client-content p {
    color: var(--white-color);
    text-align: left;
    margin: 0;
}

.hero-list {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 50px;
    padding-top: 50px;
}

.hero-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.hero-list ul li {
    position: relative;
    width: calc(50% - 15px);
    display: inline-block;
    text-transform: capitalize;
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 30px;
}

.hero-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.hero-image {
    position: relative;
    padding: 80px 55px 0 55px;
    margin-bottom: -80px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 12.03%, rgba(255, 255, 255, 0.1) 108.55%);
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 100%;
}

.hero-image figure {
    position: relative;
    background: url('../images/hero-image-bg-star.svg') no-repeat;
    background-position: top 80px left 30px;
    background-size: auto;
    z-index: 1;
}

.hero-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.344;
    object-fit: cover;
}

.learn-more-circle {
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 1;
}

.learn-more-circle a {
    display: block;
    border-radius: 50%;
}

.learn-more-circle a img {
    max-width: 140px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker {
    background: #282321;
    padding: 25px 0;
}

.scrolling-ticker-box {
    --gap: 70px;
    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 50s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.scrolling-content span {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1em;
    text-transform: capitalize;
    color: #c1c1c1;
}

.scrolling-content span::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    background: #d33227;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

/************************************/
/***    	 06. About Us css     ***/
/************************************/

.about-us {
    padding: 100px 0;
}

.about-us-images {
    margin-right: 15px;
}

.about-image-counter {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
    display: block;
    border-radius: 20px;
}

.about-img-1 figure,
.about-counter-box {
    height: 100%;
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.5;
    border-radius: 20px;
}

.about-img-1,
.about-counter-box {
    width: calc(50% - 15px);
}

.about-counter-box {
    background: linear-gradient(180deg, var(--accent-color) 55%, var(--primary-color) 45%);
    border-radius: 20px;
    text-align: center;
    padding: 30px 40px;
}

.about-counter-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about-counter-header h2 {
    width: calc(50% - 20px);
    font-size: 46px;
    font-weight: 700;
    text-align: right;
    margin-right: 20px;
}

.about-counter-header p {
    width: 50%;
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 0;
}

.about-counter-footer {
    margin-top: 30px;
}

.about-counter-body a {
    display: inline-block;
    border-radius: 50%;
}

.about-counter-body a img {
    width: 100%;
    max-width: 120px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.about-counter-footer h3 {
    font-size: 20px;
    color: var(--white-color);
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.about-body-item {
    position: relative;
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    overflow: hidden;
}

.about-body-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--accent-color);
    width: 80px;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-body-item:hover:before {
    width: 100%;
}

.about-body-item .icon-box,
.about-body-title {
    position: relative;
    z-index: 1;
}

.about-body-item .icon-box {
    height: 80px;
    width: 80px;
    align-content: center;
    text-align: center;
}

.about-body-item .icon-box img {
    width: 100%;
    max-width: 40px;
}

.about-body-title {
    width: calc(100% - 80px);
    padding: 12px;
}

.about-body-title h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.about-us-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.about-us-list ul li {
    position: relative;
    width: calc(50% - 15px);
    display: inline-block;
    text-transform: capitalize;
    line-height: 1.5em;
    padding-left: 30px;
}

.about-us-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    border-top: none;
    margin-top: 0px;
    padding-top: 0px;
}

.about-author-box {
    display: flex;
    gap: 15px;
}

.about-author-box .about-author-image figure {
    display: block;
    border-radius: 10px;
}

.about-author-box .about-author-image img {
    width: 100%;
    max-width: 50px;
    border-radius: 10px;
}

.about-author-box .author-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.about-author-box .author-info p {
    margin-bottom: 0;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 100px 0;
}

.service-item {
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-image a,
.service-image figure {
    display: block;
    cursor: none;
}

.service-image figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(8, 29, 13, 0) 61.86%, rgb(0 0 0) 82.44%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    aspect-ratio: 1 / 1.215;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-item .icon-box {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.service-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 10px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.service-item .icon-box img {
    position: relative;
    max-width: 30px;
    z-index: 1;
}

.service-body {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-item:hover .service-body {
    transform: translateY(0);
}

.service-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.service-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.service-content h3 a:hover {
    color: var(--accent-color);
}

.service-readmore-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.service-item:hover .service-readmore-btn {
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.service-readmore-btn a:hover:before,
.service-readmore-btn a:hover {
    color: var(--white-color);
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    margin-bottom: 0;
}

.section-footer-text span {
    font-weight: 600;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}

/************************************/
/***    08. Our Protection css    ***/
/************************************/

.our-protection {
    padding: 100px 0;
}

.our-protection-box {
    display: flex;
    flex-wrap: wrap;
    gap: 150px 30px;
}

.protection-image-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.protection-image-content:nth-child(even) {
    flex-direction: row-reverse;
}

.protection-video,
.protection-content {
    width: calc(50% - 15px);
}

.protection-content .section-title {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
}

.protection-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.protection-list ul li {
    position: relative;
    width: calc(50% - 15px);
    display: inline-block;
    text-transform: capitalize;
    line-height: 1.5em;
    padding-left: 30px;
}

.protection-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.protection-btn {
    margin-top: 40px;
}

.protection-video video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     09. Why Choose Us css    ***/
/************************************/

.why-choose-us {
    background-image: url(../images/why-choose-us-bg-shape.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 100px 0;
}

.why-choose-item-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.why-choose-item {
    width: calc(25% - 22.5px);
    display: flex;
    align-items: center;
}

.why-choose-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 8px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.why-choose-item .icon-box img {
    position: relative;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.why-choose-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.why-choose-item-content {
    width: calc(100% - 75px);
}

.why-choose-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    margin-right: 15px;
    overflow: hidden;
}

.why-choose-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 30%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-choose-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.827;
    object-fit: cover;
    border-radius: 20px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-button a {
    display: block;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.video-play-button i {
    font-size: 30px;
    margin-left: 3px;
    color: var(--primary-color);
}

.video-play-button a:before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 40%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 40%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.why-choose-disc p {
    color: var(--white-color);
}

.why-choose-disc p:last-child {
    margin-bottom: 0;
}

.why-choose-disc p span {
    font-weight: 700;
}

.why-choose-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    margin-top: 60px;
}

.why-choose-counter-item {
    position: relative;
    width: calc(33.33% - 26.66px);
}

.why-choose-counter-item:after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.why-choose-counter-item:last-child:after,
.why-choose-counter-item:nth-child(3n + 3)::after {
    display: none;
}

.why-choose-counter-item h2 {
    font-size: 46px;
    font-weight: 700;
    color: #d33227;
    margin-bottom: 10px;
}

.why-choose-counter-item p {
    color: #000000;
    margin-bottom: 0;
}

/************************************/
/***     10. Our Projects css     ***/
/************************************/

.our-projects {
    padding: 100px 0 60px;
}

.our-Project-nav {
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.our-Project-nav ul {
    list-style: none;
    text-align: center;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    padding: 0;
    margin: 0;
}

.our-Project-nav ul li .btn-default {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    color: var(--primary-color);
}

.our-Project-nav ul li .btn-default:hover:before,
.our-Project-nav ul li .btn-default.active-btn:before {
    background: var(--accent-color);
    left: 0;
    right: 0;
    opacity: 1;
}

.project-item {
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.project-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-image figure {
    display: block;
}

.project-image figure img {
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img {
    transform: scale(1.1);
}

.project-btn {
    position: absolute;
    top: 60%;
    right: 50%;
    transform: translate(50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.project-item:hover .project-btn {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.project-btn a {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
    background: var(--white-color);
}

.project-btn a i {
    font-size: 28px;
    color: var(--primary-color);
}

.project-content {
    margin: 0 15px;
}

.project-content p {
    text-transform: capitalize;
    margin-bottom: 10px;
}

.project-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.project-content h3 a {
    color: inherit;
}

/************************************/
/***    11. Our Protection css    ***/
/************************************/

.how-it-work {
    background-image: url(../images/how-it-work-bg-shape.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding: 100px 0 0;
    margin-bottom: 150px;
}

.how-work-nav {
    margin-bottom: 60px;
}

.how-work-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    border-bottom: 4px solid var(--dark-divider-color);
}

.how-work-nav ul li {
    display: inline-block;
    width: 25%;
}

.how-work-nav ul li .nav-link {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 0 5px 25px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.how-work-nav ul li .nav-link.active,
.how-work-nav ul li .nav-link:hover {
    background: transparent;
    color: var(--accent-color);
}

.how-work-nav ul li .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: auto;
    right: 0;
    background: var(--accent-color);
    border-radius: 99px;
    width: 0;
    height: 4px;
    transition: all 0.4s ease-in-out;
}

.how-work-nav ul li .nav-link.active:before,
.how-work-nav ul li .nav-link:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.how-work-nav ul li .nav-link span {
    font-size: 26px;
    margin-right: 8px;
}

.how-work-content p {
    color: var(--white-color);
    margin: 0;
}

.how-work-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-top: 40px;
}

.how-work-content ul li {
    position: relative;
    width: calc(50% - 15px);
    display: inline-block;
    text-transform: capitalize;
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 30px;
}

.how-work-content ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.how-work-content .why-choose-counter-list {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.how-work-image {
    margin-left: 15px;
}

.how-work-image figure {
    display: block;
    border-radius: 20px;
}

.how-work-image img {
    width: 100%;
    aspect-ratio: 1 / 0.6943;
    object-fit: cover;
    border-radius: 20px;
}

.our-partners {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 80px;
    margin: 100px 0 -150px;
}

.our-partners .section-title {
    margin-bottom: 0;
}

.our-partners .section-title h3,
.our-partners .section-title h2 {
    color: var(--primary-color);
}

.partners-logo-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 50px;
    margin-left: 15px;
}

.partners-logo {
    width: calc(33.33% - 33.33px);
    text-align: center;
}

.partners-logo img {
    width: 100%;
    max-height: 40px;
}

/************************************/
/***      12. What We Do css      ***/
/************************************/

.what-we-do {
    padding: 100px 0;
}

.what-do-body-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.what-do-body-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.what-do-body-item h3 {
    position: relative;
    font-size: 20px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.what-do-body-item h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.what-do-body-item p {
    margin: 0;
}

.what-we-do-image {
    position: relative;
    padding: 0px 22px;
    margin-left: 15px;
}

.what-we-do-image img {
    width: 100%;
}

.years-experience {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-100%);
    background: var(--accent-color);
    border-radius: 20px;
    padding: 15px 30px 15px 20px;
    overflow: hidden;
    z-index: 1;
}

.years-experience::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.years-experience:hover:before {
    height: 100%;
}

.years-experience h2 {
    position: relative;
    font-size: 46px;
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.years-experience h2 span {
    display: inline-block;
}

.years-experience p {
    position: relative;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.years-experience:hover p,
.years-experience:hover h2 {
    color: var(--white-color);
}

/************************************/
/***   13. Our Testimonials css   ***/
/************************************/

.our-testimonials {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 100px 0;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    position: relative;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    border-left: 1px solid var(--dark-divider-color);
    width: 100%;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px 20px;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    display: inline-block;
    margin-right: 20px;
}

.author-image figure {
    border-radius: 10px;
    display: block;
}

.author-image img {
    width: 100%;
    max-width: 50px;
    border-radius: 10px;
}

.author-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.author-content p {
    color: var(--white-color);
    opacity: 80%;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.testimonial-rating i {
    font-size: 20px;
    color: #d37027;
    transition: all 0.6s ease-in-out;
}

.testimonial-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 0;
}

.testimonial-pagination {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.testimonial-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--text-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background: #ff321c;
    border-radius: 12px;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 100px 0 70px;
}

.post-item {
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.post-featured-image a {
    display: block;
    overflow: hidden;
    cursor: none;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-body {
    padding: 20px 30px 30px;
}

.post-item-content {
    margin-bottom: 20px;
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h2 a {
    display: inline-block;
    color: inherit;
}

/************************************/
/***        15. Footer css        ***/
/************************************/

.main-footer {
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 100px 0px 0px;
}

.footer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.about-footer {
    width: 38%;
    padding-right: 60px;
}

.footer-logo img {
    width: 100%;
    max-width: 172px;
}

.about-footer-content {
    margin-top: 15px;
}

.about-footer-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-header .footer-contact-box {
    width: 32%;
}

.footer-contact-item {
    display: flex;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.footer-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.footer-contact-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
    transform: scale(1);
}

.footer-contact-item .icon-box i {
    position: relative;
    font-size: 24px;
    color: var(--primary-color);
    z-index: 1;
}

.footer-contact-item-content {
    width: calc(100% - 80px);
}

.footer-contact-item-content h3 {
    color: var(--white-color);
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.footer-contact-item-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-item-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover {
    color: #cb3b2d;
}

.footer-social-links {
    width: 30%;
    text-align: right;
}

.footer-social-links span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background: #d33227;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    background: var(--white-color);
}

.footer-social-links ul li a i {
    color: #ffffff;
    font-size: 20px;
}

.quick-links {
    margin-left: 40px;
}

.footer-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links p {
    color: var(--white-color);
    margin: 0;
}

.footer-links ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.footer-links ul li::marker {
    color: #cb3b2d;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover::marker {
    color: var(--white-color);
}

.footer-links ul li {
    color: var(--white-color);
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li:hover {
    color: #cb3b2d;
}

.footer-links ul li a {
    color: inherit;
    display: inline-block;
}

.footer-newsletter-box p {
    margin-top: 30px;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form .form-group .form-control {
    width: 68%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--white-color);
    background-color: transparent;
    border: 1px solid var(--dark-divider-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    outline: none;
    box-shadow: none;
    padding: 12px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.newsletter-form .form-group .btn-default.btn-highlighted {
    width: 32%;
    border-radius: 0 10px 10px 0;
}

.footer-copyright-text {
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
}

/************************************/
/***    16. About Us Page css     ***/
/************************************/

.page-header {
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    padding: 120px 0;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1em;
    color: var(--white-color);
    margin-bottom: 15px;
    cursor: none;
}

.page-header-box h1 span {
    color: var(--accent-secondary-color);
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    text-transform: capitalize;
    line-height: normal;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color);
}

.our-approach {
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    padding: 100px 0;
}

.approach-list-item {
    display: flex;
    align-items: center;
    gap: 30px 60px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 80px;
    padding-bottom: 80px;
}

.approach-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.approach-list-item:nth-child(even) {
    flex-direction: row-reverse;
}

.approach-image,
.approach-item-content {
    width: calc(50% - 30px);
}

.approach-image figure {
    display: block;
    border-radius: 20px;
}

.approach-image img {
    width: 100%;
    aspect-ratio: 1 / 0.614;
    object-fit: cover;
    border-radius: 20px;
}

.approach-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
}

.approach-body-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.approach-body-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    align-content: center;
    text-align: center;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    margin-right: 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.approach-body-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 8px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.approach-body-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.approach-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.approach-body-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.approach-body-content {
    width: calc(100% - 90px);
}

.approach-body-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 1.4em;
    color: var(--white-color);
}

.our-excellence {
    padding: 100px 0;
}

.why-choose-image.excellence-image {
    margin: 0;
}

.excellence-image figure img {
    aspect-ratio: 1 / 0.415;
}

.excellence-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.excellence-item {
    width: calc(33.33% - 20px);
    display: flex;
}

.excellence-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}

.excellence-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 8px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.excellence-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.excellence-item .icon-box img {
    position: relative;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.excellence-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.excellence-item-content {
    width: calc(100% - 80px);
}

.excellence-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.excellence-item-content p {
    margin-bottom: 0;
}

.our-innovation {
    padding: 100px 0;
}

.innovation-images {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
    margin-right: 15px;
}

.innovation-img-box-1 {
    width: calc(75% - 10px);
}

.innovation-img figure {
    display: block;
    border-radius: 20px;
}

.innovation-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.innovation-img-box-1 .innovation-img img {
    aspect-ratio: 1 / 1.188;
}

.client-review-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    border: 10px solid var(--secondary-color);
    border-radius: 30px;
    padding: 30px 20px;
    margin: -65px 35px 0;
    z-index: 1;
}

.customer-img.add-more i {
    font-size: 24px;
    color: var(--primary-color);
}

.hero-client-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.innovation-img-box-2 {
    width: calc(25% - 10px);
}

.innovation-img-box-2 .innovation-img {
    margin-bottom: 20px;
}

.innovation-img-box-2 .innovation-img:last-child {
    margin-bottom: 0;
}

.innovation-img-box-2 .innovation-img img {
    aspect-ratio: 1 / 1.795;
}

.innovation-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.innovation-counter-item {
    position: relative;
    width: calc(33.33% - 40px);
}

.innovation-counter-item:after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.innovation-counter-item:last-child:after,
.innovation-counter-item:nth-child(3n + 3)::after {
    display: none;
}

.innovation-counter-item h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}

.innovation-counter-item p {
    margin-bottom: 0;
}

.innovation-list {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.innovation-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.innovation-list ul li {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}

.innovation-list ul li:last-child {
    margin-bottom: 0;
}

.innovation-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.our-team {
    padding: 100px 0 70px;
}

.team-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
    border-radius: 20px;
    overflow: hidden;
}

.team-image figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(179.6deg, rgba(0, 0, 0, 0) 47.79%, rgba(0, 0, 0, 0.8) 81.7%);
    z-index: 1;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.39;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-body {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-body {
    transform: translateY(0);
}

.team-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
}

.team-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.team-content h3 a:hover {
    color: var(--accent-color);
}

.team-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

.team-social-list {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list {
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul {
    display: flex;
    justify-content: center;
    gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li:hover a {
    color: var(--primary-color);
    background: var(--accent-color);
}

.team-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}

.our-faqs {
    padding: 100px 0;
}

.faqs-review-box {
    display: inline-block;
    width: 100%;
    max-width: 390px;
}

.faqs-review-body {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 30px;
    overflow: hidden;
}

.faqs-review-body::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.faqs-review-box:hover .faqs-review-body::before {
    height: 100%;
}

.review-rating-box,
.faqs-review-body .hero-client-box {
    position: relative;
    z-index: 1;
}

.review-rating-box {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-rating-box h2 {
    font-size: 46px;
    font-weight: 700;
}

.review-rating-box i {
    font-size: 40px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faqs-review-body .hero-client-box {
    display: block;
}

.faqs-review-body .customer-images {
    margin: 0 0 10px 0;
}

.faqs-review-body .customer-images .customer-img {
    border-color: var(--white-color);
}

.faqs-review-body .hero-client-box p {
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

.faqs-review-box:hover .faqs-review-body .review-rating-box i,
.faqs-review-box:hover .faqs-review-body .hero-client-box p {
    color: var(--primary-color);
}

.faqs-review-footer {
    border-top: 1px solid var(--divider-color);
}

.faqs-review-footer a {
    width: 100%;
    font-size: 20px;
    line-height: 1.2em;
    display: inline-flex;
    align-items: center;
    border-radius: 0 0 20px 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 18px 30px;
}

.faqs-review-footer a i {
    font-size: 22px;
    margin-right: 15px;
}

.faq-accordion .accordion-item {
    position: relative;
    border: 1px solid var(--divider-color);
    background: var(--white-color);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 20px;
    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: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--primary-color);
    padding: 20px 50px 20px 20px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
    color: var(--primary-color);
    background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f056';
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 20px;
    bottom: auto;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f055';
    color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
    border-top: 1px solid var(--dark-divider-color);
    padding: 0 50px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

/************************************/
/***    17. Services Page css     ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

/************************************/
/***    18. Service Single css    ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.page-catagery-list {
    border: 1px solid var(--divider-color);
    border-radius: 0px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-catagery-list h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: #000000;
    color: var(--white-color);
    padding: 25px 30px;
}

.page-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
    background-color: var(--white-color);
}

.page-catagery-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.page-catagery-list ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover {
    color: var(--primary-color);
}

.page-catagery-list ul li a::before {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    color: inherit;
}

.faqs-review-box.sidebar-cta-box {
    max-width: 100%;
}

.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.574;
    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: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-entry ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.service-power-up-box,
.service-reliable-box,
.service-care-box {
    margin-top: 60px;
}

.service-power-image-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.service-power-steps,
.service-power-image {
    width: calc(50% - 15px);
}

.service-power-step-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.service-power-step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-power-step-no h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
}

.service-power-step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-power-step-content p {
    margin-bottom: 0;
}

.service-power-image figure {
    display: block;
    border-radius: 20px;
}

.service-power-image img {
    width: 100%;
    aspect-ratio: 1 / 1.077;
    object-fit: cover;
    border-radius: 20px;
}

.service-reliable-item-box {
    background: var(--white-color);
    border-radius: 20px;
    border-top: 2px solid var(--accent-color);
    padding: 40px;
}

.service-reliable-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 100px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.service-reliable-item-list .excellence-item {
    position: relative;
    width: calc(33.33% - 66.67px);
    display: block;
}

.service-reliable-item-list .excellence-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.service-reliable-item-list .excellence-item:last-child::before,
.service-reliable-item-list .excellence-item:nth-child(3n + 3)::before {
    display: none;
}

.service-reliable-item-list .excellence-item .icon-box {
    background-color: var(--accent-color);
    margin: 0 0 20px 0;
}

.service-reliable-item-list .excellence-item .excellence-item-content {
    width: 100%;
}

.service-reliable-item-list .excellence-item .excellence-item-content h3 {
    margin-bottom: 0;
}

.service-care-image-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--primary-color);
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
}

.service-care-image,
.service-care-counetrs {
    width: calc(50% - 15px);
}

.service-care-image figure {
    display: block;
    border-radius: 20px;
}

.service-care-image img {
    width: 100%;
    aspect-ratio: 1 / 0.585;
    object-fit: cover;
}

.service-care-counetrs {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 20px;
}

.service-care-counter-item {
    width: calc(50% - 10px);
}

.service-care-counter-item h2 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.service-care-counter-item p {
    color: var(--white-color);
    margin: 0;
}

/************************************/
/***     19. Blog Archive css     ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 30px;
    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(--white-color);
    color: var(--primary-color);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/************************************/
/***      20. Blog Single css     ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-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(--white-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: 700;
    line-height: 1.1em;
    margin: 0 0 0.435em;
}

.post-entry h1 {
    font-size: 60px;
}

.post-entry h2 {
    font-size: 46px;
}

.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(--primary-color);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 12px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--white-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 20px;
    font-weight: 600;
    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: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.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: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***    21. Projects Page css     ***/
/************************************/

.page-projects {
    padding: 100px 0 60px;
}

/************************************/
/***    22. Project Single css    ***/
/************************************/

.page-project-single {
    padding: 100px 0;
}

.project-category {
    border: 1px solid var(--divider-color);
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.project-category-list h3 {
    font-size: 20px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 25px 30px;
}

.project-category-list ul {
    margin: 0;
    padding: 30px;
    list-style: none;
}

.project-category-list ul li {
    font-size: 18px;
    font-weight: 600;
    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:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-list ul li span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.category-social-link {
    background-color: var(--primary-color);
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
}

.category-social-link span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--white-color);
}

.category-social-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-social-link ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.category-social-link ul li:last-child {
    margin-right: 0;
}

.category-social-link ul li a {
    background: var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.category-social-link ul li:hover a {
    background: var(--white-color);
}

.category-social-link ul li a i {
    font-size: 20px;
    color: var(--primary-color);
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0;
}

.project-entry h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-entry ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-entry ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 1px;
    left: 0;
}

.project-overview-box,
.project-solution-box,
.project-expert-box {
    margin-top: 60px;
}

.project-entry-video-content {
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    margin-top: 40px;
    overflow: hidden;
}

.project-entry-video {
    position: relative;
    width: 62%;
}

.project-entry-video figure {
    display: block;
    height: 100%;
}

.project-entry-video figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 30%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-entry-video .video-play-button a {
    height: 60px;
    width: 60px;
}

.project-entry-video .video-play-button a::before,
.project-entry-video .video-play-button a::after {
    top: -33%;
    left: -33%;
}

.project-entry-video .video-play-button i {
    font-size: 26px;
}

.project-entry-video figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.468;
    object-fit: cover;
}

.project-entry-content {
    width: 38%;
    background: url('../images/icon-blockquote-light.svg'), var(--primary-color);
    background-repeat: no-repeat;
    background-position: top 10px left 10px;
    background-size: 98px auto;
    align-content: center;
    padding: 55px 20px 30px;
}

.project-entry-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.project-entry-content ul {
    margin: 40px 0 0;
}

.project-entry-content ul li {
    color: var(--white-color);
}

.project-solution-image-conetnt,
.project-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-solution-conetnt,
.project-solution-image {
    width: calc(50% - 15px);
}

.project-solution-conetnt .about-body-item {
    width: 100%;
    margin-bottom: 30px;
}

.project-solution-conetnt .about-body-item:last-child {
    margin-bottom: 0;
}

.project-solution-image figure {
    display: block;
    border-radius: 20px;
}

.project-solution-image img {
    width: 100%;
    aspect-ratio: 1 / 0.481;
    object-fit: cover;
    border-radius: 20px;
}

.project-challenge-list .excellence-item {
    width: calc(50% - 15px);
    display: block;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 40px;
}

.project-challenge-list .excellence-item:nth-child(even) {
    background: var(--accent-color);
}

.project-challenge-list .excellence-item .icon-box {
    margin: 0 0 40px 0;
}

.project-challenge-list .excellence-item .icon-box::before {
    background: var(--white-color);
}

.project-challenge-list .excellence-item:nth-child(even) .icon-box img {
    filter: brightness(0) invert(1);
}

.project-challenge-list .excellence-item:nth-child(even) .icon-box {
    background-color: var(--primary-color);
}

.project-challenge-list .excellence-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.project-challenge-list .excellence-item-content {
    width: 100%;
}

.project-challenge-list .excellence-item-content h3,
.project-challenge-list .excellence-item-content p {
    color: var(--white-color);
}

.project-challenge-list .excellence-item:nth-child(even) .excellence-item-content h3,
.project-challenge-list .excellence-item:nth-child(even) .excellence-item-content p {
    color: var(--primary-color);
}

.project-expert-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-expert-box ul li {
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    padding: 17px 20px 17px 45px;
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.project-expert-box ul li:hover {
    color: var(--primary-color);
    background: var(--accent-color);
}

.project-expert-box ul li::before {
    top: 18px;
    left: 20px;
    transition: all 0.4s ease-in-out;
}

.project-expert-box ul li:hover::before {
    color: var(--primary-color);
}

/************************************/
/***       23. Team Page css      ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

/************************************/
/***      24. Team Single css     ***/
/************************************/

.page-team-single {
    padding: 100px 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.485;
    object-fit: cover;
    border-radius: 20px;
}

.team-member-about,
.member-professional-info,
.member-technical-info,
.team-member-achievements {
    margin-bottom: 60px;
}

.member-content-body {
    background-color: var(--white-color);
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 40px;
}

.member-content-body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-content-body ul li {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.5em;
    color: var(--primary-color);
}

.member-content-body ul li span {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
}

.member-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}

.member-social-list h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.member-social-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.member-social-list ul li a {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.member-social-list ul li a i {
    color: inherit;
    font-size: 18px;
}

.member-professional-info {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
}

.member-professional-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-professional-info-content ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}

.member-professional-info-content ul li:last-child {
    margin-bottom: 0;
}

.member-professional-info-content ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    top: 1px;
    left: 0;
}

.technical-info-item {
    display: flex;
    margin-bottom: 30px;
}

.technical-info-item:last-child {
    margin-bottom: 0;
}

.technical-info-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    align-content: center;
    text-align: center;
    background-color: var(--accent-color);
    border-radius: 10px;
    margin-right: 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.technical-info-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 8px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.technical-info-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.technical-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.technical-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.technical-info-item-content {
    width: calc(100% - 80px);
}

.technical-info-item-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.technical-info-item-content p {
    margin: 0;
}

.member-achievements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.member-achievements-list .skills-progress-bar {
    width: calc(50% - 15px);
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.skills-progress-bar .skill-data .skill-title {
    text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 16px;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 100px;
}

.team-contact-form .contact-us-form {
    background-color: var(--white-color);
    width: 100%;
}

/************************************/
/***  25. Testimonials Page css   ***/
/************************************/

.page-testimonials {
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-testimonials .testimonial-item::before {
    display: none;
}

.page-testimonials .testimonial-item .testimonial-header {
    border-color: var(--divider-color);
}

.page-testimonials .testimonial-item .author-content h3 {
    color: var(--primary-color);
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p {
    color: var(--text-color);
}

/************************************/
/***     26. Image Gallery css    ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.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.83;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.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(--primary-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: var(--accent-color);
    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.83;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***      28. FAQs Page css       ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
    margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
    margin-bottom: 0px;
}

/************************************/
/***    29. Contact Us Page css   ***/
/************************************/

.page-contact-us {
    padding: 100px 0;
}

.contact-us-box {
    background: var(--white-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
    padding: 80px;
}

.contact-us-content,
.contact-us-form {
    width: calc(50% - 30px);
}

.contact-us-form {
    background-color: #fbf2f9;
    border-radius: 20px;
    padding: 40px;
}

.contact-info-item {
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.contact-info-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.contact-info-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #e11e10;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: white;
    font-size: 35px;
}

.contact-info-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #081d0d00;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1) rotate(180deg);
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(1) invert(1);
}

.contact-item-content {
    width: calc(100% - 85px);
}

.contact-item-content p {
    text-transform: capitalize;
    margin-bottom: 12px;
}

.contact-item-content h3 {
    font-size: 20px;
}

.contact-item-content h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover {
    color: #d33227;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.contact-form .btn-default {
    width: 100%;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 550px;
    width: 100%;
}

/************************************/
/***    30. 404 Error Page css    ***/
/************************************/

.error-page {
    padding: 100px 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,
.error-page-content-body p {
    margin-bottom: 20px;
}

/************************************/
/*** 	  31. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1300px) {

    .main-menu ul li {
        margin: 0;
    }
}

@media only screen and (max-width: 991px) {

    .btn-default {
        padding: 14px 15px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-brand img {
        max-width: 180px;
    }

    .main-menu ul li.highlighted-menu {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
                border-bottom: 1px solid #a9a9a9;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        font-size: 14px;
    }

    .section-title h1 {
        font-size: 45px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero.hero-bg-image {
        padding: 100px 0;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-slide {
        padding: 100px 0;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        bottom: 30px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .hero-image {
        max-width: 75%;
        margin: 0 auto;
        margin-bottom: -50px;
    }

    .learn-more-circle a img {
        max-width: 120px;
    }

    .our-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-ticker-box {
        --gap: 50px;
    }

    .scrolling-content span {
        font-size: 26px;
    }

    .scrolling-content span::before {
        left: -25px;
        width: 8px;
        height: 8px;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-images {
        width: 100%;
        margin: 0 0 30px;
    }

    .about-counter-box {
        padding: 20px 40px;
    }

    .about-counter-header {
        margin-bottom: 20px;
    }

    .about-counter-header h2 {
        width: calc(50% - 15px);
        font-size: 36px;
        margin-right: 15px;
    }

    .about-counter-footer {
        margin-top: 20px;
    }

    .about-us-body {
        margin-bottom: 30px;
    }

    .about-body-item::before {
        width: 70px;
    }

    .about-body-item .icon-box {
        height: 70px;
        width: 70px;
    }

    .about-body-item .icon-box img {
        max-width: 34px;
    }

    .about-body-title {
        width: calc(100% - 70px);
    }

    .about-us-list ul li {
        padding-left: 25px;
    }

    .about-us-list ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .about-us-footer {
        margin-top: 30px;
        padding-top: 30px;
    }

    .our-services {
        padding: 50px 0;
    }

    .service-image img {
        aspect-ratio: 1 / 1.05;
    }

    .service-item .icon-box {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .service-item .icon-box img {
        max-width: 26px;
    }

    .service-body {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .our-protection {
        padding: 50px 0;
    }

    .our-protection-box {
        gap: 50px 30px;
    }

    .protection-video,
    .protection-content {
        width: 100%;
    }

    .protection-content .section-title {
        padding-bottom: 30px;
    }

    .protection-list ul li {
        padding-left: 25px;
    }

    .protection-list ul li::before {
        top: 2px;
        font-size: 18px;
    }

    .protection-btn {
        margin-top: 30px;
    }

    .protection-video video {
        height: 350px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-item-box {
        margin-bottom: 40px;
    }

    .why-choose-item {
        width: calc(50% - 15px);
    }

    .why-choose-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .why-choose-item .icon-box img {
        max-width: 26px;
    }

    .why-choose-item-content {
        width: calc(100% - 60px);
    }

    .why-choose-image {
        margin: 0 0 30px 0;
    }

    .why-choose-image figure img {
        aspect-ratio: 1 / 0.5;
    }

    .video-play-button a {
        width: 70px;
        height: 70px;
    }

    .video-play-button i {
        font-size: 26px;
    }

    .why-choose-counter-list {
        margin-top: 30px;
    }

    .why-choose-counter-item h2 {
        font-size: 36px;
    }

    .our-projects {
        padding: 50px 0 20px;
    }

    .our-Project-nav {
        margin-bottom: 40px;
    }

    .our-Project-nav ul {
        gap: 10px 20px;
    }

    .project-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .project-image {
        margin-bottom: 15px;
    }

    .project-content {
        margin: 0;
    }

    .project-content h3 {
        font-size: 18px;
    }

    .how-it-work {
        padding: 50px 0 0;
    }

    .how-work-nav {
        margin-bottom: 30px;
    }

    .how-work-nav ul li .nav-link {
        font-size: 16px;
        padding: 0 5px 20px;
        flex-direction: column;
    }

    .how-work-nav ul li .nav-link span {
        font-size: 20px;
        margin: 0 0 3px;
    }

    .how-work-content {
        margin-bottom: 30px;
    }

    .how-work-content ul {
        margin-top: 30px;
    }

    .how-work-content ul li {
        padding-left: 25px;
    }

    .how-work-content ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .how-work-content .why-choose-counter-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .how-work-image {
        margin-left: 0;
    }

    .how-work-image img {
        aspect-ratio: 1 / 0.6;
    }

    .our-partners {
        padding: 40px;
        margin-top: 50px;
    }

    .our-partners .section-title {
        margin-bottom: 30px;
    }

    .partners-logo-box {
        gap: 25px 50px;
        margin-left: 0;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .what-we-do-content {
        margin-bottom: 30px;
    }

    .what-do-body-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .what-we-do-image {
        width: 100%;
        max-width: 75%;
        margin: 0 auto;
    }

    .years-experience h2 {
        font-size: 36px;
    }

    .our-testimonials {
        padding: 50px 0;
    }

    .testimonial-item::before {
        display: none;
    }

    .testimonial-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .testimonial-rating i {
        font-size: 18px;
    }

    .testimonial-pagination {
        margin-top: 40px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-item-body {
        padding: 20px;
    }

    .post-item-content {
        margin-bottom: 15px;
    }

    .main-footer {
        padding: 50px 0 0;
    }

    .footer-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .about-footer {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .footer-social-links,
    .footer-header .footer-contact-box {
        width: 50%;
    }

    .footer-contact-box {
        margin-bottom: 30px;
    }

    .footer-header .footer-contact-box {
        margin-bottom: 0;
    }

    .footer-contact-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-contact-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .footer-contact-item .icon-box i {
        font-size: 20px;
    }

    .footer-contact-item-content {
        width: calc(100% - 65px);
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-newsletter-box p {
        margin-top: 20px;
    }

    .footer-copyright-text {
        margin-top: 0;
        padding: 30px 0;
    }

    .quick-links {
        margin-left: 0px;
    }

    .footer-links h3 {
        margin-bottom: 20px;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header-box h1 {
        font-size: 45px;
    }

    .our-approach {
        padding: 50px 0;
    }

    .approach-list-item {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .approach-image,
    .approach-item-content {
        width: 100%;
    }

    .approach-image img {
        aspect-ratio: 1 / 0.49;
    }

    .approach-body {
        padding-top: 30px;
    }

    .approach-body-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .approach-body-item .icon-box img {
        max-width: 26px;
    }

    .approach-body-content {
        width: calc(100% - 65px);
    }

    .our-excellence {
        padding: 50px 0;
    }

    .excellence-image figure img {
        aspect-ratio: 1 / 0.5;
    }

    .excellence-item {
        width: calc(50% - 15px);
    }

    .excellence-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .excellence-item .icon-box img {
        max-width: 26px;
    }

    .excellence-item-content {
        width: calc(100% - 65px);
    }

    .our-innovation {
        padding: 50px 0;
    }

    .innovation-images {
        margin: 0 0 30px;
    }

    .innovation-img-box-1 .innovation-img img {
        aspect-ratio: 1 / 0.99;
    }

    .client-review-box {
        padding: 20px;
        margin: -55px 85px 0;
    }

    .innovation-img-box-2 .innovation-img img {
        aspect-ratio: 1 / 1.485;
    }

    .innovation-counter-list {
        padding-top: 30px;
    }

    .innovation-counter-item h2 {
        font-size: 36px;
    }

    .innovation-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .innovation-list ul li {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .innovation-list ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-image img {
        aspect-ratio: 1 / 1.1;
    }

    .team-content h3 {
        margin-bottom: 5px;
    }

    .team-item:hover .team-social-list {
        margin-top: 10px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .faq-content {
        margin-bottom: 30px;
    }

    .faqs-review-box {
        max-width: 330px;
    }

    .faqs-review-body {
        padding: 20px;
    }

    .review-rating-box {
        width: 34%;
    }

    .review-rating-box h2 {
        font-size: 36px;
    }

    .review-rating-box i {
        font-size: 30px;
    }

    .faqs-review-body .hero-client-box {
        width: calc(66% - 20px);
    }

    .faqs-review-footer a {
        padding: 14px 20px;
    }

    .faqs-review-footer a i {
        font-size: 20px;
        margin-right: 10px;
    }

    .faq-accordion .accordion-item {
        border-radius: 14px;
    }

    .faq-accordion .accordion-header .accordion-button {
        padding: 15px 45px 15px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
        top: 16px;
        font-size: 20px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 0px 45px 15px 15px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagery-list {
        margin-bottom: 30px;
    }

    .page-catagery-list h3 {
        padding: 18px 20px;
    }

    .page-catagery-list ul {
        padding: 20px;
    }

    .page-catagery-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .faqs-review-box.sidebar-cta-box {
        max-width: 345px;
    }

    .page-single-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry ul li {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .service-entry ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .service-power-up-box,
    .service-reliable-box,
    .service-care-box {
        margin-top: 40px;
    }

    .service-power-image-steps {
        gap: 20px;
        margin-top: 30px;
    }

    .service-power-step-item {
        gap: 15px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .service-power-steps {
        width: calc(52% - 10px);
    }

    .service-power-image {
        width: calc(48% - 10px);
    }

    .service-power-step-no h2 {
        font-size: 34px;
        margin-bottom: 0;
    }

    .service-reliable-item-box {
        padding: 30px;
    }

    .service-reliable-item-list {
        gap: 30px 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .service-reliable-item-list .excellence-item {
        width: calc(33.33% - 26.67px);
    }

    .service-reliable-item-list .excellence-item::before {
        right: -20px;
    }

    .service-care-image-counters {
        margin-top: 30px;
        padding: 30px;
    }

    .service-care-counetrs {
        gap: 40px 20px;
    }

    .service-care-counter-item h2 {
        margin-bottom: 5px;
    }

    .service-care-counter-item p {
        font-size: 14px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 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.417em;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .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: 50px 0 20px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-category {
        margin-bottom: 30px;
    }

    .project-category-list h3 {
        padding: 18px 20px;
    }

    .project-category-list ul {
        padding: 20px;
    }

    .project-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .category-social-link {
        padding: 20px;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .project-entry ul li {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .project-entry ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .project-overview-box,
    .project-solution-box,
    .project-expert-box {
        margin-top: 40px;
    }

    .project-entry-video-content {
        margin-top: 30px;
    }

    .project-entry-video {
        width: 60%;
    }

    .project-entry-content {
        width: 40%;
        background-size: 80px auto;
        background-position: top 5px left 5px;
        padding: 40px 15px 20px;
    }

    .project-entry-content ul {
        margin: 30px 0 0;
    }

    .project-solution-conetnt .about-body-item .about-body-title h3 {
        font-size: 18px
    }

    .project-solution-image-conetnt,
    .project-challenge-list {
        margin-top: 30px;
    }

    .project-challenge-list .excellence-item {
        padding: 30px;
    }

    .project-challenge-list .excellence-item .icon-box {
        margin: 0 0 30px 0;
    }

    .project-expert-box ul {
        gap: 20px;
    }

    .project-expert-box ul li {
        width: calc(50% - 10px);
        margin: 0;
        padding: 8px 10px 8px 32px
    }

    .project-expert-box ul li::before {
        top: 10px;
        left: 8px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-single-image {
        margin-bottom: 30px;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.7;
    }

    .team-member-about,
    .member-professional-info,
    .member-technical-info,
    .team-member-achievements {
        margin-bottom: 40px;
    }

    .member-content-body {
        padding: 20px;
        margin-bottom: 30px;
    }

    .member-content-body ul {
        gap: 20px 30px;
    }

    .member-content-body ul li {
        font-size: 18px;
    }

    .member-professional-info {
        padding: 20px;
    }

    .member-professional-info-content ul li {
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .member-professional-info-content ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .technical-info-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .technical-info-item .icon-box img {
        max-width: 26px;
    }

    .technical-info-item-content {
        width: calc(100% - 65px);
    }

    .technical-info-item-content h3 {
        margin-bottom: 5px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }

    .page-testimonials {
        padding: 50px 0 20px;
    }

    .page-testimonials .testimonial-item {
        padding: 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 40px 0;
    }

    .contact-us-box {
        padding: 50px;
    }

    .contact-us-content,
    .contact-us-form {
        width: 100%;
    }

    .contact-info-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .contact-info-item .icon-box img {
        max-width: 26px;
    }

    .contact-item-content {
        width: calc(100% - 65px);
    }

    .contact-item-content p {
        margin-bottom: 5px;
    }

    .contact-us-form {
        padding: 20px;
    }

    .contact-form .form-control {
        padding: 12px 15px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 80%;
    }

    .error-page-content .section-title,
    .error-page-content-body p {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {

    .section-title h1 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero.hero-bg-image .hero-content {
        text-align: left;
    }

    .hero-client-box,
    .hero-btn {
        width: 100%;
    }

    .hero-list {
        margin-top: 20px;
        padding-top: 20px;
    }

    .hero-list ul {
        gap: 10px;
    }

    .hero-list ul li {
        width: 100%;
        padding-left: 25px;
    }

    .hero-list ul li::before {
        font-size: 18px;
        top: 2px;
    }

    .hero-image {
        max-width: 100%;
    }

    .learn-more-circle a img {
        max-width: 80px;
    }

    .scrolling-content span {
        font-size: 20px;
    }

    .about-img-1 figure,
    .about-counter-box {
        height: auto;
    }

    .about-img-1,
    .about-counter-box {
        width: 100%;
    }

    .about-img-1 img,
    .about-img-2 img {
        aspect-ratio: 1 / 0.75;
    }

    .about-counter-box {
        padding: 20px 30px;
    }

    .about-counter-header h2 {
        width: calc(35% - 15px);
        font-size: 26px;
    }

    .about-counter-header p {
        width: 65%;
    }

    .about-counter-body a img {
        max-width: 100px;
    }

    .about-counter-footer h3 {
        font-size: 18px;
    }

    .about-us-body {
        gap: 20px;
    }

    .about-body-item {
        width: 100%;
        border-radius: 12px;
    }

    .about-body-item::before {
        width: 60px;
    }

    .about-body-item .icon-box {
        height: 60px;
        width: 60px;
    }

    .about-body-item .icon-box img {
        max-width: 28px;
    }

    .about-body-title {
        width: calc(100% - 60px);
    }

    .about-body-title h3 {
        font-size: 18px;
    }

    .about-us-list ul {
        gap: 10px;
    }

    .about-us-list ul li {
        width: 100%;
    }

    .about-us-footer {
        margin-top: 20px;
        padding-top: 20px;
    }

    .about-author-box {
        gap: 10px;
    }

    .about-author-box .author-info h3 {
        font-size: 18px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .section-footer-text span {
        font-size: 14px;
    }

    .protection-list ul {
        gap: 10px;
    }

    .protection-list ul li {
        width: 100%;
    }

    .protection-image {
        max-width: 100%;
    }

    .why-choose-item-box {
        gap: 20px;
    }

    .why-choose-item {
        width: 100%;
    }

    .why-choose-item-content h3 {
        font-size: 18px;
    }

    .why-choose-image figure img {
        aspect-ratio: 1 / 0.827;
    }

    .why-choose-counter-list {
        gap: 20px;
    }

    .why-choose-counter-item {
        width: calc(50% - 10px);
    }

    .why-choose-counter-item:after {
        right: -10px;
    }

    .why-choose-counter-item:nth-child(3n + 3)::after {
        display: block;
    }

    .why-choose-counter-item:last-child:after,
    .why-choose-counter-item:nth-child(2n + 2)::after {
        display: none;
    }

    .why-choose-counter-item h2 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .why-choose-counter-item p {
        font-size: 14px;
    }

    .our-Project-nav ul li .btn-default {
        padding: 10px 12px;
    }

    .project-content p {
        margin-bottom: 5px;
    }

    .how-work-nav ul li {
        width: 50%;
    }

    .how-work-nav ul li .nav-link {
        padding: 0 2px 20px;
    }

    .how-work-nav ul li .nav-link::before {
        display: none;
    }

    .how-work-content ul {
        margin-top: 20px;
        gap: 10px;
    }

    .how-work-content ul li {
        width: 100%;
    }

    .our-partners {
        padding: 20px;
    }

    .partners-logo-box {
        gap: 20px;
    }

    .partners-logo {
        width: calc(33.33% - 13.33px);
    }

    .what-do-body-item h3 {
        font-size: 18px;
        padding-left: 17px;
    }

    .what-do-body-item h3::before {
        width: 8px;
        height: 8px;
    }

    .what-we-do-image {
        max-width: 100%;
        padding: 0;
    }

    .years-experience {
        padding: 10px 15px;
        border-radius: 12px;
    }

    .years-experience h2 {
        font-size: 26px;
    }

    .years-experience p {
        font-size: 14px;
    }

    .testimonial-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .author-image {
        margin-right: 10px;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .author-content p {
        font-size: 14px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .testimonial-pagination {
        margin-top: 30px;
    }

    .post-item-body {
        padding: 15px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .footer-contact-item,
    .footer-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-social-links,
    .footer-header .footer-contact-box {
        width: 100%;
    }

    .footer-social-links {
        text-align: left;
        margin-bottom: 30px;
    }

    .footer-social-links span {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-contact-item-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .footer-links h3 {
        font-size: 18px;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-copyright-text {
        padding: 15px 0;
    }

    .page-header-box h1 {
        font-size: 30px;
    }

    .approach-list-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .approach-image img {
        aspect-ratio: 1 / 0.6;
    }

    .approach-body {
        gap: 20px;
    }

    .approach-body-item {
        width: 100%;
    }

    .approach-body-content h3 {
        font-size: 18px;
    }

    .excellence-image figure img {
        aspect-ratio: 1 / 0.75;
    }

    .excellence-item-list {
        gap: 20px;
    }

    .excellence-item {
        width: 100%;
    }

    .excellence-item-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .innovation-img-box-1 {
        width: calc(65% - 10px);
    }

    .innovation-img-box-1 .innovation-img img {
        aspect-ratio: 1 / 1.625;
    }

    .innovation-img-box-2 {
        width: calc(35% - 10px);
    }

    .client-review-box {
        padding: 15px;
        margin: -40px -105px 0 25px;
        border-width: 5px;
        border-radius: 20px;
    }

    .client-review-box .customer-img,
    .client-review-box .customer-img.add-more {
        width: 45px;
        height: 45px;
    }

    .customer-img.add-more i {
        font-size: 18px;
    }

    .hero-client-content h3 {
        font-size: 18px;
    }

    .innovation-counter-list {
        gap: 30px;
    }

    .innovation-counter-item {
        width: calc(33.33% - 20px);
    }

    .innovation-counter-item:after {
        right: -15px;
    }

    .innovation-counter-item h2 {
        font-size: 26px;
    }

    .faqs-review-box {
        max-width: 100%;
    }

    .review-rating-box {
        width: 30%;
    }

    .review-rating-box h2 {
        font-size: 26px;
    }

    .faqs-review-body .hero-client-box {
        width: calc(70% - 20px);
    }

    .faqs-review-footer a {
        font-size: 18px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 0px 15px 15px;
    }

    .page-catagery-list h3 {
        font-size: 18px;
    }

    .faqs-review-box.sidebar-cta-box {
        max-width: 100%;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-power-steps,
    .service-power-image {
        width: 100%;
    }

    .service-power-step-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-power-image img {
        aspect-ratio: 1 / 0.8;
    }

    .service-reliable-item-box {
        padding: 20px;
    }

    .service-reliable-item-list {
        gap: 30px 20px;
    }

    .service-reliable-item-list .excellence-item {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .service-reliable-item-list .excellence-item::before {
        right: 0;
        bottom: -15px;
        top: auto;
        width: 100%;
        height: 1px;
    }

    .service-reliable-item-list .excellence-item .icon-box {
        margin: 0 15px 0 0;
    }

    .service-reliable-item-list .excellence-item .excellence-item-content {
        width: calc(100% - 65px);
    }

    .service-care-image-counters {
        padding: 20px;
    }

    .service-care-image,
    .service-care-counetrs {
        width: 100%;
    }

    .service-care-counetrs {
        gap: 30px 20px;
    }

    .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: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .project-category-list h3 {
        font-size: 18px;
    }

    .category-social-link {
        padding: 12px 20px;
        gap: 20px;
    }

    .category-social-link span {
        font-size: 18px;
    }

    .project-entry h2 {
        font-size: 26px;
    }

    .project-entry-video,
    .project-entry-content {
        width: 100%;
    }

    .project-entry-video figure,
    .project-entry-video figure img {
        height: auto;
    }

    .project-entry-video figure img {
        aspect-ratio: 1 / 0.6;
    }

    .project-entry-content h3 {
        font-size: 18px;
    }

    .project-entry-content ul {
        margin: 20px 0 0;
    }

    .project-solution-conetnt .about-body-item {
        margin-bottom: 20px;
    }

    .project-solution-conetnt,
    .project-solution-image {
        width: 100%;
    }

    .project-challenge-list .excellence-item {
        width: 100%;
        padding: 20px;
    }

    .project-challenge-list .excellence-item .icon-box {
        margin: 0 0 20px 0;
    }

    .project-expert-box ul li {
        width: 100%;
    }

    .team-single-image img {
        aspect-ratio: 1 / 1.1;
    }

    .member-content-body ul {
        gap: 15px;
    }

    .member-content-body ul li {
        width: 100%;
        gap: 10px;
        font-size: 16px;
    }

    .member-social-list h3 {
        font-size: 18px;
    }

    .member-social-list ul {
        gap: 10px;
    }

    .technical-info-item-content h3 {
        font-size: 18px;
    }

    .member-achievements-list {
        gap: 20px;
    }

    .member-achievements-list .skills-progress-bar {
        width: 100%;
    }

    .contact-us-box {
        padding: 20px;
    }

    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-item-content h3 {
        font-size: 18px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}

.home-1sec-img-css {
    width: 100% !important;
    border-radius: 6px !important;
}

.footer-social-links {
    width: 100%;
    text-align: start;
}

.servvice-pge-pb {
    padding-bottom: 64px;
}

.hm-sec-3-css {
    border-bottom: none !important;
    padding-bottom: 7px !important;
    margin-bottom: 0px !important;
}

.service-details-pg-css {
    background-color: white;
}

.testimonial-item {
    border: 1px solid rgb(121, 121, 121);
    border-radius: 6px;
    padding: 40px;
    background: rgb(29, 28, 28);
}

.wcu-sec-count-css {
    margin-top: 28px;
    background: #282321;
    padding: 20px 26px;
    border-radius: 6px;
}

.proj-p-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.em-breadcrub-css{
    font-style: normal;
    padding-left: 6px;
    padding-right: 6px;
}

  .list-item-flex-sd {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                    }
                    
                     .list-item-flex-sd span{
                    font-size: 24px;
    color: red;
    }