



/* ==========================================
   NUCLEOCODERS HERO SECTION
   PART 1
========================================== */

:root {

    --primary: #d82b57;
    --secondary: #6b1f6b;
    --accent: #a238c7;

    --bg-dark: #070b16;
    --card-bg: rgba(255, 255, 255, 0.05);

    --white: #ffffff;
    --text-light: #b9c0d4;

    --border: rgba(255, 255, 255, 0.08);

    --gradient:
        linear-gradient(
            135deg,
            #d82b57 0%,
            #a238c7 50%,
            #6b1f6b 100%
        );

}

/* ==========================================
   RESET
========================================== */


/* ==========================================
   SELECTION
========================================== */

::selection{

    background:var(--primary);
    color:#fff;

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0a0f1d;
}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        180deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;
}

/* ==========================================
   CONTAINER
========================================== */

.hero-section .container{

    position:relative;
    z-index:5;

}

/* ==========================================
   ANIMATED GRID BACKGROUND
========================================== */

.bg-grid{

    position: absolute;
    inset:0;

    background-image:

        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size:60px 60px;

    z-index: 1;

    animation:gridMove 20s linear infinite;

}

@keyframes gridMove{

    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(60px);
    }

}

/* ==========================================
   BACKGROUND GLOW
========================================== */

.bg-glow{

    position: absolute;
    border-radius:50%;
    filter:blur(130px);

    z-index:-2;

}

.glow-one{
    width:500px;
    height:500px;
    background:rgba(216,43,87,.22);
    top:-150px;
    left:-120px;
    z-index: 1;
}

.glow-two{
    width:500px;
    height:500px;
    background:rgba(107,31,107,.22);
    right:-150px;
    bottom:-100px;
    z-index: 1;
}

/* ==========================================
   MOUSE GLOW
========================================== */

.mouse-glow{

    width:300px;
    height:300px;

    position:fixed;

    border-radius:50%;

    pointer-events:none;

    background:
        radial-gradient(
            circle,
            rgba(216,43,87,.18),
            transparent 70%
        );

    transform:
        translate(-50%,-50%);

    z-index:-1;

}

/* ==========================================
   NAVBAR
========================================== */

.custom-navbar{

    padding:20px 0;

    transition:.4s ease;

}

.custom-navbar.scrolled{

    background:
        rgba(10,14,28,.88);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid var(--border);

    padding:14px 0;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    max-height:55px;
    width:auto;

}

/* ==========================================
   NAVIGATION
========================================== */

header.desktop .navbar-nav{

    gap:18px;

}

header.desktop .nav-link{

    font-size:15px;
    font-weight:500;

    position:relative;

    transition:.3s;

}

header.desktop .nav-link:hover{

    color:var(--primary) !important;

}

header.desktop .nav-link::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-3px;

    width:0%;
    height:2px;

    background:var(--gradient);

    transition:.4s;

}

header.desktop .nav-link:hover::after{

    width:100%;

}



/* ==========================================
   TOGGLER
========================================== */

.navbar-toggler{

    border:none;
    box-shadow:none !important;

    color:#fff;

}

/* ==========================================
   BUTTONS
========================================== */

.btn-brand{

    background:var(--gradient);

    border:none;

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    position:relative;

    overflow:hidden;
    font-size: 14px;
    align-items: center;

}

.btn-brand:hover{

    color:#fff;

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 40px rgba(216,43,87,.35);

}

.btn-outline-custom{

    border:
        1px solid rgba(255,255,255,.15);

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
    font-size: 14px;

}

.btn-outline-custom:hover{

    background:
        rgba(255,255,255,.08);

    color:#fff;

    transform:
        translateY(-3px);

}

/* ==========================================
   HERO SECTION
========================================== */

.hero-section{
    display:flex;
    align-items:center;
    padding-top:130px;
    padding-bottom:80px;
    background:var(--bg-dark);
    color:var(--white);
    overflow:hidden;
    position:relative;

}


.hero-section hr{
    margin-top: 30px;
}

/* ==========================================
   HERO BADGE
========================================== */

.hero-section .hero-badge{

    display:inline-flex;

    align-items:center;
    gap:10px;

    padding:12px 20px;

    border-radius:50px;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:
        blur(12px);

    color:#fff;

    font-size:14px;
    font-weight:500;

    margin-bottom:25px;

}

.hero-section .hero-badge i{

    color: #48c7fc;
    font-size: 22px;

}


/* ==========================================
   HERO TITLE
========================================== */

.hero-section .hero-title{

    font-size: 43px;
    line-height:1.6;
    font-weight:600;
    color:var(--white);
    margin-bottom: 10px;
    letter-spacing: 0px;
    -webkit-text-fill-color: #fff;
}

.hero-section .gradient-text{
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    position:relative;

}

.hero-section .gradient-text::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-3px;

    width:100%;
    height:8px;

    background:var(--gradient);

    border-radius:30px;

    opacity:.35;

}

/* ==========================================
   DESCRIPTION
========================================== */

.hero-section .hero-description{

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

    max-width:580px;

    margin-bottom:0px;

}

/* ==========================================
   BUTTON WRAPPER
========================================== */

.hero-section .hero-buttons{

    display:flex;

    gap:18px;

    align-items:center;

    flex-wrap:wrap;

}

/* ==========================================
   HERO STATS
========================================== */

.hero-section .hero-stats{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}

.hero-section .stat-box{

    min-width:150px;

    padding:24px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.hero-section .stat-box:hover{

    transform:translateY(-10px);

    border-color:rgba(216,43,87,.35);

    box-shadow:

    0 25px 50px rgba(0,0,0,.30);

}

.hero-section .stat-box h2{

    font-size:38px;

    font-weight:700;

    margin-bottom:8px;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-section .stat-box span{

    color:var(--text-light);

    font-size:14px;

}

/* ==========================================
   RIGHT SIDE
========================================== */

.hero-section .hero-image-wrapper{

    position:relative;

    height:720px;

    display:flex;

    justify-content:center;

    align-items:center;

}
.hero-section .hero-image-wrapper video{
    height: 100%;
}

/* ==========================================
   BACKGROUND CIRCLE
========================================== */

.hero-section .hero-circle{

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:

    radial-gradient(

    circle,

    rgba(216,43,87,.30),

    rgba(107,31,107,.18),

    transparent

    );

    animation:pulseCircle 5s infinite;

    filter:blur(5px);

}

@keyframes pulseCircle{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.12);

    }

    100%{

        transform:scale(1);

    }

}

/* ==========================================
   MAIN GLASS PANEL
========================================== */

.hero-section .main-glass-panel{

    position:relative;

    width:420px;

    height:500px;

    border-radius:34px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.10);

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:

    0 35px 90px rgba(0,0,0,.40);

}

/* ==========================================
   PANEL SHINE
========================================== */

.hero-section .main-glass-panel::before{

    content:"";

    position:absolute;

    top:-150px;
    left:-150px;

    width:250px;
    height:700px;

    background:

    linear-gradient(

    rgba(255,255,255,.10),

    transparent

    );

    transform:rotate(25deg);

    animation:shineMove 6s linear infinite;

}

@keyframes shineMove{

    from{

        left:-250px;

    }

    to{

        left:650px;

    }

}

/* ==========================================
   CENTER LOGO
========================================== */

.hero-section .center-logo{

    width:210px;

    animation:floatLogo 4s ease-in-out infinite;

    z-index:10;

}

@keyframes floatLogo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ==========================================
   FLOATING ICONS
========================================== */

.hero-section .floating-icon{

    position:absolute;

    width:70px;
    height:70px;

    border-radius:20px;

    background:rgba(255,255,255,.07);

    backdrop-filter:blur(18px);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    border:1px solid rgba(255,255,255,.10);

    transition:.35s;

}

.hero-section .floating-icon:hover{

    transform:scale(1.12);

    background:var(--gradient);

}

.hero-section .icon-one{

    top:120px;
    left:40px;

    animation:float1 4s infinite;

}

