:root {
    --primary-color: #DE2B33;

    --btn-primary-color: #DE2B33;
    --btn-secondary-color: #ab181f;
    --muted-dark: #F0F3F8;
    --body-text: #A7B5CE;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
        url('../fonts/gilroy-full/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Medium.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-80 {
    margin-bottom: 80px;
}
.w-500 {
    font-weight: 500 !important;
}

.spacer-xl {
    padding-block: 90px;
}
.text-color {
    color: #A7B5CE;
}
.primary-red {
    color: var(--btn-primary-color);
}
.ben-card {
    padding-block: 15px;
}
.circle-btn {
    height: 45px;
    width: 45px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--btn-primary-color);
}

.circle-icon {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.circle-icon.dark {
    border-color: #000;
}

.circle-icon.lg {
    width: 45px;
    height: 45px;
    padding: 6px;
    border-width: 2px;
}

.circle-icon.arrow-move svg {
    animation: arrow-move 2s infinite alternate;
}

@keyframes arrow-move {
    0% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(-3px);
    }
}

.web3-hero {
    background-color: #eff3f8;
}

.circles-wrap {
    position: relative;
}

.circles-wrap+img,
.circles-wrap img:nth-child(2),
.circles-wrap img:nth-child(3) {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.circles-wrap img:nth-child(1) {
    animation: noTransClockWise 10s linear infinite;
}

.circles-wrap img:nth-child(2) {
    width: 80%;
    animation: antiClockWise 10s linear infinite;
}

.circles-wrap img:nth-child(3) {
    width: 60%;
    animation: clockWise 10s linear infinite;
}

.circles-wrap+img {
    width: 45%;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.brand-grid .brand-img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: contain;
    border: 1px solid #ccc;
    padding: 40px 80px;
}

.brand-grid .brand-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all .3s ease;
}

.brand-grid .brand-img:hover img {
    scale: 1.05;
}

.count-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.web3-counter {
    background-image: url(../images/web3-img/web3-dark-bg.webp);
    background-color: #15141C;
    background-size: cover;
    background-position: center;
    padding: 90px 120px;
}

.count-grid::after {
    content: unset !important;
}

