:root {
    --primary-color: #DE2B33;

    --btn-primary-color: #DE2B33;
    --btn-secondary-color: #ab181f;
    --muted-dark: #F0F3F8;
    --body-text: #A7B5CE;
}

.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-80 {
    margin-bottom: 80px;
}
.w-500 {
    font-weight: 500 !important;
}
.text-color {
    color: #A7B5CE;
}

.h2 {
    font-size: clamp(2rem, 1.5231rem + 2.3845vw, 3rem);
}

.text-lg {
    font-size: clamp(1rem, 0.0462rem + 4.769vw, 3rem);
}

.w-normal {
    font-family: "gilroy-medium" !important;
    font-weight: 500 !important;
}

.w-bold {
    font-family: 'gilroy-semibold' !important;
}

.dark-bg {
    background-color: #0A090E;
}

.text-color {
    color: var(--body-text) !important;
}

section .primary-btn {
    padding: 10px 30px;
    border-radius: 0;
}

.secondary-btn:hover,
.primary-btn {
    color: var(--white-color);
    background-color: var(--btn-primary-color);
}

.alt-btn:hover,
.primary-btn:hover,
.secondary-btn {
    color: var(--white-color);
    background-color: var(--btn-secondary-color);
}

.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);
    animation: pulso 2s infinite;
}

.circle-icon {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.circle-icon.lg {
    width: 55px;
    height: 55px;
    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);
    }
}
.mt-35 {
    margin-top: 35px;
}
.blockchain-hero {
    background: radial-gradient(34.66% 51.73% at 70.34% 46.07%, #162E59 0%, #08142A 100%);
    overflow: hidden;
    padding: 100px 0 0;
}

.hero-img-block {
    display: flex;
    align-items: flex-end;
}
.hero-img-block img{
    position: relative;
    z-index: 2;
}
.line-hero-block {
    position: absolute;
    top: 0;
    z-index: 1;
}
.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 36px;
}

.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;
}
.web3-counter {
    background-image: url('../images/web3-img/web3-dark-bg.png');
    background-size: cover;
    background-position: center;
    padding: 90px 130px;
}

.border-b {
    position: relative;
}

.count-grid {
    display: grid;
    grid-template-columns: 360px 1fr 1fr 1fr;
    gap: 25px;
}

.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.svg);
    height: 35px;
    width: 95%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.border-b {
    position: relative;
}

.border-b::after {
    height: 1px;
    content: '';
    width: 80%;
    top: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(#485E83, transparent);
}

.service-card .service-img {
    height: 200px;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}
.tab-bg-center img {
    width: 186px;
}
.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;
    font-size: 16px;
    transition: all .3s ease;
}

.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: 10px 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);
    }
}

.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: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #E8ECF5;
}
.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: 14px;
    color: #0A090E;
}

