/* home page css */
.main-new-section {
    .outer-div-home {
        border-radius: 0px;
        background-color: #333333 !important;

    }

    .outer-banner-sec {
        padding: 40px 0;
        background-color: #000;
    }

    .outer-banner-sec p {
        color: #989898;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin: 0;
    }

    .outer-banner-sec h2 {
        color: #fff;
        font-size: 53px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 60px;
        margin-top: 20px;
        font-family: "Prosto One", sans-serif;
    }

    .outer-banner-sec ul {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 15px;
    }

    .outer-banner-sec ul li {
        list-style: none;
        border-radius: 16px;
        border: 1px solid #000;
        background: #272727;
        padding: 24px 24px 40px;
        width: calc(50% - 30px);
        min-height: 175px;
        position: relative;
    }

    .outer-banner-sec ul li h4 {
        color: #fff;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .outer-banner-sec ul li p {
        color: #fff;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .outer-banner-sec ul li .redirection-link {
        text-align: right;
        margin: 0;
    }

    .outer-banner-sec ul li a {
        display: inline-block;
        position: absolute;
        right: 20px;
        bottom: 20px;
    }

    .outer-banner-sec ul li a img {
        height: 32px;
    }

    .outer-box-banner-right .right-img-box {
        position: relative;
    }

    .outer-box-banner-right .right-img-box img.banner-img {
        width: 100%;
    }

    .outer-box-banner-right .right-img-box .social-icon {
        position: absolute;
        top: 60px;
        right: 0px;
    }

    .outer-box-banner-right .right-img-box .social-icon a {
        display: block;
        margin: 25px 0;
    }

    .outer-box-banner-right .right-img-box .social-icon a img {
        height: 28px;
        max-width: 28px;
        object-fit: contain;
    }

    .outer-box-banner-right p {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        max-width: 320px;
        margin-left: auto;
        margin-right: 30px;
    }

    .border-btn {
        background: #f4e4f2;
        border-radius: 16px;
        padding: 8px 20px;
        font-size: 16px;
        line-height: 26px;
        text-decoration: none;
        color: #F0B90B !important;
        font-weight: 600;
        border: 1px solid #F0B90B !important;
        text-align: center;
        box-shadow: none !important;
        outline: none !important;
    }

    .border-btn img {
        height: 28px;
    }

    .menu-strip-home {
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 1);
        background: #333333;
        box-shadow: 0px 0px 20.6px 0px rgba(0, 0, 0, 0.13);
        backdrop-filter: blur(18.649999618530273px);
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 10px 0;
    }

    .menu-strip-home .logo {
        height: 50px;
    }

    .menu-strip-home .border-btn {
        margin-left: 20px;
    }

    .about-slup-sec {
        padding: 60px 0;
        background-color: #000;
    }

    .common-heading h2 {
        color: #fff;
        font-size: 53px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        font-family: "Prosto One", sans-serif;
    }

    .common-heading h5 {
        color: #fff;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .about-slup-sec .about-box {
        padding: 40px 46px;
        border-radius: 28px;
        background: #272727;
    }

    .about-slup-sec .about-box img {
        height: 140px;
        margin-bottom: 40px;
    }

    .about-slup-sec .about-box p {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 40px;
    }

    .about-slup-sec .about-box.pink-bg {
        border-radius: 28px;
        background: var(--Main-Gradient, linear-gradient(135deg, #F0B90B 0%, #b78d09 100%));
    }

    .about-slup-sec .about-box.pink-bg p {
        color: #fff;
    }

    .download-box {
        margin-top: 80px;

    }

    .download-box p {
        color: #fff;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        max-width: 300px;
    }

    .download-box a {
        display: inline-block;
        margin-right: 25px;
    }

    .download-box a img {
        height: 45px;
    }

    .mobile-img-box {
        position: relative;
    }

    .mobile-img-box .mobile-img {
        max-width: 550px;
    }

    .mobile-img-box .circular-img-outer {
        position: absolute;
        left: 250px;
        top: -30px;
        height: 90px;
        width: 90px;

    }

    .mobile-img-box .circular-img-outer .arrow-img {
        position: absolute;
        height: 55%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .mobile-img-box .circular-img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        animation: animName 5s linear infinite;
    }

    @keyframes animName {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .outer-download {
        position: relative;
    }

    .outer-box-info-download {
        position: absolute;
        right: 0;
        top: 0;
        max-width: 280px;
    }

    .outer-box-info-download h3 {
        background: var(--Main-Gradient, linear-gradient(135deg, #F0B90B 0%, #b78d09 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 54px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .outer-box-info-download p {
        color: #fff;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .outer-box-info-download h6 {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        /* 160% */
        margin-top: 60px;
    }

    .download-add-sec {
        padding: 70px 0;
        background-color: #333333;
    }

    .why-choose-sec {
        padding: 70px 0;
        background-color: #000;
    }

    .why-choose-heading {
        background-image: url(../images/home/layer.html);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
        max-width: 1000px;
        margin: 0 auto 60px;
        padding: 100px 60px 30px;
    }

    .why-choose-heading h2 {
        font-family: "Prosto One", sans-serif;
        color: #fff;
        font-size: 53px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .why-choose-heading p {
        text-align: center;
        color: #FFF;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .outer-why-choose {
        border-radius: 16px;
        border: 1px solid #383838;
        background: #090909;
        overflow: hidden;
    }

    .why-choose-box {
        border-radius: 0;
        border: 1px solid #383838;
        background: #090909;
        padding: 40px;
        color: #fff;
        min-height: 480px;
    }

    .why-choose-box img {
        height: 50px;
        margin-bottom: 30px;
    }

    .why-choose-box h4 {
        /* color: var(--primary, #F0B90B); */
        background: var(--btc-protocol, linear-gradient(90deg, #FFD630 0%, #FF7E38 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .why-choose-box h6 {
        color: #B8B8B8;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .why-choose-box p {
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .border-btn {
        border-radius: 16px;
        border: 1.5px solid #B8B8B8;
        background: #000;
        padding: 7px 20px;
        color: #F0B90B;
        font-weight: 600;
        text-decoration: none !important;
        line-height: 30px;
        display: inline-block;
    }
}


@media (min-width: 1400px) {
    .main-new-section {
        .outer-banner-sec h2 {
            font-size: 50px;
            line-height: 58px;
            margin-bottom: 20px;
            margin-top: 10px;
            font-family: "Prosto One", sans-serif;
        }

        .outer-box-banner-right .right-img-box img.banner-img {
            width: 100%;
            max-height: 440px;
            object-fit: contain;
        }

        .outer-box-banner-right p {
            font-size: 16px;
            line-height: 24px;
            max-width: 325px;
            margin-right: 20px;
        }

      
    }
}

@media (max-width:1400px) {
    .main-new-section {
        .why-choose-box {
            padding: 30px;
        }
        .outer-box-banner-right p {
            max-width: 62%;
            line-height: 26px;
        }

        .common-heading h2 {
            font-size: 40px;
            line-height: normal;
        }
        .why-choose-heading h2, .outer-banner-sec h2{
            font-size: 40px;
            line-height: normal;
        }
    }
}

@media (max-width:1300px) {
    .main-new-section {
        .why-choose-box {
            padding: 20px;
            min-height: 380px;
        }
        .why-choose-box img {
            height: 36px;
            margin-bottom: 20px;
        }
        .why-choose-box h4 {
            font-size: 20px;
        }
        .why-choose-box h6 {
            font-size: 12px;
        }
        .why-choose-box p {
            font-size: 12px;
        }
        .common-heading h2 {
            font-size: 32px;
            line-height: 50px;
        }
        .common-heading h5 {
            font-size: 16px;
        }
        .common-heading h6 {
            font-size: 16px;
        }
        .outer-banner-sec p {
            font-size: 16px;
        }

        .outer-banner-sec h2 {
            font-size: 32px;
            line-height: normal;
            margin-bottom: 30px;
            margin-top: 15px;
        }

        .outer-banner-sec ul li {
            padding: 15px 15px 35px;
            width: calc(50% - 15px);
            min-height: 165px;
        }

        .outer-banner-sec ul li a {
            right: 10px;
            bottom: 10px;
        }
        .about-slup-sec .about-box {
            padding: 20px 15px;
            border-radius: 15px !important;
        }

        .about-slup-sec .about-box img {
            height: 70px;
            margin-bottom: 15px;
        }

        .about-slup-sec .about-box p {
            font-size: 14px;
            margin-bottom: 0;
            min-height: 175px;
        }
        .why-choose-heading {
            margin: 0px auto 40px;
            padding: 60px 40px 20px;
        }
        .why-choose-heading h2 {
            font-size: 32px;
        }
        .why-choose-heading p {
            font-size: 17px;
        }
    }
}

@media (max-width: 992px) {
    .main-new-section {
        .why-choose-box {
            padding: 15px;
            min-height: 450px;
        }
        .outer-box-banner-right p {
            max-width: 100%;
        }
        .common-heading h2, .why-choose-heading h2, .outer-banner-sec h2 {
            font-size: 26px;
            line-height: normal;
        }
        .why-choose-heading p{
            font-size: 16px;
        }
    }
}

@media (max-width:768px) {
    .main-new-section {
        .why-choose-box img {
            height: 30px;
            margin-bottom: 15px;
        }
        .why-choose-box h4 {
            font-size: 16px;
        }
        .why-choose-box h6 {
            font-size: 10px;
            margin: 12px 0;
        }
        .why-choose-box {
            padding: 12px;
            min-height: auto;
        }
        .why-choose-heading {
            margin: 0px auto 20px;
            background-image: none !important;
            border: none;
            padding: 15px;
        }
        .why-choose-heading h2 {
            font-size: 24px;
        }
        .why-choose-heading p {
            font-size: 13px;
        }
        .about-slup-sec .about-box {
            margin-bottom: 1rem;
        }
        .outer-why-choose {
            border-radius: 0;
            background: none !important;
            border: none;
        }
        .outer-banner-sec p {
            font-size: 14px;
        }
        .border-btn {
            border-radius: 8px;
            padding: 4px 10px;
            line-height: 20px;
            font-size: 12px;
        }
        .common-heading h2 {
            font-size: 24px;
            line-height: 34px;
            margin-bottom: 20px;
        }

        .outer-banner-sec h2 {
            font-size: 22px;
            line-height: normal;
            margin-bottom: 20px;
            margin-top: 15px;
        }

        .outer-banner-sec ul li h4 {
            font-size: 14px;
        }

        .outer-banner-sec ul li p {
            font-size: 9px;
        }

        .outer-banner-sec ul li a img {
            height: 18px;
        }

        .outer-banner-sec ul li {
            padding: 15px 15px 10px;
            width: calc(50% - 10px);
            min-height: 115px;
            border-radius: 10px;
            padding: 15px;
        }

        .outer-banner-sec ul {
            gap: 10px;
        }

        /* .outer-box-banner-right .right-img-box img.banner-img {
            display: none;
        } */

        .outer-box-banner-right p {
            max-width: 100%;
            margin: 0;
            font-size: 12px;
            line-height: 20px;
        }

        /* .outer-box-banner-right .right-img-box .social-icon {
            position: static;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        .outer-box-banner-right .right-img-box .social-icon a img {
            height: 16px;
        }

        .outer-box-banner-right .right-img-box .social-icon a {
            margin: 10px 8px;
        }

        .outer-banner-sec {
            padding: 15px 0;
        }

        .about-slup-sec {
            padding: 20px 0;
        }

        .common-heading h5 {
            font-size: 14px;
        }

        .about-slup-sec .about-box img {
            height: 65px;
            margin-bottom: 20px;
        }

        .about-slup-sec .about-box p {
            font-size: 12px;
            margin-bottom: 20px;
            min-height: auto;
        }

        .why-choose-sec {
            padding: 30px 0;
        }
        .common-heading h2 {
            font-size: 22px;
            line-height: 32px;
            margin-bottom: 10px;
        }
        .common-heading h6 {
            font-size: 12px;
        }
        .common-heading h5 {
            font-size: 13px;
        }
    }
}


/* ibvm new home css 21-10-2024 */

.banner-icon-box{
text-align: center;
background-color: #ddd;
}
.banner-icon-box img{
height: 50px;
}
.border-yellow{
    border: 1px solid #fff;
    border-radius: 0;
    padding: 15px;
}
.marlin-banner-sec.new-banner{
    position: relative;
}
.fire-elements {
    position: absolute;
    right: 6%;
    bottom: 0;
    mix-blend-mode: lighten;
    max-width: 35%;
}

@media (max-width:992px){
    .fire-elements{
        /* display: none; */
    }
    .fire-elements{
        right: 0;
        max-width: 36%;
    }
}
@media (max-width:768px){
    .marlin-asset-sec.margin-finance.process {
        padding-top: 30px;
    }
    .order-2{
        order: initial !important;
    }
    .marlin-asset-sec.margin-finance.home-new-sec{
        text-align: center;
    }
    .marlin-asset-sec.margin-finance.home-new-sec h2 {
        margin-top: 30px;
        text-align: center;
    }
    .marlin-asset-sec.margin-finance.home-new-sec p{
        text-align: center;
    }
    .marlin-asset-sec.margin-finance.home-new-sec .d-flex{
        justify-content: center;
    }
}