.custom-heading-container {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
}

/***************FAQ********************************/

.accordion {
    --bs-accordion-bg: transparent;
}

.accordion-button {
    color: #2F2B2B !important;
    font-weight: 600;
}

.ques-ans .accordion-header {
    background: transparent;
    padding: 0px;
}

.ques-ans .accordion-item:first-child {
    border-top: 0px !important;
}

.ques-ans .accordion-button:focus {
    box-shadow: none;
}

.ques-ans .accordion-header i {
    color: #8C8C8C;
    font-size: 16px;
}

.ques-ans .accordion-body {
    padding: 0;
    padding-bottom: 35px;
}

.ques-ans .accordion-body:not(.collapsed) {
    padding: 0;
    padding-bottom: 35px;
}

.ques-ans .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: black;
}

.ques-ans .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 28px 0;
    box-shadow: none;
}

.ques-ans .icon {
    transition: transform 0.3s ease;
}

.ques-ans .accordion-button:not(.collapsed) .icon {
    transform: rotate(180deg);
}

.ques-ans .accordion-button::after {
    display: none;
}

.ques-ans .accordion-item:first-child {
    border: 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.ques-ans .accordion-item {
    border: 0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
    border-radius: 0 !important;
}
.accordion-body ol,.accordion-body ul {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
}

.accordion-body ol li,.accordion-body ul li {
    list-style: disc;
}
/**************END FAQ*****************************/



/****************ALL CSS*******************************/
ul.list-style {
    display: flex;
    gap: 18px;
    flex-direction: column;
}

ul.list-style li {
    position: relative;
    padding-left: 30px;
    font-family: "Urbanist", serif;
}

ul.list-style li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('../techfyte/img/tick.svg');
    background-size: cover;
}

@media only screen and (max-width:991px) {
    ul.list-style li::after {
        top: 0;
    }
}

/**------------**/

.card-content-container {
    border: 1px solid rgba(240, 240, 240, 1);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    position: relative;
}


.cards-3-container .card-content-container {
    transition: 0.3s ease-in-out;
}

.cards-3-container .card-content-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


@media only screen and (max-width:1280px) {
    .card-content-container {
        padding: 15px;
    }
}


/**------------**/
.feature-icon svg {
    display: block;
    border-radius: 6px;
}

.feature-icon {
    background-color: #071E49;
    padding: 10px;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
}

.feature-icon img {
    height: 30px;
    width: auto;
    max-width: 30px;
    object-fit: contain;
    min-width: 30px;
}
.feature-icon.icon-clr img{
filter: invert(1) brightness(1) grayscale(0);
}
.feature-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
}
.feature-card {
    height: 100%;
}

@media (max-width: 576px) {
    .feature-card {
        gap: .5rem;
    }
}

/**------------**/
.service-card {
    background-color: #fff;
    padding: 25px;
    text-align: left;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(240, 240, 240, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 1280px) {
    .service-card {
        padding: 15px;
    }
}

/**------------**/
.custom-secondary-radial * {
    color: var(--white) !important;
}

.custom-secondary-radial p {
    color: var(--white) !important;
    opacity: 0.6 !important;
}

.custom-secondary-radial .card-content-container {
    border-color: #ffffff80;
}

@media only screen and (max-width:1280px) {
    .card-content-container {
        padding: 15px;
    }
}

/**----------------**/

.why-choose .design-services {
    display: flex;
    justify-content: space-between;
}

.why-choose .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-choose .feature,.dir-hover .info {
    padding: 70px 25px;
    position: relative;
}

.why-choose .feature::before {
    content: "";
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0;
    width: 2px;
    background-color: #F0F0F0;
}

.why-choose .feature:nth-child(n+5)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #F0F0F0;
}

.why-choose .feature:nth-child(4n + 1) {
    position: relative;
}

.why-choose .feature:nth-child(4n + 1)::before {
    content: none;
}

.custom-padding-top {
    padding-top: 120px;
}

@media only screen and (max-width: 1680px) {

    .why-choose .feature,.dir-hover .info {
        padding: 60px 20px;
    }
}

@media only screen and (max-width: 1440px) {
    .why-choose .feature img {
        width: 42px;
    }

    .why-choose .feature,.dir-hover .info {
        padding: 48px 15px;
    }
}