.hero-section .icon-two{

    top: 10px;
    right:40px;

    animation:float2 5s infinite;

}

.hero-section .icon-three{

    bottom:60px;
    left:50px;

    animation:float3 4.5s infinite;

}

.hero-section .icon-four{

    bottom:40px;
    right:50px;

    animation:float4 6s infinite;

}

@keyframes float1{

    50%{

        transform:translateY(-18px);

    }

}

@keyframes float2{

    50%{

        transform:translateY(15px);

    }

}

@keyframes float3{

    50%{

        transform:translateY(-12px);

    }

}

@keyframes float4{

    50%{

        transform:translateY(18px);

    }

}

/* ==========================================
   GLASS INFO CARDS
========================================== */

.hero-section .glass-card{

    position:absolute;

    width:240px;

    padding:22px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    box-shadow:

    0 20px 40px rgba(0,0,0,.25);
    z-index: 1;

}

.hero-section .glass-card:hover{

    transform:translateY(-10px);

    border-color:rgba(216,43,87,.30);

}

.hero-section .glass-card i{

    font-size:28px;

    margin-bottom:14px;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-section .glass-card h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-section .glass-card p{

    font-size:14px;

    color:var(--text-light);

    margin:0;

}

/* ==========================================
   CARD POSITIONS
========================================== */

.hero-section .card-one{

    top:40px;

    left:-30px;

    animation:cardFloat1 6s ease-in-out infinite;

}

.hero-section .card-two{

    top:180px;

    right:-50px;

    animation:cardFloat2 5s ease-in-out infinite;

}

.hero-section .card-three{

    bottom:35px;

    left:20px;

    animation:cardFloat3 7s ease-in-out infinite;

}

@keyframes cardFloat1{

    50%{

        transform:translateY(-15px);

    }

}

@keyframes cardFloat2{

    50%{

        transform:translateY(15px);

    }

}

@keyframes cardFloat3{

    50%{

        transform:translateY(-18px);

    }

}






/* section video banner */
section.video-banner{
    height: 95vh;
    padding: 0;
    position: relative;
    z-index: 2;
}
section.video-banner .video-cont{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #181818c9 50%, #01010100 100%);
    background: linear-gradient(90deg, #000000 15.38%, rgba(0, 0, 0, 0) 93.58%),
                linear-gradient(292.08deg, rgba(213, 51, 0, 0.25) 14.44%, rgba(213, 51, 0, 0) 68.9%);
    display: flex;
    flex-direction: column;
    padding-top: 154px;
}
section.video-banner .video-cont h2{
    font-size: 38px;
    color: #000;
    font-weight: 500;
    letter-spacing: 0px;
    margin-top: 20px;
    -webkit-text-fill-color: #fff;
}
section.video-banner .video-cont span img{
    width: 46px;
}
section.video-banner .video-cont span{
    font-family: var(--secondary-font);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}
section.video-banner .video-cont p {
 margin: auto;
 color: #fff;
 font-size: var(--f20);
 font-weight: 500;
 margin-top: 20px;
 letter-spacing: 0px;
}
section.video-banner .video-cont small{
    font-size: 14px;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: #fff;
}
section.video-banner .video-cont .cta-btn{
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}
section.video-banner .video-cont .cta-btn .ct-btn{
    background: linear-gradient(
            135deg,
            #d82b57 0%,
            #a238c7 50%,
            #6b1f6b 100%
        );
    border-radius: 60px 60px 60px 60px;
    padding: 15px 30px 15px 30px;
    color: var(--white-color);
    border: 1px solid #0000000d;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    
}
section.video-banner .video-cont .cta-btn .ct-btn-lg{
    background: var(--white-color);
    border-radius: 60px 60px 60px 60px;
    padding: 15px 30px 15px 30px;
    color: var(--black-color);
    border: 1px solid #0000000d;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}
section.video-banner .video-cont .container{
    position: relative;
    z-index: 2;
}
section.video-banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .review-wrapper {
    padding: 18px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
}

.hero-section .review-left {
    display: flex;
    flex-direction: column;
}

.hero-section .reviewed {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.hero-section img.clutch{
    width: 100px;
    border-radius: 10px;
    padding: 5px;
    background: #fff;
    height: 40px;
    margin-top: 10px;
    object-fit: contain;
}
.hero-section .clutch-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-section .clutch-row h2 {
    font-size: 48px;
    font-weight: 600;
    color: #222;
    line-height: 1;
}

.hero-section .rating {
    display: flex;
    flex-direction: column;
}

.hero-section .stars {
    color: #F5A623;
    font-size: 18px;
    margin-bottom: 6px;
}
.hero-section .reviewed i{
    color: #F5A623;
}

.hero-section .rating span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    width: 95px;
}

.hero-section .review-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-section .avatars {
    display: flex;
}

.hero-section .avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -12px;
}

.hero-section .avatars img:first-child {
    margin-left: 0;
}

.hero-section .business-text {
    font-size: 18px;
    color: #222;
}

.hero-section .business-text strong {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.hero-section .business-text a {
    color: #a335b5;
    text-decoration: underline;
    margin-left: 5px;
    font-weight: 500;
}



/* partner section */

section.partner{
    padding: 40px 0px;
    background: url(https://html.storebuild.shop/printx-prv/printx/assets/img/hero/hero-bg.png);
    background: #fff;
    border-bottom: 1px solid #0000001c;
}        
section.partner p{
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
section.partner p i{
    color: #9435bc;
}
section.partner .about-numbers{
    background: transparent;
    border-radius: 20px;
}
section.partner .about-numbers .col-3 h2{
    color: var(--white-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 0;
}
section.partner .about-numbers .col-3{
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 0 0 20px;
    background: #022D62;
}
section.partner .about-numbers .col-9{
    background: var(--lt-color);
    padding: 20px 0;
    border-radius: 0 20px 20px 0;
}
section.partner .about-numbers img{
    width: 120px !important;
    transition: .3s ease-in-out;
    height: 40px;
    object-fit: contain;
}
section.partner .about-numbers img:hover{
    filter: grayscale(0);
}
section.partner .about-numbers .simple{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 60px;
    color: var(--heading-color);
}
section.partner .about-numbers .transparent{
    font-size: 30px;
    font-weight: 600;
    margin-right: 60px;
    -webkit-text-stroke: 0.8px #fff;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
} 
section.partner .about-numbers .img{
    display: flex;
    gap: 20px;
    align-items: center;
}

/*start about*/

.cloud-section{
    background: #fff;
}

.section-tag{

    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    border:1px solid #d9cbff;
    color:#be2b76;
    font-weight:700;
    font-size:13px;
    letter-spacing:2px;
    background:#f6f0ff;
    margin-bottom: 20px;
}
.cloud-section .right-about{
    padding-left: 70px;
}
.cloud-section h2{
    -webkit-text-fill-color: #000;
}
.cloud-section h2 span{
    background: var(--heading-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cloud-section .cssbuttons-io-button{
    max-width: 215px;
    margin-top: 20px;
}
.section-title{

    font-size:64px;
    line-height:1.05;
    font-weight:800;
    color:#120b2e;

}

.section-desc{

    color: #000;
    font-size: 16px;
    line-height: 1.8;
    opacity: .8;

}

.feature-card{

    background:#f5f3fd;
    border:1px solid #ece7ff;
    border-radius:20px;
    padding:22px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(60,40,150,.08);

}

.icon-box{

    width:46px;
    height:46px;
    border-radius:14px;
    background: var(--heading-color);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;

}

.feature-card h5{

    font-size: 16px;
    font-weight:700;
    margin-bottom:6px;
    color:#15132f;
    -webkit-text-fill-color: #000;
}

.feature-card p{

    margin:0;
    color:#000;
    font-size:14px;

}

/* RIGHT */

.cloud-box{

    height:610px;
    background:linear-gradient(135deg,#2a236d,#4d2ca3);
    border-radius:28px;
    position:relative;
    overflow:hidden;

}
.cloud-box img{
    height: 100%;
    object-fit: cover;
}

.cloud-center{

    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;

}

.cloud-card{

    width:290px;
    height:180px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px;
    position:relative;

}

.cloud-item{

    position:absolute;
    width:95px;
    height:64px;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-weight:700;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);

}

.aws{

    top:25px;
    left:25px;
    background:rgba(170,110,255,.15);

}

.azure{

    right:25px;
    top:25px;
    background:rgba(50,140,255,.15);

}

.gcp{

    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    background:rgba(90,255,180,.10);

}

.floating-box{

    position:absolute;
    left:30px;
    bottom:30px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 26px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.count{

    color:#be2b76;
    font-size:48px;
    font-weight:800;

}

.floating-box div:last-child{

    color:#131313;
    font-size:17px;
    line-height:1.3;
    letter-spacing: 1px;
}

/* Responsive */

@media(max-width:991px){

.section-title{

font-size:48px;

}

.cloud-box{

height:500px;

}

}

@media(max-width:767px){

.section-title{

font-size:38px;

}

.section-desc{

font-size:18px;

}

.cloud-box{

height:420px;

}

.floating-box{

left:15px;
bottom:15px;
padding:15px;

}

.count{

font-size:34px;

}

}



section.new-services-sec{
    background: #f5f3fd;
    position: relative;
}
.serve-sahpe{
    position: absolute;
    right: 0px;
    top: 93px;
    width: 349px;
}
section.new-services-sec .head-sec{
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.new-services-sec .head-sec p{
    width: 75%;
}
section.new-services-sec .cssbuttons-io-button{
    max-width: 235px;
}
section.new-services-sec .col-4{
    margin-bottom: 25px;
}

section.new-services-sec .salesforce-card{
    background: #fff;
    box-shadow: 0 3px 25px rgba(0, 0, 0, .071);
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .5s ease-in-out;
}
.icon-sec {
    position: relative;
    z-index: 3;
}
section.new-services-sec .salesforce-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    border-radius: 20px;
    background: linear-gradient(90deg,#32156f 0%, #170d2e 100%);
    transition: .5s ease-in-out;
}
section.new-services-sec .salesforce-card:hover::before {
    width: 100%;
    height: 100%;
}
section.new-services-sec .salesforce-card:hover{
    /* background: linear-gradient(90deg,#32156f 0%, #170d2e 100%); */
}

section.new-services-sec .salesforce-card:hover .cont-sec h2{
    -webkit-text-fill-color: #fff;
}
section.new-services-sec .salesforce-card:hover .cont-sec p{
    -webkit-text-fill-color: #fff;
    opacity: .8;
}
section.new-services-sec .salesforce-card:hover .cont-sec .anchorbutton{
    color: #c72762;
    position: relative;
    z-index: 3;
}
section.new-services-sec .salesforce-card:hover .cont-sec hr{
    background: #fff;
    position: relative;
    z-index: 3;
}


section.new-services-sec .salesforce-card h2{
    font-size: 18px;
    -webkit-text-fill-color: #000;
    opacity: .8;
    font-weight: 600;
}
section.new-services-sec .salesforce-card .cssbuttons-io-button{
    /* max-width: 215px; */
}
section.new-services-sec .salesforce-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}
section.new-services-sec .salesforce-card p{
    height: 150px;
    overflow: hidden;
}
section.new-services-sec .salesforce-card  .anchorbutton{
    color: #010ED0;
    font-size: 14px;
    font-weight: 600;
}

section.new-services-sec .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 102%;
    bottom: 60%;
    left: -1%;
}

section.new-services-sec .owl-nav button{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    color: var(--heading-color);
    background: var(--white-color);
    box-shadow: 0 3px 25px rgba(0, 0, 0, .071);
}


section.new-services-sec .owl-dots {
  text-align: center;
  padding-top: 15px;
}
section.new-services-sec .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
  border: none;
}
section.new-services-sec .owl-dots button.owl-dot.active {
  background: var(--btn-color);
  border: none;
}
section.new-services-sec .owl-dots button.owl-dot:focus {
  outline: none;
}
section.new-services-sec .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 60%;
    right: -4%;
}
.icon-sec svg{
    width: 52px;
    margin-bottom: 15px;
    background: #f5f3fd;
    border: 1px solid #ece7ff;
    border-radius: 20px;
    padding: 8px;
}



.expert{
    background: linear-gradient(135deg, #31000d 0%, #600082 50%, #000000 100%);
    padding: 60px 0;
    background: #fff;
    position: relative;
    z-index: 9;
}
.expert h3{
 -webkit-text-fill-color: #000;
    font-weight: 600;
    margin-bottom: 50px;
    display: block;
}
.expert img{
    width: 105px;
}
.expert .title{
    margin-top: 0;
}


section.cta-section{
    padding:90px 0;
}


section.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 82px) 0;
  background:
    linear-gradient(118deg, rgba(246, 241, 255, 0.94) 0 52%, rgba(225, 238, 255, 0.9) 52% 100%);
}

section.cta-section::before,
section.cta-section::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  pointer-events: none;
}

section.cta-section::before {
  top: 16px;
  left: max(18px, calc(50% - 720px));
  border-top: 2px solid rgba(47, 7, 142, 0.26);
  border-left: 2px solid rgba(47, 7, 142, 0.26);
  transform: rotate(-18deg);
}

section.cta-section::after {
  right: max(18px, calc(50% - 690px));
  bottom: 16px;
  border-right: 2px solid rgba(248, 111, 47, 0.34);
  border-bottom: 2px solid rgba(248, 111, 47, 0.34);
  transform: rotate(16deg);
}


section.cta-section .cta-box{

    position:relative;
    overflow:hidden;

    background:linear-gradient(90deg,#32156f 0%, #170d2e 100%);
    border-radius:32px;

    padding:70px;
    box-shadow:0 30px 60px rgba(39,20,83,.25);

}

/* Left Content */

section.cta-section .subtitle{
    display:inline-block;
    text-transform: uppercase;
    font-size:14px;
    font-weight:500;
    letter-spacing:3px;
    margin-bottom:25px;
    color: #fff;
}

section.cta-section .cta-box h2{
    color:#fff;
    font-size: 34px;
    line-height:1.6 rem;
    font-weight:700;
    max-width:720px;
    margin-bottom:30px;
    -webkit-text-fill-color: #fff;
}

section.cta-section .cta-box p{

    color:#b9b6cb;

    font-size: 16px;
    line-height:1.7;

    max-width:650px;
}

/* Button */

section.cta-section .cta-btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d82b57 0%, #a238c7 50%, #6b1f6b 100%);
    position: relative;
    box-shadow: 0 0 25px rgb(187 43 123), inset 0 -5px 0 rgba(0, 0, 0, .15);
    transition: .35s;
    padding: 10px 25px;
}

section.cta-section .cta-btn:hover{

    transform:translateY(-5px);

    color: #fff;

    box-shadow:
        0 0 40px rgb(187 43 123),
        0 15px 35px rgba(0,0,0,.35);
}

.cta-section ul {
    display: flex;
    align-items: center;
    margin: 25px 0 0;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-section  ul li {
    padding-left: 0px;
    color: #dcdcdc;
    position: relative;
    margin-right: 15px;
    font-weight: 400;
    font-size: 16px;
}

/* Decorative Shapes */

section.cta-section .shape{
    position:absolute;
}

/* Grey Rectangle */

section.cta-section .rectangle{

    width:250px;
    height:120px;

    top:45px;
    right:220px;

    background:rgba(255,255,255,.12);

    transform:rotate(-16deg);
}

/* Purple Square */

section.cta-section .square{

    width:48px;
    height:48px;

    background:#6f53ff;

    top:175px;
    right:200px;

    transform:rotate(18deg);
}

/* Orange Triangle */

section.cta-section .triangle{

    width:95px;
    height:95px;

    right:120px;
    bottom:40px;

    background:#ef8a28;

    transform:rotate(18deg);

    clip-path:polygon(0 0,100% 50%,0 100%);
}

/* Button wrapper alignment */

section.cta-section .col-lg-5{
    position:relative;
    z-index:2;
}

/* Responsive */

@media(max-width:1200px){

section.cta-section .cta-box{
    padding:60px;
}

section.cta-section .cta-box h2{

    font-size:42px;
}

section.cta-section .cta-box p{

    font-size:20px;
}

section.cta-section .cta-btn{

    width:230px;
    height:72px;

    font-size:24px;
}

}

@media(max-width:991px){

.cta-box{
    text-align:center;
    padding:50px 35px;
}

.cta-box h2{

    font-size:38px;
}

.cta-box p{

    margin:auto;
}

.col-lg-5{

    margin-top:50px;
}

.rectangle{

    width:180px;
    height:90px;

    right:50px;
}

.square{

    right:60px;
}

.triangle{

    right:20px;
}

}

@media(max-width:576px){

.cta-box{

    padding:40px 25px;
}

.subtitle{

    font-size:14px;
}

.cta-box h2{

    font-size:30px;
}

.cta-box p{

    font-size:16px;
}

.cta-btn{

    width:100%;
    font-size:22px;
}

.rectangle,
.square,
.triangle{

    display:none;
}

}




section.featured-pro {
    background-color: #033333;
    background: url(https://credio.rstheme.com/business-demo/wp-content/uploads/2024/10/bg-2.jpg);
    position: relative;
    padding: 120px 0;
    padding-bottom: 0;
}
section.featured-pro::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background: #070b16;
}
section.featured-pro .main{
    position: relative;
}

section.featured-pro .head-sec {
    text-align: center;
    margin-bottom: 50px;
}
section.featured-pro .head-sec h2{
  color: var(--white-color);
  -webkit-text-fill-color: #fff;
}
section.featured-pro .head-sec p{
   color: var(--white-color);
}
section.featured-pro .row{
    gap:20px 0;
    justify-content: center;
}
section.featured-pro .main-prop {
    position: relative;
    overflow: hidden;
    padding: 0;
}
section.featured-pro .pro-sec{
   position: relative; 
}
section.featured-pro .main-prop h4{
    font-size: 18px;
    color: #fff;
}
section.featured-pro img.img-fluid {
    width: 100%;
    height: 450px;
    object-fit: cover;
    position: relative;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    object-position: 80%;
}
section.featured-pro .main-prop:hover img{
    transform: scale(1.14);
}
section.featured-pro .pro-img a:before{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}
section.featured-pro .pro-img a{
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    border-radius: 10px 10px 0 0;
    display: block;
}
section.featured-pro .pro-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--p24);
    background: linear-gradient(158deg, #0e2980 0%, #5be2e6 100%);
    position: absolute;
    bottom: -100px;
    width: 75%;
    z-index: 1;
    transition: all 0.7s;
    background: rgb(8 8 8 / 77%);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, .08);
    /* background: linear-gradient(135deg, #31000d 0%, #1a0023b8 50%, #000000ba 100%); */
}
section.featured-pro .pro-cont h6{
    -webkit-text-stroke: 1px #ffffff8f;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: 50px;
    background: transparent;
    margin: 0;
}
section.featured-pro .pro-cont .view-more{
    color: var(--white-color);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}
section.featured-pro .pro-cont .view-more i{
    background: var(--heading-color);
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
}
section.featured-pro .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 10px 0;
}
section.featured-pro .main-prop:hover .line{
    width: 97%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}
section.featured-pro a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

section.featured-pro .main-prop:nth-child(3){}
section.featured-pro .single ul{
justify-content: flex-start;
gap: 40px;
}
section.featured-pro .single .pro-img {
height: 550px;
}
section.featured-pro .single .pro-img img{
    height: 550px;   
}
section.featured-pro .single {
    margin-top: var(--m40);
}
section.featured-pro .single a{
    top: 27px;
}
section.featured-pro .single .pro-cont{
    width: 98%;
}
section.featured-pro .main-prop:hover .pro-cont {
bottom: 0;
}

section.featured-pro .rating i {
    color: #E3E3E3;
    margin-right: var(--m3);
    font-size:var(--f14);
}
section.featured-pro .rating i.checked {
    color: #FCAF3D;
}
section.featured-pro .rating{
    margin-bottom:var(--m15);
    display: none;
}
section.featured-pro h3.title {
    font-size: var(--f22);
    line-height: 1.2;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: var(--m11);
    height: 54px;
    -webkit-text-fill-color: #fff;
    overflow: hidden;
    margin-top: 0;
}
section.featured-pro h3.title a{
    color: var(--heading-color);
}
section.featured-pro p.adr {
    font-size: var(--f14);
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: var(--m20);
    line-height: 1.5;
    height:21px;
    overflow:hidden;
}
section.featured-pro ul {
    margin: 0 0 0px;
    padding: var(--p20) var(--p20) var(--p15);
    padding-left: 0;
    padding-top: 3px;
    padding-right: 0;
    font-size: var(--f14);
    align-items: center;
    display: flex;
    justify-content: space-between;
}
section.featured-pro i {
    margin-right: 0;
}
section.featured-pro p.adr i{
    margin-right:8px;
}
section.featured-pro ul li{
    font-size: var(--f14);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
section.featured-pro h5{
    font-size: var(--f14);
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}
section.featured-pro .pro-img {
    position: relative;
    overflow: hidden;
    height: 450px;
}
section.featured-pro h5 span{
    font-weight: 600;
    font-size: var(--f24);
    color: var(--white-color);
}
section.featured-pro .featured i{
    margin-right: 0;
    cursor: pointer;
}

section.featured-pro .featured span {
    font-weight: 400;
    font-size: var(--f18);
    color: var(--white-color);
    background-color: transparent;
    padding: var(--p7) var(--p15);
    display: inline-block;
    border-radius: 5px;
    transform: rotate(-90deg);
    letter-spacing: .2em;
    border: 1px solid;
}
section.featured-pro .featured{
    position: absolute;
    top: 50px;
    right: -10px;
    z-index: 0;
}






/*  */

section.blogsevent{
    background: #f5f3fd;
    padding-top: 0;
}   
section.blogsevent .title{
    margin-bottom: 70px !important;
    margin-top: 0;
    position: sticky;
    top: 0;
    background: #f5f3fd;
    z-index: 9;
    padding-top: 60px;
}

section.blogsevent .largeblogcard {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, .071);
    position: sticky;
    top: 180px;
}
section.blogsevent .largeblogcard img{
    border-radius: 20px;
    /* height: 520px; */
    object-fit: cover;
}

section.blogsevent .blogcard{
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, .071);
    display: flex;
    gap: 20px;
    position: sticky;
    top: 180px;
}
section.blogsevent .blogcard img{
    width: 30%;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    object-position: right;
}
section.blogsevent .blogcard h2{
    font-size: 16px;
    -webkit-text-fill-color: #000;
    font-weight: 600;
}
section.blogsevent .largeblogcard h2{
    -webkit-text-fill-color: #000;
    font-weight: 600;
}
section.blogsevent .blogcard span{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid #d9cbff;
    color: #be2b76;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    background: #f6f0ff;
    margin-bottom: 20px;
    margin-top: 20px;
}
section.blogsevent .largeblogcard span{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid #d9cbff;
    color: #be2b76;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    background: #f6f0ff;
    margin-bottom: 20px;
    margin-top: 20px;
}
section.blogsevent .cssbuttons-io-button{

}

/* new services section */
section.new-blog .upper-head {
    width: 75%;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}



.homecustom-tabs{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:linear-gradient(90deg,#32156f 0%, #170d2e 100%);
    border-radius:60px;
    padding:10px;
    border:none;
    overflow:hidden;
    margin-bottom: 50px;
}

.homecustom-tabs .nav-item{
    flex:1;
    z-index:2;
}

.homecustom-tabs .nav-link{
    width:100%;
    padding:13px 10px;
    text-align:center;
    background:transparent;
    border:none;
    color:#fff;
    font-size: 18px;
    font-weight:600;
    border-radius:50px;
    transition:.35s;
    position:relative;
}

.homecustom-tabs .nav-link:hover{
    color:#fff;
}

.homecustom-tabs .nav-link.active{
    color:#111;
    background:transparent !important;
}

.homecustom-tabs .home-tab-slider{
    position:absolute;
    left:10px;
    top:10px;
    height:calc(100% - 20px);
    width:calc((100% - 20px)/5);
    background:#fff;
    border-radius:50px;
    transition:all .45s cubic-bezier(.4,0,.2,1);
    z-index:1;
}






/* --------------------------------- */


        section.indus-case{
            background: #070b16;
            position: relative;
        }
        section.indus-case .container{
            position: relative;
            z-index: 9;
        }

        section.indus-case .slider-controls {
            position: absolute;
            top: 80px;
            right: 0;
            display: flex;
            gap: 18px;
            z-index: 99;
        }

        section.indus-case .slider-controls button {
            width: 58px;
            height: 58px;
            border: 2px solid rgba(255, 255, 255, .6);
            border-radius: 50%;
            background: transparent;
            color: #fff;
            cursor: pointer;
            font-size: 18px;
            transition: .3s;
        }

        section.indus-case .slider-controls button:hover {
            background: #fff;
            color: #000;
        }

        section.indus-case .business-slider {
            margin-top: 20px;
        }

        section.indus-case .item {
            position: relative;
            padding: 0 10px;
        }

        section.indus-case .item img {
            width: 100%;
            height: 410px;
            object-fit: cover;
            border-radius: 28px;
            display: block;
        }

        section.indus-case .content {

            position: absolute;
            right: 45px;
            top: 40px;

            background: rgb(15 0 49 / 92%);

            width: 340px;

            padding: 40px;

            border-radius: 24px;

        }

        section.indus-case .content h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        section.indus-case .content h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            -webkit-text-fill-color: #fff;
        }

       section.indus-case .content p {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 15px;
            color: #fff;
            text-transform: capitalize;
        }

        section.indus-case .content a {
            color: #fff;
            text-decoration: none;
            font-size: 22px;
            font-weight: 700;
        }

        section.indus-case .slick-center {
            transform: scale(1);
        }

        section.indus-case .slick-slide {
            opacity: .45;
            transition: .4s;
        }

        section.indus-case .slick-center {
            opacity: 1;
        }

        section.indus-case .progress {
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, .25);
            margin: 55px 0 35px;
            position: relative;
        }

        .progress{
        width:100%;
        height:3px;
        background:rgba(255,255,255,.2);
        margin:55px 0 35px;
        position:relative;
        overflow:hidden;
    }

    .progress-fill{
        height:100%;
        width:0%;
        background: var(--heading-color);
        transition:width .5s;
    }

        /* section.indus-case .progress:after {
            content: "";
            position: absolute;
            left: 35%;
            width: 15%;
            height: 100%;
            background: #fff;
        } */

        section.indus-case .logos {

            display: flex;
            justify-content: space-between;
            align-items: center;

            color: #b4c0ca;

            font-size: 32px;
            font-weight: bold;

        }

        section.indus-case .logo {
            cursor: pointer;
            opacity: .55;
            transition: .3s;
            
        }

        section.indus-case .logo.active {
            opacity: 1;
            color: #fff;
        }

        @media(max-width:992px) {

            h1 {
                font-size: 48px;
            }

            .content {

                width: 260px;
                padding: 25px;

            }

            .content h2 {
                font-size: 30px;
            }

            .content h3 {
                font-size: 55px;
            }

            .content p {
                font-size: 18px;
            }

        }

        @media(max-width:768px) {

            h1 {
                font-size: 38px;
            }

            .slider-controls {
                position: relative;
                margin-bottom: 20px;
                top: auto;
                right: auto;
            }

            .item img {
                height: 350px;
            }

            .content {
                position: absolute;
                left: 20px;
                right: 20px;
                width: auto;
                top: auto;
                bottom: 20px;
            }

            .logos {
                overflow: auto;
                gap: 30px;
                font-size: 22px;
            }

        }