.counter-wrap {
    padding: 40px 22px;
    border-radius: 20px;
    border: 1px solid #5F7190;
    color: var(--white-color);
    height: 100%;
    background: linear-gradient(180deg, #282537 0%, #0A090E 100%);
}

.counter-wrap .counter-icon {
    height: 80px;
    min-width: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #39354C;
    border-radius: 50%;
    padding: 20px;
}

.highlight-link {
    position: relative;
}

.highlight-link .high-text {
    color: #FF8187;
}

.highlight-link::after {
    content: '';
    background-image: url(../images/web3-img/highlight-underline.webp);
    height: 35px;
    width: 95%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Table Block */

.inner-pricing-section table {
    overflow: hidden;
}

.inner-pricing-section table tr th {
    width: 25%;
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    text-align: center;
    height: 90px;
    padding: 10px;
    font-size: 24px;
    color: var(--white-color);
    font-weight: 600 !important;
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #464646;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #3C3C3C;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #282828;
}

.inner-pricing-section table tr th:nth-child(3) {
    background-color: #141414;
}

.inner-pricing-section table tr th:last-child {
    background-color: #000000;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* Service Block */

.service-card {
    width: 100%;
}

.service-card .service-img {
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0 !important;
    overflow: hidden;
}

.service-card .service-img .card-content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #142138;
    color: var(--white-color);
    padding: 15px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    text-align: center;
}

.service-card:hover .service-img .card-content {
    top: 0%;
}

.service-card:hover .circle-btn {
    background-color: rgb(20, 33, 56);
    animation: pulso-hover 2s infinite;
}

.service-card .service-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card .service-cont {
    padding: 15px 25px;
    border: 1px solid #9999B5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(222, 43, 51, .8);
        box-shadow: 0 0 0 0 rgba(222, 43, 51, .8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulso-hover {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(20, 33, 56, .8);
        box-shadow: 0 0 0 0 rgba(20, 33, 56, .8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Indus Block */

.indus--block {
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.indus--icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #E8ECF5;
}

.ben-card h3::after {
    content: '';
    width: 15%;
    height: 7px;
    background-color: var(--btn-primary-color);
    position: absolute;
    top: -3px;
    left: 0;
}

.ben-card h3::before {
    content: '';
    width: 100%;
    border-top: 1px solid #000;
    position: absolute;
    top: 0;
    left: 0;
}

.sq-icon {
    height: 75px;
    width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #E8ECF5;
    margin: 0 0 10px;
}
.accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.accordion-wrap .accord-cont {
    border-left: 1px solid currentColor;
}

.accordion-wrap :is(.h4, .contents) {
    color: #888888;
}

.accordion-wrap :is(.h4, .contents).active {
    color: #0A090E;
}

.accordion-wrap .contents {
    display: none;
    font-size: 18px;
    color: #0A090E;
}

.comp-card {
    background-color: #15131D;
    padding: 40px;
    border: 1px solid #15131D;
    transition: all .3s ease;
}

.comp-card .comp-icon {
    background-color: #272433;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px 25px;
}

.tech-blk {
    border: 1px solid #CECECE;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    transition: all .3s ease;
    cursor: pointer;
    height: 96px;
}

.tech-blk:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px -7px rgba(0, 0, 0, 0.3);
}

.tech-blk img {
    max-width: 160px;
    height: 40px;
    object-fit: contain;
}

.innov-cta {
    background-image: url(../images/web3-img/circle-bg.png);
    background-size: cover;
    background-position: center;
    padding: 100px 120px;
}

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 36px 0;
    transition: all 0.3s;
}

.faq-blocks .accordion-button::after {
    transform: scale(1) !important;
}

p+ol li,
p+ul li {
    font-size: 16px;
    text-align: start;
}

@keyframes noTransClockWise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes clockWise {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes antiClockWise {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@media (max-width: 1400px) {
    .web3-counter {
        padding: 50px 40px;
    }
    .count-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
    }
    .brand-grid .brand-img {
        padding: 40px 40px;
    }
}

@media (max-width: 992px) {
    .count-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .web3-counter {
        padding: 30px 15px;
    }

    .highlight-link {
        gap: 10px !important;
    }

    .circle-icon.lg {
        height: 30px;
        width: 30px;
        padding: 5px;
    }

    .highlight-link::after {
        height: 17px;
    }

    .brand-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .counter-wrap {
        padding: 30px 18px;
    }

    .counter-wrap .counter-icon {
        height: 50px;
        min-width: 50px;
        width: 50px;
        padding: 12px;
    }

    .mb-80 {
        margin-bottom: 40px;
    }

    .accordion-wrap .accord-cont {
        padding-left: 20px !important;
    }

    .engage-card {
        padding: 20px 20px;
    }

    .inner-pricing-section table {
        border-radius: unset !important;
        padding: 0;
        border: none !important;
    }

    .inner-pricing-section table tr td:not(:last-child) {
        border-bottom: 1px solid #d5d5d5 !important;
    }

    .inner-pricing-section table tbody tr td:first-child:before {
        color: var(--white-color);
    }

    .inner-pricing-section table, thead, tbody, th, td, tr {
      display: block;
    }

    .inner-pricing-section thead {
        display: none;
    }

    .inner-pricing-section tr {
        padding: 10px 0;
        border: none !important;
    }

    .inner-pricing-section td {
        text-align: right;
        padding-left: 50% !important;
        position: relative;
        border: none !important;
        min-height: 90px;
    }

    .inner-pricing-section td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: var(--text-theme);
    }
}

@media (max-width: 575px) {
    .emp-cta {
        padding: 30px 15px;
    }

    .innov-cta {
        padding: 30px 15px;
    }

    .faq-blocks .accordion-body {
        padding: 0 0 25px 0;
    }

    .count-grid {
        grid-template-columns: 1fr;
    }

    .highlight-link {
        font-size: 15px !important;
    }
    .circle-btn {
        height: 35px;
        width: 35px;
    }
    .comp-card {
        padding: 20px;
    }
    .accordion-flush .accordion-item .accordion-button {
        gap: 5px;
        padding: 20px 0;
    }
    .tech-stack-grid {
        gap: 20px;
    }
    
}