@media only screen and (max-width: 1024px) {
    .why-choose .feature img {
        width: 36px;
    }

    .why-choose .feature,.dir-hover .info {
        padding: 40px 20px;
    }

}

@media screen and (max-width: 1200px) {
    .why-choose .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose .feature:nth-child(odd):before {
        display: none;
    }

    .why-choose .feature:nth-child(n+3)::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #F0F0F0;
    }

    .why-choose .feature img {
        width: 40px;
    }
}

@media screen and (max-width: 680px) {
    .why-choose .grid-container {
        grid-template-columns: 1fr;
    }

    .why-choose .feature:before {
        display: none;
    }

    .why-choose .feature:nth-child(n+2)::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #F0F0F0;
    }

    .why-choose .feature,.dir-hover .info {
        padding: 30px 15px;
    }

}

/**------------------**/
   .small_card_inner {
       border: 1px solid #eee;
       box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
       padding: 20px;
       border-radius: 10px;
       text-align: left;
       height: 100%;
   }

   .small_heading {
       font-size: 24px !important;
   }

/**------------------**/
 .content_acc ul li {
     list-style: disc;
 }

 .content_acc ul {
     display: flex;
     flex-direction: column;
     gap: 14px;
     padding-left: 24px;
 }
.techstacknew .sidebar::-webkit-scrollbar {
    width: 17px;
}

.techstacknew .sidebar::-webkit-scrollbar-track {
    background: #1A2F56;
    border-radius: 10px;
}

.techstacknew .sidebar::-webkit-scrollbar-thumb {
    background: #3F81FB;
    border-radius: 10px;
    width: 11px;
    border: 3px solid #1A2F56;
}

.techstacknew .sidebar::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF;
}

.techstacknew {
    width: 100%;
}

.techstacknew .sidebar .nav-item {
    background: rgba(26, 47, 86, 1);
    margin-bottom: 16px;
}

.techstacknew .sidebar .nav-item:hover {
    border: none;
}

.techstacknew .sidebar .nav-item button {
    width: 100%;
    position: relative;
    background: none;
    text-align: left;
    font-size: 28px !important;
    font-weight: 600;
    border: none;
    color: #ffffff;
    padding: 20px 25px;
    font-family: oswald, sans-serif;
}

.techstacknew .sidebar .nav-item button.nav-link.active::after {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-size: contain;
    transition: transform 0.3s ease-in-out;
    content: "➜";
    display: inline-block;
    transform: rotate(-45deg);
    font-size: 33px;
    font-weight: 400;
    color: #3F81FB;
}

.techstacknew .tab-content img {
    max-height: 60px;
}

.techstacknew .tab-content .card p {
    font-size: 16px;
}


@media (min-width: 992px) {
    #myTab {
        border: none;
    }
    
    #myTabContent .accordion-body {
        padding: 0;
    }

    #myTabContent .accordion-item {
        background: transparent;
        border: none;
    }

    #myTab .nav-link {
        text-align: left;
        border: none;
        border-radius: 0;
        transition: 0.3s;
    }

    #myTab .nav-link.active {
        border: 2px solid #3F81FB;
        font-weight: 600;
    }

    #myTabContent {
        flex: 1;
    }

}

@media(max-width: 991px) {
    #myTabContent .content_acc,
    #myTabContent .content_acc p {
        color: #333333 !important;
    }
    #myTabContent button.accordion-button {
        margin-bottom: 0;
        color: #fff !important;
        background: transparent;
        box-shadow: none;
    }

    #myTabContent {
        background: transparent !important;
        --bs-accordion-bg: transparent;
        --bs-accordion-border-color: transparent;
        border: none;
    }

    #myTabContent .accordion-body {
        background: #fff;
        border-radius: 0 0 4px 4px;
    }

    .accordion-button::after {
        filter: invert(1) grayscale(1);
    }

    #myTabContent>.tab-pane {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 20px;
        border-radius: 4px;
        background: rgba(26, 47, 86, 1);
    }

    #myTabContent>.tab-pane:last-child {
        margin-bottom: 0;
    }
}