/* ----------------------------------- */

section.new-blog a.main-btn{
    width: 150px;
    text-align: center;
}
section.new-blog .upper-head h2{
    font-family: var(--heading-font);
    margin-bottom: 30px;
}
section.new-blog .upper-head p{
    color: var(--black-color);
}
.heading_sec{
    margin-bottom: 40px;
    text-align: center;
}
section.new-blog .dynamic {
    height: 197px;
    overflow: hidden;
    opacity: .6;
    color: #000;
    font-size: 14px;
}
section.new-blog .dynamic a{
    color: #000;
    opacity: .8;
}
section.new-blog{
    background: var(--lt-color);
    position: relative;
}
section.new-blog .head{
    text-align: left;
}
section.new-blog .img-sec{
    position: relative;
    height: 180px;
    overflow: hidden;
}
section.new-blog .img-sec img{
    height: 180px;
    transition: .5s ease-in-out;
    object-fit: cover;
}
section.new-blog .item:hover img{
    transform: scale(1.12);
}
section.new-blog .img-sec span{
    position: absolute;
    left: 20px;
    top: 20px;
    font-family: var(--primary-font);
    color: #fff;
}
section.new-blog .cont span{
    color: #fff;
    opacity: .8;
}
section.new-blog .cont h4{
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    max-height: 50px;
    overflow: hidden;
}
section.new-blog .cont p{
    color: #385575;
    font-size: 1rem;
    line-height: 1.5;
    height: auto;
    overflow: hidden;
}
section.new-blog .cont{
    padding: 20px;
}
section.new-blog .item{
    margin-bottom: 30px;
    border: 1px solid #bababaa6;
    padding: 0;
}
section.new-blog .owl-nav{
    position: absolute;
    width: 103%;
    top: 40%;
    display: flex;
    justify-content: space-between;
    left: -18px;
    display: none;
}
section.new-blog .container:hover .owl-nav{
    display: flex;
}
section.new-blog #course-section{
    position: relative;
}
section.new-blog .owl-nav button{
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--btn-color);
    border-radius: 50%;
    border: none;
    color: var(--white-color);
}
section.new-blog .owl-nav button:hover{
    background: var(--btn-hover);
}
section.new-blog .row{
gap: 25px;
flex-wrap: nowrap;
overflow-x: scroll;
padding: 10px 0;
}
section.new-blog .col-4{
    width: 28%;
}

