@-webkit-keyframes circle-pulse {
    0% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-box-shadow: 0 0 0 0 rgba(77, 170, 87, .9);
        box-shadow: 0 0 0 0 rgba(77, 170, 87, .9)
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 8px transparent;
        box-shadow: 0 0 0 8px transparent
    }
    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes circle-pulse {
    0% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-box-shadow: 0 0 0 0 rgba(77, 170, 87, .9);
        box-shadow: 0 0 0 0 rgba(77, 170, 87, .9)
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 8px transparent;
        box-shadow: 0 0 0 8px transparent
    }
    to {
        -webkit-transform: scale(.95);
        transform: scale(.95);
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@media (min-width:768px) {
    .container-large,
    .container-sm {
        max-width: 1680px;
        padding-right: 72px;
        padding-left: 72px;
        margin: auto
    }
    .container-sm {
        max-width: 1400px
    }
}

@media (max-width:768px) {
    .container-large,
    .container-sm {
        padding-right: 20px;
        padding-left: 20px;
        margin: auto
    }
    .container-sm {
        max-width: 1400px
    }
}

.img_50 {
    width: 50px;
    height: 50px
}

.truncate_text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.d_flex {
    display: flex;
    gap: 5px
}

.align_items_center {
    align-items: center
}

.justify_content_between {
    justify-content: space-between
}

.fs-12 {
    font-size: 12px !important
}

.fs-14 {
    font-size: 14px !important
}

.fs-16 {
    font-size: 16px !important
}

.fs-18 {
    font-size: 18px !important
}

.anchor_link {
    color: #00a181 !important
}

.anchor_link:hover {
    color: #00e599 !important
}

.m-auto {
    display: flex;
    justify-content: center
}

.btn_black {
    background: #000;
    padding: 7px 24px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 2rem;
    border: 1px solid #000
}

.btn_black:focus,
.btn_black:hover {
    color: #fff
}

.btn_black_outline {
    background: 0 0;
    padding: 7px 24px;
    display: inline-block;
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 2rem;
    border: 1px solid #666
}

.btn_black_outline:hover {
    color: #000
}

.btn_main {
    background-color: #019d91;
    color: #fff
}

.btn_main:hover:not([disabled]) {
    background-color: #00c1a2;
    color: #fff
}

.btn_main:focus,
.btn_main_black:focus {
    color: #fff !important
}

.btn_main_black {
    background-color: #000;
    color: #fff
}

.btn_main_black:hover:not([disabled]) {
    background-color: #222;
    color: #fff
}

.text_purple {
    color: #9c27b0;
    font-weight: 700
}

.text_green {
    color: #0fa789
}

.bg_gray {
    background: #f5f5f5
}

.subtitle_heading {
    font-size: 18px
}

.hero_wrapper_bg {
    background: url(/public/images/banner-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 2rem
}

.hero_wrapper,
.hero_wrapper_bg {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.pagetitle_head {
    font-weight: 800;
    font-size: 3rem;
    line-height: 4rem
}

.pagemain_heading {
    font-size: 50px;
    font-weight: 900;
    line-height: 63px
}

.pagemain_heading_sm {
    font-size: 35px;
    font-weight: 900
}

.pagesub_heading {
    font-size: 1.7rem;
    font-weight: 700
}

.pagesub_heading_lg {
    font-size: 2rem;
    font-weight: 700
}

.pagemain_heading2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 53px
}

.main_heading {
    font-size: 2.9rem;
    letter-spacing: 0;
    color: #0fa789;
    font-weight: 700
}

.sub_heading {
    font-weight: 600;
    font-size: 16px;
    color: #696969
}

.heading-sm {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-bottom: 1.5rem
}

.lead_text {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px
}

.spacer {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.spacer-sm {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.subdesc {
    color: #605f5f
}

.cursor_pointer {
    cursor: pointer
}

.flex_grow_1 {
    flex-grow: 1
}

.mar-bot-4 {
    margin-bottom: 1rem
}

.mb-3rem {
    margin-bottom: 3rem
}

ol.list_bullets,
ul.list_bullets {
    margin-left: 3rem
}

.list_bullets .list_heading {
    font-weight: 600
}

ol.list_style,
ul.list_style {
    margin-left: 3rem;
    list-style: outside
}

.display_between {
    display: flex;
    justify-content: space-between
}

@media (max-width:640px) {
    .display_between {
        display: grid;
        align-items: center
    }
}

.blog_main_pagetitle_heading {
    font-weight: 800;
    font-size: 3rem
}

.blog_title_heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 4rem
}

.blog_subtitle_heading {
    font-weight: 700;
    font-size: 1.7rem
}

.blog_subtitle_heading_sm {
    font-weight: bolder;
    font-size: 1.5rem;
    color: #666
}

.blogcontent p {
    line-height: 30px
}

.blog_header_wrapper {
    margin-bottom: 2rem;
    border-radius: 12px;
    background-color: #35a181;
    color: #fff;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.blog_header_title {
    font-size: 48px;
    line-height: 72px;
    color: #fff;
    font-weight: 900
}

@media (max-width:640px) {
    .blog_header_title {
        font-size: 32px;
        line-height: 41px
    }
    .blog_header_wrapper {
        border-radius: 0
    }
    .blog_breadcrum_wrapper {
        display: none
    }
}

.blog_breadcrum_wrapper {
    display: flex;
    gap: 10px;
    align-items: center
}

.blog_breadcrum {
    width: 225px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.px-2 {
    padding-right: 5px;
    padding-left: 5px
}

.blog_inner_banner {
    max-width: 750px;
    margin: 25px auto
}

.blog_inner_banner img {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    width: 100%
}

.blog_cards {
    position: relative;
    overflow: hidden;
    background: #fcfcfc;
    transition: .4s all;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 1rem;
    border: 1px solid #f4f4f4;
    width: 100%;
    height: 420px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    box-shadow: 2px 2px 10px #f1f1f1
}

.blog_article_wrapper {
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    display: flex
}

.blog_article_content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 177px;
    display: flex
}

.blog_cards_footer {
    justify-content: space-between;
    align-self: stretch;
    display: flex;
    align-items: center
}

.blog_cards_body {
    padding: 1.5rem
}

.blog_article_image {
    background-color: #f8f8f8;
    width: 100%;
    height: 181px;
    position: relative;
    overflow: hidden
}

.resources-inner-shadow {
    border-radius: 20px;
    width: 100%;
    height: 426px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, .5), 0 15px 30px rgba(22, 13, 61, .04)
}

.blog_date {
    font-size: 13px;
    color: #666
}

.label_tag {
    background-color: #00e59938;
    border-radius: 20px;
    align-self: flex-start;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    display: block;
    position: relative
}

.article_heading {
    font-weight: 800;
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 1rem
}

.mega-menu-title {
    font-weight: 700
}

.anchor_link_blog {
    color: #00a181 !important;
    font-size: 13px !important
}

.flag_img {
    width: 25px;
    height: 25px;
    margin-top: 6px;
    border-radius: 15px
}

.f_timeline {
    position: relative;
    padding: 21px 0 10px;
    margin-top: 4px;
    margin-bottom: 30px
}

.f_timeline .f_line {
    position: absolute;
    width: 4px;
    display: block;
    background: currentColor;
    top: 0;
    bottom: 0;
    margin-left: 30px
}

.f_timeline .separator {
    border-top: 1px solid currentColor;
    padding: 5px 5px 5px 40px;
    font-style: italic;
    font-size: .9em;
    margin-left: 30px
}

.f_timeline .f_line::before {
    top: -4px
}

.f_timeline .f_line::after {
    bottom: -4px
}

.f_timeline .f_line::after,
.f_timeline .f_line::before {
    content: "";
    position: absolute;
    left: -4px;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: currentColor
}

.f_timeline .panel {
    position: relative;
    margin: 10px 0 21px 70px;
    clear: both
}

.f_timeline .panel::before {
    position: absolute;
    display: block;
    top: 8px;
    left: -24px;
    content: "";
    width: 0;
    height: 0;
    border: inherit;
    border-width: 12px;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent
}

.f_timeline .panel .panel-heading.icon * {
    font-size: 20px;
    vertical-align: middle;
    line-height: 40px
}

.f_timeline .panel .panel-heading.icon {
    position: absolute;
    left: -59px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    float: left
}

.f_timeline .panel-outline {
    border-color: transparent;
    background: 0 0;
    box-shadow: none
}

.f_timeline .panel-outline .panel-body {
    padding: 10px 0
}

.f_timeline .panel-outline .panel-footer,
.f_timeline .panel-outline .panel-heading:not(.icon) {
    display: none
}

.footer1 {
    padding: 40px 0 20px
}

.title-widget {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 20px;
    color: #4c5863
}

.widget_nav_menu ul {
    list-style: outside none none;
    padding-left: 0
}

.widget_archive ul li {
    background-color: rgba(0, 0, 0, .3);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 3px
}

.title-widget,
.widget_nav_menu ul li {
    position: relative;
    text-transform: capitalize
}

.widget_nav_menu ul li {
    font-size: 14px;
    line-height: 33px;
    width: 95%;
    color: #63727e
}

.nft_market_09xuv li {
    line-height: 25px !important;
    font-size: 14px;
    color: #666
}

.nft_market_09xuv li a:not(.contact_button a) {
    color: #666
}

.nft_market_09xuv li a:hover:not(.contact_button a) {
    color: #2fc493
}

.text-color {
    color: #63727e
}

.title-median {
    color: #636363;
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 15px;
    text-transform: uppercase;
    font-family: "Fjalla One", sans-serif
}

.footerp p {
    font-family: "Gudea", sans-serif
}

.nomargin {
    margin: 0;
    padding: 0
}

.copyright,
.design {
    line-height: 30px;
    min-height: 30px;
    padding: 7px 0
}

.copyright {
    color: #fff
}

.design {
    text-align: right
}

.design,
.design a {
    color: #fff
}

.text-muted_custom {
    color: #00e599
}

.single-cta i {
    color: #07aa74;
    font-size: 30px;
    float: left;
    margin-top: 8px
}

.single-cta {
    margin: 4px 0
}

.cta-text {
    padding-left: 15px;
    display: inline-block
}

.cta-text h4 {
    color: #07aa74;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px
}

.cta-text span {
    color: #4b4a4a;
    font-size: 15px
}

.social_icon {
    margin-top: 20px;
    display: flex;
    justify-content: start;
    gap: 20px
}

.social_icon a,
.social_icon i {
    color: #000
}

.social_icon a:hover i {
    color: #00a181
}

.region {
    margin-top: 20px;
    justify-content: end;
    color: gray
}

.copyryt_col,
.region {
    display: flex;
    gap: 20px
}

.footer_bottombar {
    font-size: 14px;
    color: #666
}

.copyryt_col a:hover {
    color: #2fc493
}

.newfooterdiv {
    display: flex;
    align-items: baseline
}

.copy-right-area {
    margin: 25px 0 35px auto
}

.contact_button {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 7px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 8px auto
}

.contact_button a,
.contact_button a:hover {
    color: #fff
}

.contact_button img {
    width: 25px
}

.dta_xyz {
    display: flex;
    gap: 15px;
    margin-bottom: 15px !important
}

.dta_xyz a {
    font-size: 14px;
    color: #666
}

.dta_xyz a:hover {
    color: #2fc493
}

.footer_cpy_ryt {
    text-align: right
}

@media screen and (max-width:474px) {
    .title-widget {
        text-align: center;
        margin-top: 20px
    }
    .nft_market_09xuv {
        margin: auto;
        text-align: center
    }
    .nft_market_09xuv li {
        display: inline;
        padding: 6px
    }
    .title-widget {
        font-size: 18px
    }
    .copyryt_col,
    .region,
    .social_icon {
        justify-content: center !important
    }
    .footer_cpy_ryt,
    .footer_madewith {
        font-size: 12px !important;
        text-align: center;
        margin: 8px auto !important
    }
}

.yellow-bg {
    background-color: #ff9800
}

.green-bg {
    background-color: #2da27f
}

.red-bg {
    background-color: #e94335
}

.purple-bg {
    background-color: #8a5099
}

.bg-secondry {
    background-color: #171f2c
}

.p-r30 {
    padding-right: 30px
}

.any-query,
.any-query-contact {
    position: relative !important
}

.any-query img,
.any-query-contact img {
    opacity: .4;
    margin-left: 221px
}

.wt-left-part {
    float: right;
    width: 560px
}

.text-white {
    color: #fff !important
}

.font-weight-500 {
    font-weight: 500
}

.text-uppercase {
    text-transform: uppercase
}

.text-primary {
    color: #ff9800
}

.p-tb60 {
    padding-bottom: 60px;
    padding-top: 60px
}

.p-l30 {
    padding-left: 30px
}

.wt-right-part {
    width: 560px;
    padding-bottom: 25px
}

.text-secondry {
    color: #373329
}

.blockchain-container {
    margin-left: 90px;
    margin-right: 90px
}

.blockchain-desc {
    font-size: 14px !important;
    text-align: center;
    line-height: 2 !important
}

.full-sec {
    margin-left: -40px;
    margin-right: -40px
}

.blockchain-responsive-image-list {
    width: 25px;
    height: 25px;
    margin-right: 8px
}

.ico-dev-l-p {
    padding-left: 200px
}

.ico-dev-l-r-p {
    padding-left: 116px
}

.feature .icon {
    color: #f48c06;
    font-size: 2.618em
}

.text-center .longer-underline::after {
    width: 8%;
    left: 46%
}

.ion-ios-lightbulb-outline::before {
    content: ""
}

.underline::after {
    content: "";
    width: 32px;
    height: 1px;
    background: #c2c2c2;
    position: absolute;
    bottom: 0;
    left: 0
}

#how-to-start,
.button-group {
    display: inline-block;
    width: 100%
}

.button-group {
    text-align: center;
    margin-top: 50px
}

.button-group a {
    cursor: pointer;
    padding: 10px 25px;
    color: #fff;
    background-image: linear-gradient(to bottom right, #ff002e, #02015e);
    border-radius: 0
}

.green_bg {
    background-color: #220154
}

.common_spacing {
    padding: 60px 0
}

h3.common_h3 {
    font-size: 25px !important;
    padding-top: 14px
}

.white_color {
    color: #fff
}

.section-title hr {
    background: #aca3a3;
    width: 50px;
    margin: 10px auto 15px;
    height: 1px
}

.benifits-ico .left {
    padding-left: 30px
}

.benifits-ico ul {
    padding-left: 0;
    color: #fff
}

dl,
ol,
ul {
    list-style-position: outside
}

address,
blockquote,
dl,
ol,
p,
pre,
table,
ul {
    margin-bottom: 1.75em
}

.benifits-ico ul li {
    margin: 25px 0;
    font-size: 16px
}

.benifits-ico ul li img {
    width: 35px;
    margin-right: 20px
}

img {
    max-width: 100%;
    vertical-align: middle
}

#how-to-start {
    padding: 60px 0 20px
}

.underline {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 22px
}

.text-center .underline::after,
.text-center.underline::after {
    width: 4%;
    left: 48%
}

.pricing-table {
    padding: 60px 0;
    display: inline-block;
    width: 100%
}

.data {
    margin: 10px 0;
    text-align: center
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto
}

.mb40 {
    margin-bottom: 40px !important
}

.section-title hr,
hr {
    border-top: 1px solid #eee
}

.data table {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc
}

.table-striped>tbody>tr:nth-of-type(2n+1) {
    background-color: #f9f9f9
}

.data table td,
.data table th {
    text-align: center;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding: 25px
}

.theme-color-bg {
    background-image: linear-gradient(to bottom right, #ff002e, #02015e) !important;
    font-weight: 700;
    color: #fff
}

.gray_bg {
    background: #f2f2f2
}

.grid {
    margin-top: 40px
}

.col-md-offset-0 {
    margin-left: 0
}

.feature-box-3 {
    display: inline-block;
    width: 100%;
    border: 1px dashed #a6a6a6;
    border-top: 3px solid #000;
    text-align: center
}

.feature-box-2,
.feature-box-3 {
    padding: 14px;
    position: relative
}

.feature-box-3 .icon {
    background: #f2f2f2;
    padding: 0;
    margin: -50px auto 15px
}

.fa {
    display: inline-block;
    font: 10px/1 FontAwesome;
    font-size: 10px;
    text-rendering: auto;
    font-weight: 800
}

.feature-box-3 .feature-title {
    margin-bottom: 20px
}

h4.common_h4 {
    font-size: 16px !important
}

.feature-box-3 .feature-desc {
    color: #555
}

.feature-box-3 .icon {
    color: #f48c06;
    border-radius: 50%;
    font-size: 40px;
    line-height: 70px;
    display: block;
    width: 70px;
    height: 70px
}

.mb0 {
    margin-bottom: 0 !important
}

.technicalbox {
    background: #f3f3f3;
    border-radius: 3px;
    box-shadow: 0 5px 50px 0 rgba(0, 0, 0, .04);
    margin-bottom: 30px;
    padding: 60px 30px;
    position: relative
}

.technical-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: #220154;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.technicalbox hr {
    width: 50px;
    height: 1px;
    margin: 10px auto;
    background: #220154
}

.gray_bg .technicalbox.text-center {
    background: #fff !important
}

@media screen and (max-width:600px) {
    .full-sec {
        margin-left: -54px;
        margin-right: -54px;
        margin-bottom: 10px
    }
    .blockchain-container {
        margin-left: 0;
        margin-right: 0
    }
    .blockchain-desc {
        text-align: center !important
    }
    .ico-dev-l-p {
        padding-left: 26px
    }
    .ico-dev-l-r-p {
        padding-left: 12px
    }
    * li,
    p {
        font-size: 14px
    }
    .wt-left-part,
    .wt-right-part {
        width: 100% !important
    }
    .wt-left-part {
        clear: both;
        float: none;
        padding-left: 30px
    }
    .any-query,
    .any-query-contact,
    .technicalbox {
        position: relative
    }
    .technicalbox {
        border-radius: 3px;
        box-shadow: 0 5px 50px 0 rgba(0, 0, 0, .04);
        margin-bottom: 0;
        padding: 15px 10px
    }
    .col-xs-6 {
        padding-left: 4px;
        padding-right: 4px
    }
    .technical-icon {
        width: 50px;
        height: 50px;
        line-height: -1px;
        border-radius: 50%;
        background: #000;
        font-size: 24px;
        color: orange;
        margin: 0 auto 15px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.case_study_wrapper .col-12.col-md-12.col-lg-12.text-center.mb-4>img.img-fluid.mb-3 {
    width: 100px;
    height: 100px
}

.custom-button {
    background-color: #222;
    border-radius: 4px;
    border-style: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    max-width: none;
    min-height: 44px;
    min-width: 10px;
    outline: 0;
    overflow: hidden;
    padding: 9px 20px 8px;
    position: relative;
    text-align: center;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation
}

.custom-button:focus,
.custom-button:hover {
    opacity: .75
}

@media (max-width:640px) {
    .hide_on_mobile {
        display: none
    }
}

.stats_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    color: #6e6d7a;
    line-height: 20px;
    gap: 2rem
}

.heading_wrapper {
    max-width: 600px
}

.heading_card {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 1px 25px #0a0a0a
}

.nadcab_logo_wrapper {
    position: relative;
    max-width: 84px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 50%
}

.banner_image_wrapper {
    display: flex;
    justify-content: flex-end
}

.nadcab_badge {
    position: absolute;
    z-index: 10;
    top: 40px;
    left: -64px;
    bottom: -50px;
    width: 130px;
    height: auto;
    color: #6e6d7a;
    pointer-events: none
}

.banner_image {
    position: relative;
    width: 100%;
    max-width: 578px;
    background: #e7e7e930;
    background-position: center;
    background-size: cover;
    border-radius: 36px
}

.nadcab_text {
    font-size: 28px;
    font-weight: 700;
    line-height: 12px
}

.buttons_wrapper {
    margin: 1rem 0
}

.project_grid {
    display: grid;
    grid-gap: 36px;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    list-style: none
}

.tabs_wrapper {
    margin: 25px auto;
    overflow: hidden;
    position: relative
}

.tabs_wrapper .custom_tabs {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth
}

.tabs_wrapper .custom_tabs>li {
    flex: 0 0 auto;
    margin-right: 20px
}

.tabs_wrapper .custom_tabs>li>a {
    line-height: 1.42857143;
    border: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
    padding: 10px;
    text-align: center;
    display: block;
    white-space: nowrap
}

.tabs_wrapper .custom_tabs>li>a.active {
    background: #f6f6f6;
    border-radius: 3rem
}

.tabs_wrapper .custom_tabs>li>a:hover {
    color: #a5a5a5
}

.nav-scroll-buttons {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.nav-scroll-buttons button {
    background-color: #fff;
    border: 0;
    cursor: pointer;
    font-size: 24px;
    padding: 10px
}

.nav-scroll-buttons .prev {
    left: 0
}

.nav-scroll-buttons .next {
    right: 0
}

@media (max-width:768px) {
    .nav-scroll-buttons {
        display: block
    }
}

.outer_card {
    background: #f5f5f5;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out
}

.card_imgs img {
    border-radius: .5rem
}

.overlay_wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px
}

.outer_card:hover .overlay_wrapper {
    visibility: visible;
    opacity: 1
}

.desc-text {
    color: #000 !important
}

.icon_btn,
a.icon_btn {
    width: 30px;
    height: 30px;
    transition: .15s cubic-bezier(.32, 0, .59, .03);
    transition-property: color, background-color, border, border-radius;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 24px #939393
}

@media (max-width:640px) {
    .Preview_Image {
        margin-top: 1rem
    }
    .banner_image_wrapper {
        margin-top: 5rem
    }
    .nadcab_badge {
        top: 87%;
        left: 52%;
        bottom: -50px
    }
}

.project_img {
    height: 768px;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 1rem;
    overflow: hidden
}

.freshwork_banner_img {
    width: 1260px;
    height: 768px
}

.page-content {
    min-height: 80vh;
    padding-bottom: 6rem
}

.nadcab_small_logo_wrapper {
    position: relative;
    max-width: 50px;
    overflow: hidden;
    border-radius: 50%
}

.available_text {
    color: #4daa57
}

.available_circle {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #4daa57
}

.available_circle:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: circle-pulse 2s infinite;
    animation: circle-pulse 2s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0#4daa57;
    box-shadow: 0 0 0 0#4daa57
}

.mb_0 {
    margin-bottom: 0 !important
}

@media (max-width:480px) {
    .content-cstt {
        grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr)) !important
    }
}