.emp-cta {
    position: relative;
    padding: 40px 70px;
    background: linear-gradient(108.71deg, #F0F3F8 -1.58%, #F8F0F4 100%);
}
.emp-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/web3-img/web-pattern.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
.business-benefits-faq button.accordion-button::after {
    background: none !important;
}
.business-benefits-faq .accordion-header {
    border: none !important;
}
.business-benefits-faq .accordion-header button.accordion-button, .business-benefits-faq .accordion-header button.accordion-button:focus {
    padding: 0px !important;
    gap: 20px !important;
    font-size: 22px !important;
    z-index: 3;
    border-color: transparent !important;
    outline: 0;
    box-shadow: none !important;
    background: none !important;
    color: #000;
}
.business-benefits-faq .accordion-body {
    padding: 0px !important;
    padding-top: 15px !important;
}

.benefits-faq-item {
    border: none !important;
    border-top: 1px solid #000 !important;
    padding-block: 30px;
    border-radius: 0px !important;
}
.Explore-bg {
    background: radial-gradient(34.9% 98.31% at 75.47% 50.09%, #4B1A4C 0%, #0A090E 100%);
}
.essential-dark-card .white-border {
    padding: 7px;
    height: 40px;
    width: 40px;
    border-width: 2px;
}
.engage-card {
    padding: 20px;
    height: 100%;
    border: 1px solid var(--black-color);
}

.engage-card .circle-icon {
    padding: 7px;
    height: 40px;
    width: 40px;
    border-width: 2px;
}

.engage-card .circle-icon svg {
    rotate: -45deg;
    transition: all .3s ease;
}

.engage-card:hover .circle-icon svg {
    rotate: 0deg;
}
.essential-dark-card {
    background: url("../images/blockchain-game-images/essential-bg.png"), #0A090E;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 400ms;
    padding: 20px;
    height: 100%;
}
.circle-icon.dark {
    border-color: #000;
}
.white-border {
    border-color: #fff !important;
}
.tab-bg-center {
    background: url("../images/blockchain-game-images/tab-logo-bg.png"), #0A090E;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    padding: 32px 40px;
    min-height: 300px;
}
.tech-stack-tab li.nav-item .nav-link.active, .tech-stack-tab li.nav-item .nav-link:hover {
    color: #fff !important;
    background-color: #DE2B33;
    border-color: #de2b33;
}
.tech-stack-tab li.nav-item .nav-link {
    border-radius: 100px;
    color: #000000 !important;
    border: 1px solid #000;
    font-size: 15px;
}
.tech-stack-tab {
    gap: 30px;
    border: none;
    justify-content: center;
}
.tab-bg-center .tab-pane img {
    padding: 15px 0px;
}
.border-bottom {
    border-bottom: 1px solid #000;
}
.customers-about {
    background: url("../images/blockchain-game-images/customer-bg.png"), #0A090E;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.customer-card {
    background: #14131C;
    border: 1px solid #3C374E;
    padding-inline: 28px;
    height: 100%;
}
.customer-desp {
    margin-top: 40px;
    padding-bottom: 40px;
}
.customer-img-block img {              
    display: block;
    border: 2px solid #3C374E;
    object-fit: cover;
    border-radius: 200px;
    
}
.customer-profile-block {
    gap: 10px;
    margin-top: -33px;
    display: block !important;
    grid-template-columns: 0.5fr 1fr;   
}
.customer-text-block h4 {
    background: #DE2B33;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 12px;
    min-height: 62px;
    display: flex;
    align-items: center;

}
.customer-row {
    margin-top: 75px;
}
.what-card {
    border: 1px solid #9999B5;
    transition: 400ms;
    cursor: pointer;
}

.what-card:hover {
    background: linear-gradient(180deg, #F1F3F8 0%, #F8F1F5 100%);
}

.what-card:hover a.circle-icon.dark {
    background: #DE2B33;
}

.what-card .circle-icon.dark {
    transition: 400ms;
}
.what-card-inner {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
}
.join-bg {
    background-image: url("../images/blockchain-game-images/join-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.faq-blocks {
    border-top: 1px solid var(--black-color);
}

.faq-blocks .accordion-item {
    margin-bottom: 0 !important;
    border-bottom: 1px solid var(--black-color) !important;
}

.faq-blocks .accordion-body {
    padding: 0 300px 30px 0;
}

.faq-blocks .accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

.faq-blocks .accordion-flush .accordion-item:last-child .accordion-header,
.faq-blocks .accordion-flush .accordion-collapse,
.faq-blocks .accordion-flush .accordion-item .accordion-header {
    border: unset !important;
}


.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    padding: 30px 0;
    font-family: 'gilroy-semibold';
    font-size: clamp(1rem, 0.8808rem + 0.5961vw, 1.25rem);
}
.what-card svg {
    rotate: unset !important;
}

.what-card:hover svg {
    rotate: unset !important;
}

.what-card:hover svg path {
    fill: #fff !important;
}
.essential-dark-card .circle-icon svg {
    rotate: -45deg;
    transition: all .3s ease;
}
.essential-dark-card:hover .circle-icon svg {
    rotate: 0deg;
}
.essential-dark-card:hover {
    background: transparent;
    border: 1px solid #000;
}

.essential-dark-card:hover h3 {
    color: #000 !important;
}

.essential-dark-card:hover .white-border {
    border-color: #000 !important;
}

.essential-dark-card:hover  svg path {
    fill: #000 !important;
}

.essential-dark-card:hover p {
    color: #737373 !important;
}
.engage-card:hover {
    background: url("../images/blockchain-game-images/essential-bg.png"), #0A090E;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 400ms;
}

.engage-card:hover h3 {
    color: #fff ;
}

.engage-card:hover .white-border {
    border-color: #fff ;
}

.engage-card:hover  svg path {
    fill: #fff ;
}

.engage-card:hover p {
    color: #fff ;
}

@media (min-width: 1600px){
    .container {
        max-width: 1600px !important;
        width: 100%;
    } 
}

@media (max-width: 767px) {
    .web3-counter {
        padding: 30px 15px 50px;
    }

    .highlight-link {
        gap: 10px !important;
    }

    .circle-icon.lg {
        height: 30px;
        width: 30px;
        padding: 5px;
    }

    .highlight-link::after {
        height: 17px;
    }
    .blockchain-hero {
        padding-top: 50px;
    }

    .web3-cta.Explore-bg {
        padding: 40px 0 0;
    }
    .mobile-margin {
        margin-top: 40px;
    }
    .number-count {
        font-size: 34px;
    }
    .row-mobile-gap {
        gap: 40px !important;
    }
    .customer-profile-block {
        margin-top: 0px;
    }
    
    .customer-card {
        padding: 25px;
    }
    
    .customer-desp {
        margin-top: 25px;
        padding-bottom: 0;
        font-size: 15px;
    }
    .customer-row {
        margin-top: 20px;
    }

    .customer-text-block h4 {
        padding: 10px 15px;
        font-size: 14px;
        margin: 0 0 20px;
        min-height: 46px;
    }

    .count-grid {
        gap: 20px !important;
    }

    .counter-wrap .counter-icon {
        height: 40px;
        min-width: 40px;
        width: 40px;
        padding: 10px;
    }

    .business-benefits {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 575px) {
    .emp-cta {
        padding: 30px 15px;
    }

    .innov-cta {
        padding: 30px 15px;
    }

    .faq-blocks .accordion-body {
        padding: 0 0 25px 0;
    }
    .brand-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}