section.new-blog .tab__title {
    margin: 25px 0 0;
    border-bottom: 1px solid #8d8d8d;
    
      .tab__button:first-of-type {
        margin:0;
    }
  }
    
  section.new-blog .tab__button {
      padding: 15px;
      border: none;
      border-bottom: 1px solid #e5e5e5;
      /* border-right: 1px solid #e5e5e5; */
      background: transparent;
      outline: none;
      margin: 0 -5px;
      cursor: pointer;
      width: 25%;
  }
    
  section.new-blog .tab_button-active {
      border-bottom: none;
      background: var(--btn-color);
      color: var(--white-color); 
      border-radius: 20px 20px 0 0;
  }
  
  section.new-blog .tab__inside {
    
    visibility: hidden; 
    opacity: 0;
    height: 0;
    transform: translateY(10px);
    transition: transform .3s ease-in;
    
    .tab__inside-img {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-content: center;
      
    img {
      width: 100%;
      height: 370px;
      object-fit: cover;
    }
  }
  }
  section.new-blog .tab__inside-active {
    padding: 30px 0;
  visibility: visible; 
  opacity: 1;
  height: 100%;
    transform: translateY(0);
    transition: transform .3s ease-out 0.1s, opacity .3s ease-out 0.1s;
}
  section.new-blog .tab__inside-text {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-content: center;
      gap: 30px;
      
      p {
        color: #000;
        font-size: 14px;
        font-weight: 100;
        opacity: 1;
        font-weight: 400;
      }
    
  }