/**----------------**/
.port-content {
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.51%, #000000 94.43%);
    padding: 80px 60px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    transition: all ease .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.ch_portfolio_wrapper .singel-item-wrapper {
    position: sticky;
    top: calc(var(--top) + var(--offset));
}

.singel-item-wrapper {
    margin-top: 30px;
}

.fix_top .ch_portfolio_wrapper {
    --offset: 200px;
}

.ch_portfolio_wrapper {
    --offset: 80px;
}

.ch_portfolio_wrapper .singel-item-wrapper {
    position: sticky;
    top: calc(var(--top) + var(--offset));
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(1) {
    --top: calc((1 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(2) {
    --top: calc((2 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(3) {
    --top: calc((3 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(4) {
    --top: calc((4 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(5) {
    --top: calc((5 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(6) {
    --top: calc((6 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(7) {
    --top: calc((7 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(8) {
    --top: calc((8 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(9) {
    --top: calc((9 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(10) {
    --top: calc((10 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(11) {
    --top: calc((11 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper:nth-child(12) {
    --top: calc((12 - 1) * 30px)
}

.ch_portfolio_wrapper .singel-item-wrapper.sticked .item-content {
    transform: scale3d(.96, .96, 1);
}

.ch_portfolio_wrapper .singel-item-wrapper .item-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .6s cubic-bezier(.38, .005, .215, 1);
}

.ch_portfolio_wrapper .singel-item-wrapper .port-img {
    padding-top: 40%;
    position: relative;
    z-index: 1;
}

.ch_portfolio_wrapper .singel-item-wrapper .port-img img {
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
    z-index: -1;
}

.ch_portfolio_wrapper .singel-item-wrapper.project-style-5 .project-wrap-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


.ch_portfolio_wrapper .singel-item-wrapper.project-style-5 .project-title {
    margin-bottom: 0;
    margin-right: 20px;
}

@media (max-width: 991.98px) {
    .ch_portfolio_wrapper .singel-item-wrapper .port-content {
        padding: 40px !important;
    }
}

@media (max-width: 575.98px) {

    .ch_portfolio_wrapper .singel-item-wrapper .port-content {
        padding: 20px !important;
    }
}

/**--------------------**/
.stacked-cards .card {
    gap: 20px;
    padding: 40px;
    height: 100%;
    min-height: 200px;
}

.stacked-cards .card img {
    max-width: 180px;
    max-height: 60px;
}
@media(max-width: 991px){
    body .stacked-cards .card {
        padding: 16px;
        min-height: 140px;
    }
    .stacked-cards .card img {
        max-width: 100px;
    }
}

/**------------------------**/
.devops-success-tools .success-tools-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 25px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.devops-success-tools .success-tools-card:hover {
    background-color: #3A6FF8;
    transform: rotate(-3.19deg);
}

.devops-success-tools .success-tools-card:hover h4,
.success-tools-card:hover p {
    color: #fff;
}

.devops-success-tools .success-tools-card h4 {
    color: #000;
}

.devops-success-tools .success-tools-card:hover .white-img {
    filter: brightness(0) invert(1);
}

.devops-success-tools .success-tools-card:hover .icon {
    filter: invert(1) brightness(100);
}


@media screen and (max-width: 1280px) {
    .devops-success-tools .success-tools-card {
        padding: 15px;
    }
}

/**-----------------------**/
.steps-cards.cards-container {
    counter-reset: my-sec-counter;
}

.steps-cards .card-content-container::before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter);
    font-size: 104px;
    position: absolute;
    right: 20px;
    color: rgba(0, 0, 0, 0.1);
    top: 0;
    font-family: "Oswald", serif;
    font-weight: 300;
}

/**---------------**/
@keyframes l13 {
    100% {
        transform: rotate(1turn);
    }
}

.loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.loader {
    display: none;
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #3F81FB 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #3F81FB);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}

.error {
    font-size: 14px;
    color: red;
}

.iti__country {
    font-family: "Urbanist", serif;
    font-size: 16px;
}

/**------------------------------------------------**/

  .nft-stats-container {
      background-color: #1A2F56;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      width: 100%;
      color: white;
  }

  .stat-block {
      margin-bottom: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-block:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
  }

  .stat-number {
      display: block;
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 8px;
      line-height: 48px;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
  }

  .gradient-orange {
      background-image: linear-gradient(to right, #ff8c00, #ffc107);
  }

  .gradient-purple {
      background-image: linear-gradient(to right, #9932cc, #da70d6);
  }

  .gradient-blue {
      background-image: linear-gradient(to right, #1e90ff, #87cefa);
  }

  @media only screen and (max-width:1200px) {
      .stat-number {
          font-size: 30px;
          line-height: 30px;
      }
  }

  @media only screen and (max-width:991px) {
      .nft-stats-container {
          max-width: 100%;
      }
  }

  @media (max-width: 480px) {
      .nft-stats-container {
          padding: 20px;
      }
  }
/**---------------------**/

 .listing-header {
     border-bottom: 1px solid #eeeeee;
 }

 .listing-body ul {
     display: grid;
     gap: 16px;
     grid-template-columns: auto auto;
 }

 .listing-body ul li {
     position: relative;
     padding-left: 34px;
 }

 .listing-body ul li::after {
     content: "";
     position: absolute;
     left: 0;
    background-image: url('../techfyte/img/tick.svg');
     height: 24px;
     width: 24px;
     background-size: 24px;
     top: 2px;
 }
  .single-list .listing-body ul {
      grid-template-columns: auto;
  }

 @media(max-width: 991.98px) {
     .listing-body ul li {
         position: relative;
         padding-left: 30px;
     }

     .listing-body ul li::after {
         height: 20px;
         width: 20px;
         background-size: 20px;
         top: 0;
     }

     .listing-body ul {
         gap: 10px;
     }
 }

 @media(max-width: 767.98px) {
     .listing-body ul {
         grid-template-columns: auto;
     }
 }
 /**------------------**/
    
    .coin_right {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    small {
        font-size: 14px;
    }

    @media screen and (max-width: 767px) {
        .coinbase-section {
            padding: 30px 0px;
        }
    }
/**------------------**/
 .img-bx img{
    max-width: 100%;
    width: 100%;
 }
.right_content {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
/**---------------------------**/
        .slider-container-outer {
            width: 100%;
            height: 480px;
            overflow: hidden;
            position: relative;
            border-radius: 12px;
            margin-bottom: 30px;
        }
    
        .slider-content {
            display: flex;
            flex-direction: column;
            animation: scrollUp 30s linear infinite;
            gap: 25px;
        }
        
        .card-mo {
            margin: 8px auto;
            transition: all 0.2s ease-out;
            background: transparent linear-gradient(184deg, #0d6efd 0%, #0f299f00 58%) 0% 0% no-repeat padding-box;
            padding: 2px 2px 0px 2px;
        }
    
        .card-mo p {
            background: #fafcff;
            font-weight: 400;
            padding: 30px 20px;
            box-sizing: border-box;
            text-align: left;
        }
    
        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
    
            100% {
                transform: translateY(-50%);
            }
        }
    
        @keyframes scrollDown {
            0% {
                transform: translateY(-50%);
            }
    
            100% {
                transform: translateY(0);
            }
        }
        @media(min-width: 767px) {
            .slider-content.reverse {
                animation: scrollDown 30s linear infinite;
            }
        }
        @media(max-width: 767px) {
            .slider-content {
                animation: none;
                gap: 10px;
            }
            .slider-container-outer{
                height: auto;
                margin: 0;
            }
        }
/***********/
.card-content-container:hover .icon,
.card:hover .icon,.feature:hover img,.stacked-cards .card:hover img{
    animation-name: bounce-3;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes  bounce-3{
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}
/*******************/
.footer-menus li::before{
    content: "-";
    color: transparent;
    font-size: 1.13rem;
    font-weight: bold;
    padding-right: 5px;
    line-height: 2.5;
    transition: all .5s ease;
    position: relative;
}
.footer-menus li:hover::before {
    content: "-";
    color: #0d6efd;
}

.footer-menus li:hover {
    padding-left: 10px;
}

.footer-menus li {
    transition: all .5s ease;
    cursor: pointer;
    margin-left: -10px;
    position: relative;
}
/***************/


/***********************************************/