.content-cstt {
    display: grid;
    grid-gap: 2.4rem;
    grid-template-columns: 18rem repeat(auto-fill, minmax(28rem, 1fr));
    margin-bottom: 3rem
}

.card_block {
    border-radius: 6px;
    background: #fff;
    color: #fff;
    padding: 2.4rem 2.8rem 3.2rem;
    box-shadow: 0 1px 1px 1px rgba(10, 16, 34, .08);
    transition: transform .2s ease, box-shadow .2s ease;
    transition: transform .2s ease, box-shadow .2s ease, -webkit-transform .2s ease, -webkit-box-shadow .2s ease
}

.cs_purple_cards {
    background: linear-gradient(90deg, #6576e7 0, #8752a3 100%)
}

.cs_blue_cards {
    background-image: linear-gradient(-180deg, #00e599, #04778a)
}

.cs_cards {
    background: #fcfcfc;
    border-radius: 1rem;
    border: 1px solid #f4f4f4;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    transition: transform .2s ease, box-shadow .2s ease, -webkit-transform .2s ease, -webkit-box-shadow .2s ease;
    overflow: hidden
}

.card_block:hover,
.cs_cards:hover {
    -webkit-box-shadow: 0 16px 32px 0 rgba(10, 16, 34, .2), 0 0 0 transparent;
    box-shadow: 0 16px 32px 0 rgba(10, 16, 34, .2), 0 0 0 transparent;
    -webkit-transform: translateY(-5px) translateZ(0);
    transform: translateY(-5px) translateZ(0)
}

.card_block .heading {
    color: #fff;
    line-height: 1.4;
    margin: 2rem 0;
    font-size: 2.4rem
}

.cs_cards_image {
    background-color: #f8f8f8;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 5rem;
    line-height: 2.5rem;
    color: #4ecd9c
}

.cs_cards_body {
    padding: 1.5rem
}

.cs_cards_body .header_text {
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-bottom: 1rem
}

.cs_button {
    background: #fff;
    display: inline-block;
    padding: .8rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    opacity: 1;
    cursor: pointer;
    transition: background .2s ease;
    color: #000
}

.input_group {
    display: flex;
    gap: 5px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ccc !important
}

.select2-container--default .select2-results__option {
    display: flex;
    align-items: center
}

.select2-container--default .select2-results__option .flag-icon {
    margin-right: 8px;
    width: 20px;
    height: 15px
}

.quick_contact_wrapper {
    border-top: 1px solid #f4f4f4;
    padding: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: space-between
}

@media (max-width:600px) {
    .freshwork_banner_img {
        height: 80% !important;
        border-radius: .5rem;
        max-width: 100%;
        vertical-align: middle
    }
    .project_img {
        height: 340px;
        margin-bottom: 0
    }
    .blog_article_image {
        height: 60%
    }
}