section.new-blog ::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    transition: 8.3s all;
  }
  
  /* Track */
  section.new-blog ::-webkit-scrollbar-track {
    background:var(--btn-color); 
  }
   
  /* Handle */
  section.new-blog ::-webkit-scrollbar-thumb {
    background: var(--main-bg); 

  }
  
  /* Handle on hover */
  section.new-blog ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }



/* technology Stack */
.head{
    text-align: center;
    margin-bottom: 40px;
}
.head p{
    color: var(--black-color);
}
.head h2{
    color: var(--heading-color);
}

section.tech{
    background: var(--white-color);
}
section.tech img{
    width: 100%;
    filter: grayscale(1);
    transition: .3s ease-in-out;
}
section.tech img:hover{
    filter: unset;
}

/* our clients */
section.clients-sec{
    background: linear-gradient(135deg, #31000d 0%, #600082 50%, #000000 100%);
    background: #070b16;
    position: relative;
}
section.clients-sec .about-numbers img{
    width: 120px !important;
    border-radius: 10px;
    max-height: 70px;
    object-fit: contain;
}
section.clients-sec .head p{
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}
section.clients-sec .about-numbers .simple{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 60px;
    color: var(--heading-color);
}
section.clients-sec .about-numbers .transparent{
    font-size: 30px;
    font-weight: 600;
    margin-right: 60px;
    -webkit-text-stroke: 0.8px #fff;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}
section.clients-sec .about-numbers .img{
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.35s var(--ease-out);
    backdrop-filter: blur(8px);
    margin: 15px;
}


/* second cta */
section.cta {
    background-image: url(../images/bbr-bg.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 90px;
    background-position: right;
    background-attachment: fixed;
    position: relative;
}
section.cta::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(#000000, #320065);
    background-image: linear-gradient(to right, #1d052f, #32006518);
    top: 0;
    left: 0;
    opacity: 1;
}
section.cta .container{
    position: relative;
}
section.cta .counter-icon {
    height: 130px;
    width: 130px;
    background: url(../images/bg-icon-counter-white.png);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--m10);
    background: transparent;
    border-radius: 50%;
    border: 3px dotted #fff;
}
section.cta .counter-icon i{
    color: #fff;
    font-size: 50px;
}

section.cta .col-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--m30)
}

section.cta .row h3 {
    color: var(--white-color);
    margin-bottom: 0
}

section.cta .row p {
    color: rgba(255,255,255,.5);
    margin-bottom: 0;
    font-size: var(--f19);
    margin-top: var(--m5)
}

section.cta .col-3:hover p {
    color: #fff
}

section.cta .col-12.cta-bottom {
    padding-top: var(--p40)
}

section.cta .bottom-content {
    border-radius: 15px;
    background: linear-gradient(to right, #07000e 0, #001c2f 100%);
}

section.cta .bottom-content img {
    margin-top: -80px
}

section.cta .bottom-content .col-3 {
    margin-bottom: 0;
    display: none
}

section.cta .bottom-content .col-9 {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

section.cta .bottom-content h2 {
    margin-bottom: 0;
    width: 75%;
    font-size: var(--f30);
    color: var(--white-color);
    line-height: 1.2
}

section.cta .bottom-content a.main-btn::after {
    background: var(--btn-color)
}

section.cta .bottom-content a.main-btn:hover .icon-container {
    transform: translateX(93%)
}


/* section why choose us */

section.why-choose {
    background: var(--lt-color);
}
section.why-choose .img-sec{
    position: relative;
}
section.why-choose .img-sec img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 40px 40px 0 40px;
}
section.why-choose .img-cont{
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgb(0 0 0 / 18%);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    width: 50%;
}
section.why-choose .img-cont p{
    font-size: var(--f14);
    text-align: center;
    margin: 0;
}
section.why-choose .img-cont h3{
    color: var(--white-color);
    font-size: 22px;
}
section.why-choose .cont-sec p{
    color: var(--black-color);
} 
section.why-choose p.p-why {
    background: var(--heading-color);
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 30px;
}
section.why-choose .modal-content{
    padding-top: 30px;
}
section.why-choose .modal-content h2{
    margin-bottom: 30px;
    font-size: 22px;
}
section.why-choose .modal-content .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
}
section.why-choose .icon{
    border-radius: 50%;
    height: 70px;
    width: 70px;
    padding: 10px;
    border: 2px dashed #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    margin-bottom: 15px;
}
section.why-choose .icon i{
    color: var(--heading-color);
    background: var(--white-color);
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}
section.why-choose .points li i{
    color: var(--white-color);
    background: var(--heading-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.why-choose .points li{
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
section.why-choose .cont-sec{
	display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* testimonials section css */
section.reviews{
    background: #fff;
    position: relative;
    z-index: 9;
}

section.reviews .google{
    position: absolute;
    top: 0px;
    right: 20px;
    width: 24px !important;
    height: 24px !important;
}


section.reviews .heading{
    margin-bottom: 50px;
    text-align: center;
}
section.reviews .heading p{
    color: var(--heading-color);
    background: var(--white-color);
    display: inline-block;
    padding: 10px;
    border-radius: 10px;  

    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid #d9cbff;
    color: #be2b76;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    background: #f6f0ff;
    margin-bottom: 20px;
}
section.reviews .heading h2{
    color: var(--white-color);
    font-size: var(--f30);
}
section.reviews .heading span{
    color: var(--black-color);
    font-size: 16px;
    width: 60%;
    display: inline-block;
    opacity: .8;
    letter-spacing: 1px;
    font-weight: 500;
}
section.reviews .owl-item{
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #00000024;
}
section.reviews .owl-item:nth-child(even){
    background: #fff;
}
section.reviews .owl-item:nth-child(odd){
    background: #fff;
}
section.reviews .reviews-card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.tab-star span{
    color: #F2A73B;
    display: inline-block;
    margin-bottom: 20px;
}
section.reviews .user-img{
    /* display: none; */
}
section.reviews .reviews-card img{
    width: 45px;
    height: 45px;
}
section.reviews .reviews-card h2{
    font-size: 19px;
    -webkit-text-fill-color: #000;
    opacity: .8;
    margin-bottom: 5px;
    font-weight: 500;
}
section.reviews .reviews-card p{
    color: var(--black-color);
    text-align: left;
}
section.reviews .reviews-card .img-name{
    display: flex;
    gap: 10px;
}
section.reviews .reviews-card .img-name span{
    font-size: 14px;
}
section.reviews .reviews-card hr{
    background: #00000085;
    width: 100%;
}
section.reviews .owl-nav{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
section.reviews .owl-nav button{
    background: var(--white-color);
    color: var(--heading-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s ease-in-out;
}
section.reviews .owl-nav button:hover{
    border: 1px dashed var(--white-color);
    color: var(--white-color);
    background: transparent;
}



/* Events Section */

section.gallery .view-slider img{
    width: 120px;
}
section.gallery{
    background: #fff;
}
.certifications{
    margin-bottom: 30px;
}
.certifications h3{
    -webkit-text-fill-color: #000;
    font-weight: 600;
    margin-bottom: 50px;
    display: block;
}


.title{
  margin-top: 50px;
  h1{
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: Arial;
    text-transform: uppercase;
    color: var(--heading-color);
    
    span{
      display: block;
      color: darken(#022D62, 40%);
      font-size: 20px;
      margin-bottom: 10px;
    }
  }
}
section.gallery .title{
    margin-top: 0;
}

/*Carousel Gallery*/
.carousel-gallery{
	margin: 50px 0;
    margin-bottom: 0;
	.swiper-slide{
		a{
			display: block;
			width: 100%;
			height: 320px;
			border-radius: 14px;
			overflow: hidden;
			position: relative;

			-webkit-box-shadow: 3px 2px 20px 0px rgba(0,0,0, .2);
      -moz-box-shadow: 3px 2px 20px 0px rgba(0,0,0, .2);
      box-shadow: 3px 2px 20px 0px rgba(0,0,0, .2);

			&:hover{
				.image{
					.overlay{opacity: 1}
				}
			}

			.image{
				width: 100%;
				height: 100%;
				background-size: cover;
				background-position: center center;
				.overlay{
					width: 100%;
					height: 100%;
					background-color: rgba(20,20,20, .8);
					text-align: center;
					opacity: 0;
					
					-webkit-transition: all .2s linear; 
          -o-transition: all .2s linear; 
          transition: all .2s linear;

					em{
						color: #fff;
						font-size: 26px;
						position: relative;
            top: 50%; 
            -webkit-transform: translateY(-50%); 
            -ms-transform: translateY(-50%); 
            -o-transform: translateY(-50%); 
            transform: translateY(-50%);
            display: inline-block;
					}
				}
			}
		}
	}
	.swiper-pagination{
		position: relative;
		bottom: auto;
		text-align: center;
		margin-top: 25px;

		.swiper-pagination-bullet{
			-webkit-transition: all .2s linear; 
      -o-transition: all .2s linear; 
      transition: all .2s linear;

			&:hover{
				opacity: .7;
			}

			&.swiper-pagination-bullet-active{
				background-color: #022D62;
				transform: scale(1.1, 1.1)
			}
		}
	}
}
/*# Carousel Gallery*/

.plugins{
  text-align: center;
  
  h3{
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: Arial;
    text-transform: uppercase;
    color: #111;
  }
  
  a{
    display: inline-block;
    font-family: Arial;
    color: #777;
    font-size: 14px;
    margin: 10px;
    transition: all .2s linear;
    
    &:hover{color: #022D62}
  }
}



/* form css */
section.form{
    background: var(--lt-color);
}
section.form .form-social{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
section.form .form-social a{
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 500;
    border-bottom: 1px dashed var(--heading-color);
    padding-bottom: 3px;
}
section.form .form-social li i{
    color: var(--btn-color);
    margin-right: 5px;
    font-size: 16px;
}
section.form .col-6{
    padding: 0;
} 
section.form .form-cont {
    background: var(--white-color);
    padding: 20px;
    height: 100%;
}
section.form ul.achievement{
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 40px;
}
section.form ul.achievement li{
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    text-transform: capitalize;
}
section.form ul.achievement li i {
    /* font-size: 16px; */
    padding: 5px;
    border: 1px dashed var(--heading-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.form .trust{
    font-size: 26px;
    margin-bottom: 30px;
}
section.form ul.partners{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
section.form ul.partners li{
    width: 46%;
}
section.form ul.partners li img{
    height: 50px;
    width: auto;
}

section.form .form-sec{
    background: linear-gradient(90deg,#05164d 0%,#0c33b3 100%);
    padding: 20px;
}
section.form .form-sec input{
    width: 100%;
    background-color: var(--lt-color);
    border: 1.4px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .1s, border-color .1s;
    color: #1f0a00;
}
section.form .form-sec textarea{
    width: 100%;
    background-color: var(--lt-color);
    border: 1.4px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .1s, border-color .1s;   
}
section.form .form-sec select{
    width: 100%;
    background-color: var(--lt-color);
    border: 1.4px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .1s, border-color .1s;
}
section.form .form-sec button{
    background: green;
    border: none;
    color: var(--white-color);
    padding: 10px 30px;
    border-radius: 20px;
    border: 1px solid green;
    transition: .5s ease-in-out;    
}
section.form .form-sec button:hover{
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}


/* form section */
section.contact-us .img-sec img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right;
}
section.contact-us{
    background:#F1F1F1;
}
section.contact-us .col-6{
    padding: 0;
}
section.contact-us h2 span{
    color: #ffcfac;
}
section.contact-us .form-sec{
    background: var(--heading-color);
    padding: var(--p30) var(--p40);
}
section.contact-us .cont-form{
    /* border-radius: 30px; */
}
section.contact-us .contact-wrapper{
    width: 85%;
    border-radius: 20px;
}
section.contact-us .container{
    display: flex;
    justify-content: center;
    align-items: center;
}
section.contact-us .cont-form h4{
    color: #fff;
    font-size: var(--f28);
}
section.contact-us .cont-form input{
    width: 97%;
    color: rgba(220, 239, 216, .8);
    background-color: var(--lt-color);
    border: 1.4px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .1s, border-color .1s;
    color: #1f0a00;
}
section.contact-us .cont-form select{
    width: 97%;
    color: rgba(220, 239, 216, .8);
    background-color: var(--lt-color);
    border: 1.4px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .1s, border-color .1s;
    color: #1f0a00;
}
section.contact-us .cont-form textarea{
    width: 100%;
    color: rgba(220, 239, 216, .8);
    background-color: var(--lt-color);
    border: 1.4px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color .1s, border-color .1s;
    color: #1f0a00;
}
section.contact-us .cont-form input::placeholder{
    color: #1f0a00;
    font-size: var(--f15);
}
section.contact-us .cont-form textarea::placeholder{
    color: #1f0a00;
    font-size: var(--f15);
}
section.contact-us .col-12{
    padding: 0;
}
section.contact-us .cont-form button{
    background-image: var(--main-bg);
    border-radius: 16px;
    padding-top: .9em;
    padding-bottom: .9em;
    padding-left: 1em;
    font-size: 1.25em;
    border: none;
    width: 100%;
    color: var(--white-color);
    margin-top: var(--m15);
}
.email{
    margin-top: var(--m20);
}

.email p{
    font-size: var(--f20);
    color: #1f0a00;
    margin-bottom: var(--m10);
    font-weight: 500;
}
.social-media{
    text-align: center;
    margin-top: var(--m20);
}
.social-media h5{
    color: #1f0a00;
}
.social-icon{
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icon a{
    color: var(--white-color);
    padding: 10px;
    font-size: var(--f20);
    background-image: var(--main-bg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease-in-out;
}
.social-icon a:hover{
    background: var(--white-color);
    color: #1f0a00;
}

.copy-btn{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    display: flex;
    height: 100%;
    text-align: left;
    align-items: center;
    padding-left: 1rem;
}
.copy-text {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 10px;
    text-align: center;
    background-image: var(--main-bg);
    border-radius: 16px;
    padding-top: .9em;
    padding-bottom: .9em;
    padding-left: 1em;
    font-size: 1.25em;
    border: none;
    width: 100%;
    color: var(--white-color);
}
.copy-text input.text {
	font-size: 18px;
	color: var(--heading-color);
	border: none;
	outline: none;
    background: transparent;
}
.copy-text button {
	padding: 10px;
	background: transparent;
	color: #fff;
	font-size: 22px;
	border: none;
	outline: none;
	border-radius: 10px;
	cursor: pointer;
    text-align: left;
    width: 100%;
}

.copy-text button:active {
	background: transparent;
}
.copy-text button:before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background-image: var(--main-bg);
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button:after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background-image: var(--main-bg);
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
	display: block;
}

/* fade-in and fade-out animation */
.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
}
.fade-out {
    animation: fadeOut ease 5s;
    -webkit-animation: fadeOut ease 5s;
    -moz-animation: fadeOut ease 5s;
    -o-animation: fadeOut ease 5s;
    -ms-animation: fadeOut ease 5s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-moz-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}

@-o-keyframes fadeOut {
    0% {opacity:1;}
    100% {opacity:0;}
}



.letterDrop {
    position: relative;
    top: 0;  
    display: inline-block;
    text-transform: uppercase; 
    letter-spacing: 0.5em;
    opacity: 1;
    transform: rotateX(-90deg);
    animation: letterDrop 3.2s ease 1 normal forwards;
  }
section.video-banner .video-cont .container{
    position: relative;
    z-index: 2;
}
section.video-banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.btn{
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.scroll .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  
    }
    
    .scroll .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
    }
    
    .scroll .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
    }
    
    .scroll .chevron:before,
    .scroll .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--white-color);
    }
    
    .scroll .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
    }
    
    .scroll .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
    }
    
    @keyframes move {
    25% {
     opacity: 1;
    
    }
    33% {
     opacity: 1;
     transform: translateY(30px);
    }
    67% {
     opacity: 1;
     transform: translateY(40px);
    }
    100% {
     opacity: 0;
     transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
    }

    .scroll .text {
        display: block;
        margin-top: 75px;
        margin-left: -30px;
        font-family: var(--primary-font);
        font-size: var(--f12);
        color: var(--white-color);
        text-transform: uppercase;
        white-space: nowrap;
        opacity: .25;
        animation: pulse 2s linear alternate infinite;
        }
        
        @keyframes pulse {
        to {
         opacity: 1;
        }
        }

        .video-cont .scroll{
            position: absolute;
            bottom: 10px;
            /* display: none; */
            width: 100%;
            display: flex;
            justify-content: center;
           }        
  

           
/* on load pop modal */

.instructions {
    text-align:center;
    font-size:20px;
    margin: 15vh;
  }  
  
  /* //////////////////////////////////////////////////////////////////////////////////////////////
      //   Default Modal Styles   //
  ////////////////////////////////////////////////////////////////////////////////////////////// */
  /*   This is the background overlay   */
  .backgroundOverlay {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      background: #000000;
      opacity: .45;
      filter: alpha(opacity=85);
      -moz-opacity: .85;
      z-index: 101;
      display: none;
  }
  /*   This is the Popup Window   */
  .delayedPopupWindow {
      display: none;
      position: fixed;
      width: auto;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: transparent;
      z-index: 102;
  }
  .delayedPopupWindow .signup-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
  }
  .delayedPopupWindow .signup-box .main-box{
    /* display: flex; */
    background: var(--white-color);
    position: relative;
    z-index: 104;
    max-height: 520px;
  }
  .delayedPopupWindow .signup-box .main-box h6{
    margin-bottom: 0;
    font-family: var(--primary-font);
  }
  .delayedPopupWindow img{
    max-height: 520px;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .delayedPopupWindow .signup-box .signup-form {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.delayedPopupWindow .signup-box .signup-form h2{
    font-size: 34px;
    background-image: var(--main-bg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--primary-font);
    font-weight: 400;
    color: var(--heading-color);
}
.delayedPopupWindow .signup-box .signup-form p{
    font-size: var(--f16);
    color: var(--black-color);
}
.delayedPopupWindow .signup-box .signup-form p{
    margin-top: var(--m25);
}
.delayedPopupWindow .signup-box .signup-form span{
    font-size: var(--f14);
    color: #4a4a4a;
}
.delayedPopupWindow .signup-box .signup-form span a{
    color: var(--btn-color);
    font-family: 'Poppins';
}
.delayedPopupWindow .signup-box .signup-form form{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}
.delayedPopupWindow .signup-box .signup-form form input{
    width: 100%;
    padding: var(--p15);
}
.delayedPopupWindow .signup-box .signup-form form button{
    width: 100%;
    background: var(--main-bg);
    border: none;
    padding: var(--p15);
    color: var(--white-color);
}
  /*   This is the closing button  */
  #btnClose {
      /* width:100%; */
      display: block;
      text-align: right;
      text-decoration: none;
      color: #fff;
      position: absolute;
      top: 0px;
      right: 0px;
      height: 30px;
      width: 30px;
      background-image: var(--main-bg);
      display: flex;
      justify-content: center;
      align-items: center;
      background: #e00000;
      border-radius: 0;
  }
  /*   This is the closing button hover state  */
  #btnClose:hover {
      /* color: #c90c12; */
  }
  /*   This is the description headline and paragraph for the form   */
  #delayedPopup > div.formDescription {
      float: left;
      display: flex;
      width: 44%;
      padding: 1% 3%;
      font-size: 18px;
      color: #666;
      clear: left;
  }
  /*   This is the styling for the form's headline   */
  #delayedPopup > div.formDescription h2 {
      color: #444444;
      font-size: 36px;
      line-height: 40px;
  }
  
  /* 
  ////////// MailChimp Signup Form //////////////////////////////
  */
  
  /*   This is the signup form body  */
  #delayedPopup #mc_embed_signup {
      float: left;
      width: 47%;
      padding: 1%;
      display: flex;
      font-size: 16px;
      color: #666;
      margin-left: 1%;
  }
  /*   This is the styling for the signup form inputs  */
  #delayedPopup #mc-embedded-subscribe-form input {
      width: 95%;
      height: 30px;
      font-size: 18px;
      padding: 3px;
    margin-bottom: 5px;
  }
  /*   This is the styling for the signup form inputs when they are being hovered with the mouse  */
  #delayedPopup #mc-embedded-subscribe-form input:hover {
      border:solid 2px #40c348;
      box-shadow: 0 1px 3px #AAAAAA;
  }
  /*   This is the styling for the signup form inputs when they are focused  */
  #delayedPopup #mc-embedded-subscribe-form input:focus {
      border:solid 2px #40c348;
      box-shadow: none;
  }
  /*   This is the styling for the signup form submit button  */
  #delayedPopup #mc-embedded-subscribe {
      width: 100%!important;
      height: 40px!important;
      margin: 10px auto 0 auto;
      background: #5D9E62;
      border: none;
      color: #fff;
  }
  /*   This is the styling for the signup form submit button hover state  */
  #delayedPopup #mc-embedded-subscribe:hover {
      background: #40c348;
      color: #fff;
      box-shadow:none!important;
      cursor: pointer;
  }

  /* best selling categories */


  /* Portfolio css start */
