:root {
    --page-text-color: #0B0C0D;
    --page-secondary-bg: #E4F1FD;
    --page-primary-bg: #3D3DFD;
    --text-light: #3F4751;
}

.page-text-color {
    color: var(--page-text-color);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg,
.page-theme-bg {
    background: var(--page-primary-bg);
}

.text-light {
    color: var(--text-light) !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button-primary {
    font-family: 'Gilroy' !important;
    border-radius: 0 !important;
}

.link-block {
    color: var(--page-text-color);
    display: inline-block;
    transition: all 0.3s;
}

.link-block:hover {
    text-decoration: underline !important;
    color: var(--page-primary-bg);
    transition: all 0.3s;
}

.service-card:hover .link-block {
    color: var(--white-color) !important;
}
.z-indexup {
    position: relative;
    z-index: 1;
}

/* Hero Section */

.hero-section {
    position: relative;
    padding: 80px 0 80px;
    background-color: var(--page-secondary-bg);
    background-image: url(../images/parking-images/banner-shape.webp);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.button-primary.button-primary-white:hover {
    background-color: var(--white-color) !important;
    color: var(--page-text-color) !important;
}

/* Counter */

.counter {
    padding: 60px 0;
    color: var(--white-color);
}

.counter-grid {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
}

.counter-theme {
    color: var(--page-text-color);
    border-right: 1px solid #dddddd50;
}

.counter-text {
    color: var(--primary-color-600);
}

/* .counter-text.percent::after {
    content: '%';
} */

/* Services Wrapper */

.cloud-shape {
    position: absolute;
    top: 0;
    animation: bounce-move 10s infinite alternate;
}

.lamp-shape {
    position: absolute;
    bottom: 13%;
    right: 0;
}

.service-card {
    background-color: var(--white-color);
    transition: all 0.3s;
}

.service-card:hover {
    background-color: var(--page-text-color);
    transition: all 0.3s;
    color: var(--white-color) !important;
}

.service-card:hover p {
    color: var(--white-color) !important;
}

.img-block {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--page-secondary-bg);
    margin: 0 0 0 auto;
}

.content-block {
    padding: 30px 30px 50px;
}

/* Theme Block */

.theme-block {
    background-color: var(--page-primary-bg);
    padding: 80px 30px 30px;
}

.theme-block .service-card {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.theme-block .img-block {
    margin: unset;
    background: var(--page-primary-bg);
    padding: 22px;
    width: 90px;
    height: 90px;
}

@keyframes bounce-move {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Tech Stack */

.tech-wrappper {
    background-color: var(--white-color);
    border: 1px solid #0000001A;
    padding: 30px 30px;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.tech-wrappper:hover {
    transform: translateY(-5px);
}

.tech-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: -webkit-match-parent;
}

.tech-list li {
    text-align: center;
}

.tech-list li p {
    font-size: 14px;
}

.tech-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #DEDEDE;
    border-radius: 50px;
    margin: 0 auto 8px;
    padding: 12px;
}

/* Tab Wrapper */

.custom-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.custom-accordion-wrapper .accordion-box {
    padding: 20px 20px;
    border: none !important;
}

.custom-accordion-wrapper .accordion-button {
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.custom-accordion-wrapper .accordion-box .accordion-body {
    padding: 15px 0 0;
}

.custom-accordion-wrapper .accordion-button img {
    width: 100%;
    max-width: 36px;
    margin: 0 16px 0 0;
}

/* Cta Section */

.page-theme-cta {
    background: var(--page-primary-bg);
    padding: 40px 100px;
}

.page-theme-cta.dark {
    background-color: var(--page-text-color);
}

/* Responsive */


@media only screen and (max-width: 1599px) {

    .lamp-shape {
        bottom: 10.6%;
        max-width: 80px;
    }

    .tech-wrappper {
        padding: 20px 20px;
    }

    .tech-list li p {
        font-size: 12px;
    }

    .tech-list {
        gap: 20px;
    }

    .tech-img {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}


@media only screen and (max-width: 1366px) {

}

@media only screen and (max-width: 992px) {

    .hero-section {
        padding: 60px 0 60px;
        background-position: bottom;
    }

    .page-theme-cta,
    .theme-block {
        padding: 30px 30px;
    }
}

@media only screen   and (max-width: 767px) {

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-theme:nth-child(2) {
        border: none;
    }

    .lamp-shape {
        bottom: 0;
        max-width: 30px;
    }

    .page-theme-cta,
    .theme-block {
        padding: 30px 20px;
    }
}