section.portfolio {
background-image: var(--main-bg);
    padding: var(--p90) var(--p12);
    padding-top: 50px;
    position: relative;
}
section.portfolio .container{
    position: relative;
}

section.portfolio .content-area {
    width: 80%;
    position: sticky;
    top: 150px;
}
section.portfolio .col-6.portfolio-content {
   position: sticky;
    top: 150px;
    /* width: 50%; */
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 35%;
}
section.portfolio .col-6.portfolio-content h2{
    color: var(--white-color);
    margin-bottom: var(--m20);
}
section.portfolio .col-6.portfolio-content p{
    color: var(--white-color);
    margin-bottom: var(--m50);
    font-size: var(--f20);
}
section.portfolio a.main-btn {
    display: block;
    width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}
section.portfolio .col-6.portfolio-img svg {
    /* z-index: -1; */
    position: absolute;
    top: 0;
    left: 0;
    width: 181px;
    height: auto;
    display: none;
}
section.portfolio .col-6.portfolio-img .tag {
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-direction: column;
    transition: .3s ease-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 55px;
    left: 55px;
    z-index: 1;
    color: #dedddd;
    overflow: hidden;
    padding: 10px 15px;
    opacity: 1;
}
section.portfolio .col-6.portfolio-img {
    position: relative;
    width: 65%;
}
section.portfolio .col-6.portfolio-img .tag a.main-bttn {
    height: 50px;
    width: 235px;
}
section.portfolio .col-6.portfolio-img .tag h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-size: 5.5rem;
    z-index: 1;
    position: relative;
    text-align: left;
    margin-bottom: var(--m50);
    font-weight: 700;
    opacity: .68;
}
section.portfolio .col-6.portfolio-img .img-area {
    position: relative;
   border-radius: 50px;
    margin-top: 60px;
    display: block;
    width: 100%;
    position: sticky;
    transition: 1.2s ease-out;
    top: 60px;
}
section.portfolio .col-6.portfolio-img .img-area img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}
section.portfolio .col-6.portfolio-img button.main-btn {
    position: absolute;
    right: 30px;
    bottom: 40px;
}

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}



