/* ===========================================================
   DEFERRED CSS — below-the-fold sections, loaded async
   Combined from: hostingsolutions, whychoosednh, testimonials,
   blogsection, partners, ctabanner
   =========================================================== */

/* ==========================================
HOSTING SOLUTIONS
========================================== */

.hosting-solutions{
    padding:20px 0;
    background:#f8faff;
}

.section-header{
    text-align:center;
    margin-bottom:30px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eef4ff;
    color:#0B5FFF;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    line-height:1.2;
}

.title-line{
    width:70px;
    height:4px;
    background:#0B5FFF;
    border-radius:20px;
    margin:15px auto 0;
}

.hosting-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    gap:25px;
    position:relative;
}

.hosting-card{
    background:#fff;
    border-radius:24px;
    padding:15px 10px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    transition:.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    position:relative;
}

.hosting-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(11,95,255,.15);
}

.hosting-card::after {
    content: "";
    position: absolute;
    display:none;
    top: 40%;
    right: 0px;
    width: 5px;
    height: 30%;
    background: #ff7a00;
    border-radius: 50px;
}

.hosting-icon{
    /*display:none;*/
    width:50px;
    height:50px;
    margin:0 auto 15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef4ff;
    color:#0B5FFF;
    font-size:25px;
}

.hosting-card h3{
    text-align:center;
    color:#071C63;
    font-size:20px;
    margin-bottom:10px;
}

.hosting-card p{
    text-align:center;
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin-bottom:10px;
}

.hosting-divider{
    height:1px;
    background:#edf2ff;
    margin-bottom:5px;
}

.hosting-card ul{
    margin-bottom:10px;
}

.hosting-card li{
    display:flex;
    align-items:center;
    gap:10px;
    /*margin-bottom:10px;*/
    color:#4b587c;
    font-size:14px;
}

.hosting-card li svg{
    color:#0B5FFF;
}

.learn-more{
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#0B5FFF;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.learn-more:hover{
    gap:16px;
}

/* ==========================================
3840px (4K)
========================================== */

@media (min-width:3000px){

    .hosting-solutions{
        padding:50px 0;
    }

    .section-header{
        margin-bottom:40px;
    }

    .section-badge{
        font-size:20px;
        padding:12px 30px;
    }

    .section-header h2{
        font-size:62px;
    }

    .hosting-grid{
        gap:40px;
    }

    .hosting-card{
        padding:25px;
    }

    .hosting-icon{
        width:100px;
        height:100px;
        font-size:45px;
    }

    .hosting-card h3{
        font-size:36px;
    }

    .hosting-card p{
        font-size:20px;
    }

    .hosting-card li{
        font-size:20px;
    }

    .learn-more{
        font-size:20px;
    }
}

/* ==========================================
2560px
========================================== */

@media (min-width:2200px) and (max-width:2999px){

    .section-header h2{
        font-size:56px;
    }

    .hosting-grid{
        gap:35px;
    }

    .hosting-card{
        padding:25px;
    }

    .hosting-icon{
        width:65px;
        height:65px;
        font-size:32px;
    }

    .hosting-card h3{
        font-size:30px;
    }

    .hosting-card p,
    .hosting-card li{
        font-size:18px;
    }
}

/* ==========================================
1920px
========================================== */

@media (min-width:1600px) and (max-width:2199px){

    .section-header h2{
        font-size:48px;
    }

    .hosting-card h3{
        font-size:25px;
    }

    .hosting-card p,
    .hosting-card li{
        font-size:16px;
    }
}

/* ==========================================
1440px
========================================== */

@media (max-width:1440px){

    .hosting-grid{
        gap:22px;
    }

    .section-header h2{
        font-size:40px;
    }
}

/* ==========================================
1366px
========================================== */

@media (max-width:1366px){

    .hosting-grid{
        gap:20px;
    }
    
    .section-header h2{
        font-size:32px;
    }

    .hosting-card{
        padding:20px 15px;
    }

    .hosting-card h3{
        font-size:20px;
    }
}

/* ==========================================
1280px
========================================== */

@media (max-width:1280px){

    .hosting-grid{
        grid-template-columns:repeat(4,1fr);
        gap:18px;
    }
    
    .section-header h2{
        font-size:32px;
    }
    
    .hosting-card h3{
        font-size:20px;
    }

    .hosting-card{
        padding:20px 15px;
    }
}

/* ==========================================
1024px
========================================== */

@media (max-width:1024px){

    .hosting-grid{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .section-header h2{
        font-size:32px;
    }

    .hosting-card h3{
        font-size:20px;
    }
}

/* ==========================================
768px
========================================== */

@media (max-width:768px){

    .hosting-solutions{
        padding:30px 0;
    }

    .section-header{
        margin-bottom:25px;
    }

    .hosting-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-header h2{
        font-size:28px;
    }

    .hosting-card{
        padding:15px 10px;
    }

    .hosting-card h3{
        font-size:20px;
    }
}

/* ==========================================
576px
========================================== */

@media (max-width:576px){

    .hosting-solutions{
        padding:20px 0;
    }

    .section-header h2{
        font-size:26px;
    }

    .hosting-card{
        border-radius:20px;
    }
}

/* ==========================================
480px
========================================== */

@media (max-width:480px){

    .section-header h2{
        font-size:24px;
    }

    .hosting-icon{
        width:30px;
        height:30px;
        font-size:15px;
    }

    .hosting-card h3{
        font-size:18px;
    }

    .hosting-card p,
    .hosting-card li{
        font-size:14px;
    }
}

/* ==========================================
375px
========================================== */

@media (max-width:375px){

    .section-header h2{
        font-size:22px;
    }

    .hosting-card{
        padding:20px 15px;
    }

    .hosting-icon{
        width:30px;
        height:30px;
        font-size:15px;
    }

    .hosting-card h3{
        font-size:17px;
    }
}

/* ==========================================
320px
========================================== */

@media (max-width:320px){

    .section-header h2{
        font-size:20px;
    }

    .hosting-card{
        padding:18px 12px;
    }

    .hosting-icon{
        width:30px;
        height:30px;
        font-size:15px;
    }

    .hosting-card h3{
        font-size:16px;
    }

    .hosting-card p,
    .hosting-card li{
        font-size:13px;
    }

    .learn-more{
        font-size:14px;
    }
}

/* ==========================================
WHY CHOOSE DNH
========================================== */

.why-dnh{
    padding:20px 0;
    background:#fff;
    overflow:hidden;
}

.why-dnh-wrapper{
    display:grid;
    grid-template-columns:1fr 3fr;
    gap:30px;
    align-items:center;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eef4ff;
    color:#0B5FFF;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.title-line{
    width:70px;
    height:4px;
    background:#0B5FFF;
    margin:18px auto 0;
    border-radius:20px;
}

/* ==========================================
SECTION TITLE
========================================== */

.why-section-title{
    text-align:center;
    margin-bottom:20px;
}

.why-section-title h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    line-height:1.2;
    margin:0;
}

/* ==========================================
IMAGE
========================================== */

.why-dnh-image{
    text-align:center;
}

.why-dnh-image img{
    width:100%;
    max-width:500px;
    height:auto;
    margin:auto;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==========================================
GRID
========================================== */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

/* ==========================================
CARD
========================================== */

.why-card{
    /*display:flex;*/
    /*align-items:flex-start;*/
    display:grid;
    align-items:center;
    text-align:center;
    gap:6px;
    padding:10px;
    background:#fff;
    border-radius:16px;
    border:1px solid #dee5fa;
    transition:.35s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(11,95,255,.08);
    border-color:#dbe8ff;
}

.why-icon{
    width:50px;
    height:50px;
    flex-shrink:0;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef4ff;
    color:#0B5FFF;
    font-size:22px;
    margin:0 auto;
}

.why-card h3{
    color:#071C63;
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

.why-card p{
    color:#667085;
    font-size:13px;
    line-height:1.7;
    margin:0;
}

/* ==========================================
3840px (4K)
========================================== */

@media (min-width:3000px){

    .why-dnh{
        padding:50px 0;
    }

    .why-dnh-wrapper{
        gap:120px;
    }

    .why-section-title{
        margin-bottom:50px;
    }

    .why-section-title h2{
        font-size:62px;
    }

    .section-badge{
        font-size:20px;
        padding:12px 30px;
    }

    .why-dnh-image img{
        max-width:700px;
    }

    .why-grid{
        gap:30px;
    }

    .why-card{
        padding:35px;
        border-radius:24px;
    }

    .why-icon{
        width:70px;
        height:70px;
        font-size:30px;
    }

    .why-card h3{
        font-size:32px;
    }

    .why-card p{
        font-size:20px;
    }
}

/* ==========================================
2560px
========================================== */

@media (min-width:2200px) and (max-width:2999px){

    .why-dnh{
        padding:50px 0;
    }

    .why-section-title h2{
        font-size:56px;
    }

    .why-dnh-image img{
        max-width:620px;
    }

    .why-card{
        padding:28px;
    }

    .why-icon{
        width:65px;
        height:65px;
        font-size:25px;
    }

    .why-card h3{
        font-size:26px;
    }

    .why-card p{
        font-size:18px;
    }
}

/* ==========================================
1920px
========================================== */

@media (min-width:1600px) and (max-width:2199px){

    .why-section-title h2{
        font-size:48px;
    }

    .why-dnh-image img{
        max-width:620px;
    }

    .why-card h3{
        font-size:20px;
    }

    .why-card p{
        font-size:15px;
    }
}

/* ==========================================
1440px
========================================== */

@media (max-width:1440px){

    .why-dnh-wrapper{
        gap:60px;
    }

    .why-section-title h2{
        font-size:40px;
    }
}

/* ==========================================
1366px
========================================== */

@media (max-width:1366px){

    .why-section-title h2{
        font-size:36px;
    }

    .why-card{
        padding:14px;
    }
    
    .why-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* ==========================================
1280px
========================================== */

@media (max-width:1280px){

    .why-dnh-wrapper{
        gap:50px;
    }
    
    .why-card{
        padding:12px;
    }
    
    .why-section-title h2{
        font-size:32px;
    }

    .why-grid{
        gap:10px;
    }

    .why-card h3{
        font-size:17px;
    }
    
    .why-card{
        text-align:center;
        margin:0 auto;
    }
    
    .why-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* ==========================================
1024px
========================================== */

@media (max-width:1024px){

    .why-dnh{
        padding:30px 0;
    }

    .why-dnh-wrapper{
        grid-template-columns:1fr 2fr;
        gap:50px;
        text-align:center;
    }

    .why-dnh-image{
        order:1;
    }

    .why-dnh-content{
        order:2;
    }

    .why-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .why-card{
        text-align:center;
        margin:0 auto;
    }

    .why-section-title h2{
        font-size:30px;
    }
}

/* ==========================================
768px
========================================== */

@media (max-width:768px){

    .why-dnh{
        padding:20px 0;
    }

    .why-dnh-wrapper{
        grid-template-columns:1fr;
        gap:25px;
    }

    .why-dnh-image{
        display:none;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .why-card{
        min-height:200px;
        padding:18px 15px;
    }

    .why-card h3{
        font-size:16px;
        min-height:44px;
    }

    .why-card p{
        font-size:13px;
    }
    
    .why-section-title h2{
        font-size:28px;
    }
}

/* ==========================================
576px
========================================== */

@media (max-width:576px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .why-card{
        min-height:185px;
        padding:15px 12px;
    }

    .why-icon{
        width:50px;
        height:50px;
    }

    .why-card h3{
        font-size:15px;
        min-height:40px;
    }

    .why-card p{
        font-size:12px;
        line-height:1.5;
    }
    
    .why-section-title h2{
        font-size:24px;
    }
}

/* ==========================================
480px
========================================== */

@media (max-width:480px){

    .why-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .why-card{
        min-height:175px;
        padding:14px 10px;
    }

    .why-icon{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .why-card h3{
        font-size:14px;
        min-height:38px;
    }

    .why-card p{
        font-size:11px;
    }
    
    .why-section-title h2{
        font-size:24px;
    }
}

/* ==========================================
375px
========================================== */

@media (max-width:375px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        min-height:auto;
        padding:18px;
    }

    .why-card h3{
        min-height:auto;
    }

    .why-card p{
        flex:none;
    }
    .why-section-title h2{
        font-size:22px;
    }
}
/* ==========================================
320px
========================================== */

@media (max-width:320px){

    .why-section-title h2{
        font-size:20px;
    }

    .why-card{
        padding:12px;
    }

    .why-icon{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .why-card h3{
        font-size:14px;
    }

    .why-card p{
        font-size:11px;
        line-height:1.6;
    }
    
    .why-grid{
        grid-template-columns:1fr;
        gap:14px;
    }
}

/* ======================================
TESTIMONIAL SECTION
====================================== */

.testimonials{

    padding:30px 0;

    background:
    radial-gradient(circle at 8% 20%,#d8e8ff 0%,transparent 18%),
    radial-gradient(circle at 92% 20%,#d8e8ff 0%,transparent 18%),
    #f8fbff;

    overflow:hidden;

}


/* ======================================
HEADER
====================================== */


.section-title{

    text-align:center;

    margin-bottom:30px;

}


.testimonial-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:7px 18px;

    border:1px solid #ff7a00;

    border-radius:30px;

    background:#fff;

    color:#ff7a00;

    font-size:13px;

    font-weight:800;

}


.section-title h2{

    font-size:36px;

    font-weight:900;

    color:#071C63;

}


.section-title h2 span{

    color:#ff7a00;

}


.section-title p{

    max-width:650px;

    margin:10px auto;

    color:#667085;

}


/* ======================================
SLIDER
====================================== */


.testimonial-slider-wrapper{

    position:relative;

    max-width:1200px;

    margin:auto;

}


.testimonial-slider{

    padding:10px 24px 10px;

    overflow-x:hidden !important;

    overflow-y:visible !important;

}


.swiper-wrapper{

    align-items:center;

}


.swiper-slide{

    height:auto;

    overflow:visible;

}


/* ======================================
CARD
====================================== */


.testimonial-card{

    height:330px;

    background:#fff;

    border-radius:20px;

    padding:70px 35px 25px;

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    overflow:visible;

    box-shadow:
    0 18px 45px rgba(7,28,99,.13);

}


/* ACTIVE CARD */


.swiper-slide-active .testimonial-card{

    height:350px;


    background:
    linear-gradient(
        120deg,
        rgba(7,28,99,.88),
        rgba(11,95,255,.88)
    );


    border-right:6px solid #ff7a00;

    border-bottom:6px solid #ff7a00;

}


/* ======================================
QUOTE ICON
====================================== */


.quote-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    position:absolute;

    top:35px;

    left:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#006cff;

    font-size:24px;

    z-index:20;

    box-shadow:
    0 15px 35px rgba(7,28,99,.15);

}


.swiper-slide-active .quote-icon{

    width:55px;

    height:55px;

    top:35px;

    left:52px;

    transform:translateX(-50%);

    color:#ff7a00;

}



/* ======================================
STARS
====================================== */


.stars{

    position:absolute;

    top:70px;

    right:35px;

    color:#ffbf00;

    font-size:15px;

}



/* ======================================
CONTENT
====================================== */


.review{

    margin-top:35px;

    color:#263b66;

    font-size:15px;

    line-height:1.7;

    overflow:hidden;

    display:-webkit-box;

    -webkit-line-clamp:4;

    -webkit-box-orient:vertical;

    position:relative;

    z-index:2;

}


.swiper-slide-active .review{

    color:#fff;

}



.client-info{

    display:flex;

    align-items:center;

    gap:15px;

    padding-top:20px;

    border-top:1px solid #d9e4f5;

    position:relative;

    z-index:2;

}


.client-info img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #edf4ff;

}


.name{

    font-size:16px;

    font-weight:800;

    color:#071C63;

}


.client-info span{

    color:#667085;

    font-size:14px;

}


.swiper-slide-active .name,
.swiper-slide-active span{

    color:#fff;

}



/* BIG QUOTE */


.testimonial-card::after{

    content:"”";

    position:absolute;

    right:25px;

    bottom:10px;

    font-size:100px;

    color:rgba(0,95,255,.10);

}


.swiper-slide-active .testimonial-card::after{

    color:rgba(255,255,255,.18);

}



/* ======================================
ARROWS
====================================== */


.testimonial-prev,
.testimonial-next{

    width:52px;

    height:52px;

    border-radius:50%;

    border:none;

    background:#fff;

    color:#006cff;

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    z-index:30;

    box-shadow:
    0 10px 35px rgba(7,28,99,.18);

}


.testimonial-prev{

    left:-30px;

}


.testimonial-next{

    right:-30px;

}



/* PAGINATION */


.testimonial-slider .swiper-pagination{

    position:static!important;

    margin-top:22px;

}


.swiper-pagination-bullet{

    width:8px;

    height:8px;

    opacity:1;

}


.swiper-pagination-bullet-active{

    width:25px;

    border-radius:20px;

}



/* =================================================
RESPONSIVE BREAKPOINTS
================================================= */


/* 3840px */

@media(min-width:3000px){

    .testimonial-slider-wrapper{
        max-width:1500px;
    }

    .testimonial-card{
        height:380px;
    }

    .swiper-slide-active .testimonial-card{
        height:410px;
    }

}



/* 2560px */

@media(max-width:2560px){

    .testimonial-slider-wrapper{
        max-width:1350px;
    }

}



/* 1920px */

@media(max-width:1920px){

    .testimonial-slider-wrapper{
        max-width:1200px;
    }

}



/* 1440px */

@media(max-width:1440px){

    .testimonial-slider-wrapper{
        max-width:1150px;
    }
    
    .section-title h2{

        font-size:36px;

    }

}



/* 1366px */

@media(max-width:1366px){

    .testimonial-card{

        height:320px;

    }


    .swiper-slide-active .testimonial-card{

        height:340px;

    }
    
    .section-title h2{

        font-size:32px;

    }

}



/* 1280px */

@media(max-width:1280px){

    .testimonial-slider-wrapper{

        max-width:1050px;

    }
    
    .section-title h2{
        font-size:32px;
    }

}



/* 1024px */

@media(max-width:1024px){

    .testimonial-slider-wrapper{

        max-width:900px;

    }


    .testimonial-card{

        padding:65px 25px 25px;

    }
    
    .section-title h2{
        font-size:30px;
    }

}



/* 768px TABLET */

@media(max-width:768px){

    .section-title h2{

        font-size:28px;

    }


    .testimonial-card,
    .swiper-slide-active .testimonial-card{

        height:auto;

        min-height:330px;

    }
    
    .testimonial-prev, .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }


    .testimonial-prev{

        left:-15px;

    }


    .testimonial-next{

        right:-15px;

    }

}



/* 576px */

@media(max-width:576px){


    .testimonial-slider{

        padding:60px 15px;

    }


    .section-title h2{

        font-size:24px;

    }


    .review{

        font-size:14px;

    }
    
    .testimonial-prev, .testimonial-next {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }


    .testimonial-prev{

        left:-10px;

    }


    .testimonial-next{

        right:-10px;

    }

}



/* 480px */

@media(max-width:480px){

    .testimonial-card{

        padding:65px 20px 25px;

    }


    .client-info img{

        width:50px;

        height:50px;

    }
    
    .section-title h2{
        font-size:24px;
    }

}



/* 375px */

@media(max-width:375px){

    .section-title h2{

        font-size:22px;

    }


    .testimonial-card{

        min-height:300px;

    }

}


/* 320px */

@media(max-width:320px){

    .section-title h2{

        font-size:20px;

    }


    .testimonial-card{

        padding:60px 15px 20px;

    }


    .stars{

        right:20px;

    }

}

/* ==========================================
BLOG SECTION
========================================== */

.blog-section{
    padding:30px 0;
    background:#fff;
}

.section-heading{
    text-align:center;
    margin-bottom:30px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eef4ff;
    color:#0B5FFF;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    line-height:1.2;
    margin-bottom:0;
}

.title-line{
    width:70px;
    height:4px;
    background:#0B5FFF;
    margin:18px auto 0;
    border-radius:20px;
}

/* ==========================================
BLOG GRID
========================================== */

.blog-grid-home{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* ==========================================
BLOG CARD
========================================== */

.blog-card-home{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-card-home:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(11,95,255,.12);
}

.blog-image-home{
    /*height:220px;*/
    overflow:hidden;
}

.blog-image-home img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.blog-card-home:hover .blog-image-home img{
    transform:scale(1.0);
}

/* ==========================================
CONTENT
========================================== */

.blog-content-home{
    padding:10px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-meta-home{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.blog-category-home{
    background:#eef4ff;
    color:#0B5FFF;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.blog-date-home{
    display:flex;
    align-items:center;
    gap:6px;
    color:#666;
    font-size:13px;
}

.blog-date-home i{
    /*color:#0B5FFF;*/
    color:#ff7a00;
}

.blog-content-home h3{
    color:#071C63;
    font-size:16px;
    font-weight:700;
    line-height:1.5;
    /*margin-bottom:12px;*/
    min-height:40px;
}

.blog-content-home p{
    font-size:14px;
}

.blog-readmore-home{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#0B5FFF;
    font-weight:700;
    text-decoration:none;
    margin-top:auto;
    transition:.3s ease;
}

.blog-readmore-home:hover{
    /*color:#071C63;*/
    color:#ff7a00;
    gap:12px;
}

.blog-readmore-home i{
    font-size:13px;
}

/* ==========================================
FOOTER
========================================== */

.blog-footer{
    margin-top:40px;
    text-align:center;
}

.view-all-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0B5FFF;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    transition:.3s ease;
}

.view-all-btn:hover{
    gap:15px;
    /*color:#071C63;*/
    color:#ff7a00;
}

/* ==========================================
3840px (4K)
========================================== */

@media (min-width:3000px){

    .blog-section{
        padding:100px 0;
    }

    .section-heading{
        margin-bottom:80px;
    }

    .section-heading h2{
        font-size:62px;
    }

    .section-badge{
        font-size:20px;
        padding:12px 30px;
    }

    .blog-grid-home{
        gap:40px;
    }

    .blog-card-home{
        border-radius:30px;
    }

    /*.blog-image-home{*/
    /*    height:420px;*/
    /*}*/

    .blog-content-home{
        padding:40px;
    }

    .blog-category-home{
        font-size:18px;
        padding:10px 20px;
    }

    .blog-date-home{
        font-size:18px;
    }

    .blog-content-home h3{
        font-size:34px;
        min-height:160px;
    }

    .blog-readmore-home{
        font-size:20px;
    }

    .view-all-btn{
        font-size:24px;
    }
}

/* ==========================================
2560px
========================================== */

@media (min-width:2200px) and (max-width:2999px){

    .section-heading h2{
        font-size:56px;
    }

    /*.blog-image-home{*/
    /*    height:320px;*/
    /*}*/

    .blog-content-home{
        padding:32px;
    }

    .blog-content-home h3{
        font-size:28px;
        min-height:100px;
    }

    .blog-date-home,
    .blog-category-home{
        font-size:16px;
    }
}

/* ==========================================
1920px
========================================== */

@media (min-width:1600px) and (max-width:2199px){

    .section-heading h2{
        font-size:48px;
    }

    /*.blog-image-home{*/
    /*    height:260px;*/
    /*}*/

    .blog-content-home h3{
        font-size:22px;
    }
}

/* ==========================================
1440px
========================================== */

@media (max-width:1440px){

    .section-heading h2{
        font-size:40px;
    }
    
    .blog-content-home p{
        font-size:14px;
    }
}

/* ==========================================
1366px
========================================== */

@media (max-width:1366px){
    
    .blog-section{
        padding:20px 0;
    }

    .section-heading h2{
        font-size:32px;
    }
    
    .blog-content-home p{
        font-size:14px;
    }

    .blog-grid-home{
        gap:22px;
    }
}

/* ==========================================
1280px
========================================== */

@media (max-width:1280px){

    .blog-grid-home{
        gap:20px;
    }
    
    .blog-section{
        padding:20px 0;
    }
    
    .section-heading h2{
        font-size:32px;
    }

    .blog-content-home{
        padding:15px;
    }
    
    .blog-content-home p{
        font-size:14px;
    }  
}

/* ==========================================
1024px
========================================== */

@media (max-width:1024px){

    .blog-grid-home{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .blog-content-home h3{
        min-height:30px;
    }
    
    .blog-content-home p{
        font-size:14px;
    }
    
    .section-heading h2{
        font-size:30px;
    }
}

/* ==========================================
768px
========================================== */

@media (max-width:768px){

    .blog-section{
        padding:20px 0;
    }

    .section-heading{
        margin-bottom:35px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .blog-grid-home{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    /*.blog-image-home{*/
    /*    height:180px;*/
    /*}*/

    .blog-content-home{
        padding:10px;
    }

    .blog-content-home h3{
        font-size:16px;
        min-height:auto;
    }
    
    .blog-content-home p{
        font-size:14px;
    }  
}

/* ==========================================
576px
========================================== */

@media (max-width:576px){

    .blog-grid-home{
        grid-template-columns:1fr;
    }
    
    .blog-section{
        padding:20px 0;
    }

    .section-heading h2{
        font-size:24px;
    }
    
    .blog-content-home p{
        font-size:14px;
    }  

    /*.blog-image-home{*/
    /*    height:220px;*/
    /*}*/
}

/* ==========================================
480px
========================================== */

@media (max-width:480px){

    .blog-section{
        padding:20px 0;
    }

    .section-heading{
        margin-bottom:25px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .blog-content-home{
        padding:10px;
    }

    .blog-meta-home{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .blog-content-home h3{
        font-size:16px;
        min-height:auto;
    }
    
    .blog-content-home p{
        font-size:14px;
    }  

    .view-all-btn{
        font-size:16px;
    }
}

/* ==========================================
375px
========================================== */

@media (max-width:375px){

    .section-heading h2{
        font-size:22px;
    }
    
    .blog-section{
        padding:20px 0;
    }

    /*.blog-image-home{*/
    /*    height:200px;*/
    /*}*/

    .blog-content-home{
        padding:10px;
    }

    .blog-content-home h3{
        font-size:16px;
    }
    
    .blog-content-home p{
        font-size:14px;
    }  
}

/* ==========================================
320px
========================================== */

@media (max-width:320px){

    .section-heading h2{
        font-size:20px;
    }
    
    .blog-section{
        padding:20px 0;
    }

    /*.blog-image-home{*/
    /*    height:180px;*/
    /*}*/

    .blog-content-home{
        padding:10px;
    }

    .blog-content-home h3{
        font-size:16px;
    }

    .blog-date-home{
        font-size:12px;
    }

    .blog-category-home{
        font-size:11px;
    }

    .view-all-btn{
        font-size:14px;
    }
}

/*=========================================
PARTNERS SECTION
=========================================*/

.partners{
    padding:30px 0;
    background:#f8fbff;
    position:relative;
    text-align:center;
}

.partners-title{
    text-align:center;
    margin-bottom:10px;
}

.partners-title h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    margin-bottom:15px;
}

.partners-title p{
    max-width:760px;
    margin:0 auto;
    font-size:16px;
    color:#667085;
    line-height:1.8;
}

.title-line{
    width:90px;
    height:4px;
    background:#0B5FFF;
    border-radius:50px;
    margin:18px auto;
}

/*=========================================
Tabs
=========================================*/

.partner-tabs{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:5px;

    margin:18px auto;

    padding:15px 10px;

    width:fit-content;

    background:#EAF2FF;

    border-radius:20px;

}

.partner-tab{

    border:none;

    background:transparent;
    border: 1px solid #071c63;

    color:#071C63;

    padding:10px;

    border-radius:40px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    transition:.35s;

    display:flex;

    align-items:center;

    gap:4px;

}

.partner-tab i{

    font-size:16px;

}

.partner-tab:hover{

    background:#0B5FFF;

    color:#fff;

}

.partner-tab.active{

    background:#0B5FFF;

    color:#fff;

    box-shadow:0 12px 30px rgba(11,95,255,.25);

}

/*=========================================
Content
=========================================*/

.partner-content{

    display:none;

    animation:partnerFade .35s ease;

}

.partner-content.active{

    display:block;

}

/*=========================================
Grid
=========================================*/

.partner-grid{

    /*background:#EDF5FF;*/

    border-radius:24px;

    padding:25px;
    
    display:inline-flex;
    
    /*display:grid;*/

    /*grid-template-columns:repeat(6,1fr);*/

    gap:30px;

    /*border:1px solid #DCE9FF;*/

}

/*=========================================
Cards
=========================================*/

.partner-card{

    background:#fff;

    border-radius:18px;

    /*height:150px;*/

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:10px;

    transition:.35s;

    border:1px solid #E6EDF8;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.partner-card:hover{

    transform:translateY(-8px);

    border-color:#0B5FFF;

    box-shadow:0 20px 40px rgba(11,95,255,.18);

}

.partner-card img{

    max-width:130px;

    max-height:60px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s;

}

.partner-card:hover img{

    transform:scale(1.06);

}

.partner-card h5{

    margin-top:18px;

    font-size:18px;

    font-weight:700;

    color:#071C63;

    text-align:center;

}

/*=========================================
Animation
=========================================*/

@keyframes partnerFade{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
3840px
=========================================*/

@media(min-width:3000px){

    .partners{

        padding:70px 0;

    }

    .partners .container{

        max-width:2400px;

    }

    .partners-title h2{

        font-size:62px;

    }

    .partners-title p{

        font-size:26px;

        max-width:1200px;

    }

    .partner-tab{

        font-size:24px;

        padding:20px;

    }

    .partner-grid{

        /*grid-template-columns:repeat(6,1fr);*/
        
       

        gap:40px;

        padding:30px;

    }

    .partner-card{

        height:200px;

    }

    .partner-card img{

        max-width:200px;

        max-height:90px;

    }

}

/*=========================================
2560px
=========================================*/

@media(min-width:2200px) and (max-width:2999px){

    .partners .container{

        max-width:1800px;

    }

    .partner-grid{

        /*grid-template-columns:repeat(6,1fr);*/
        

    }

}

/*=========================================
1920px
=========================================*/

@media(min-width:1600px) and (max-width:2199px){

    .partners .container{

        max-width:1500px;

    }

}

/*=========================================
1440px
=========================================*/

@media(max-width:1440px){
    
    .partners .container{

        max-width:1240px;

    }
    
    .partners-title h2{

        font-size:40px;

    }

    .partner-grid{

        /*grid-template-columns:repeat(6,1fr);*/

    }

}

/*=========================================
1366px
=========================================*/

@media(max-width:1366px){
    
    .partners .container{

        max-width:1240px;

    }
    
    .partners{
        padding:20px 0;
    }
    .partners-title h2{

        font-size:32px;

    }
    .partner-tab{
        padding: 7px;
        gap: 4px;
    }

    .partner-grid{

        /*grid-template-columns:repeat(6,1fr);*/

    }

}

/*=========================================
1280px
=========================================*/

@media(max-width:1280px){
    
    .partners .container{

        max-width:1180px;

    }
    
    .partners{
        padding:20px 0;
    }
    
    .partners-title h2{
        font-size:32px;
    }
    
    .partner-tab{
        padding: 7px;
        gap: 4px;
    }
    
    .partner-grid{

        /*grid-template-columns:repeat(6,1fr);*/
        padding: 15px;

    }

    .partner-grid{

        gap:20px;

    }

}

/*=========================================
1024px
=========================================*/

@media(max-width:1024px){
    
    .partners .container{

        max-width:960px;

    }
    
    .partners-title h2{

        font-size:30px;

    }

    .partner-grid{

        grid-template-columns:repeat(3,1fr);
        display:grid;

        padding:30px;

    }

}

/*=========================================
768px
=========================================*/

@media(max-width:768px){

    .partners{

        padding:40px 0;

    }

    .partners-title h2{

        font-size:28px;

    }

    .partner-tabs{

        width:100%;

        overflow-x:auto;

        justify-content:flex-start;

        flex-wrap:nowrap;

        scrollbar-width:none;

    }

    .partner-tabs::-webkit-scrollbar{

        display:none;

    }

    .partner-tab{

        white-space:nowrap;

        flex-shrink:0;

    }

    .partner-grid{

        grid-template-columns:repeat(3,1fr);
        display:grid;
        padding:25px;

    }

}

/*=========================================
576px
=========================================*/

@media(max-width:576px){

    .partner-grid{

        grid-template-columns:repeat(2,1fr);
        display:grid;
        gap:15px;

        padding:20px;

    }
    
    .partners-title h2{
        font-size:24px;
    }

    .partner-card{

        height:120px;

    }

    .partner-card img{

        max-width:95px;

    }

}

/*=========================================
480px
=========================================*/

@media(max-width:480px){

    .partners-title h2{

        font-size:24px;

    }

    .partners-title p{

        font-size:15px;

    }
    
    .partner-grid{

        grid-template-columns: 1fr 1fr;
        display:grid;
        
    }

    .partner-tab{

        font-size:14px;

        padding:10px;

    }

}

/*=========================================
375px
=========================================*/

@media(max-width:375px){

    .partner-grid{

        grid-template-columns:1fr 1fr;
        display:grid;
    }

    .partner-card{

        height:110px;

    }
    
    .partners-title h2{
        font-size:22px;
    }

}

/*=========================================
320px
=========================================*/

@media(max-width:320px){

    .partners-title h2{

        font-size:20px;

    }

    .partner-grid{

        grid-template-columns:1fr;
        display:grid;
    }

    .partner-card{

        height:120px;

    }

}

/* ==========================================
   CTA SECTION
========================================== */

.cta-banner{
    padding:30px 0;
    position:relative;
    overflow:hidden;
}

/* ==========================================
   BACKGROUND
========================================== */

.cta-banner::before{
    content:"";
    position:absolute;
    inset:0;

    /*background:*/
    /*linear-gradient(*/
    /*    rgba(7,28,99,.88),*/
    /*    rgba(11,95,255,.88)*/
    /*),*/
    /*url("../images/cta-bg.webp");*/

    background-size:cover;
    background-position:center;
    z-index:1;
}

.banner-cta-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,.12),
        transparent 40%
    );

    z-index:2;
}

/* ==========================================
   WRAPPER
========================================== */

.banner-cta-wrapper{
    position:relative;
    z-index:5;

    display:grid;
    grid-template-columns:1.5fr .8fr;

    gap:60px;
    align-items:center;

    padding:20px;

    border-radius:30px;

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    /*background:rgba(255,255,255,.05);*/
    background:
    linear-gradient(
        rgba(7,28,99,.88),
        rgba(11,95,255,.88)
    ),
    url("../images/cta-bg.webp");

    border:1px solid rgba(255,255,255,.08);
}

/* ==========================================
   LEFT CONTENT
========================================== */

.banner-cta-content h2{
    color:#fff;
    font-size:28px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
}

.banner-cta-content p{
    color:rgba(255,255,255,.85);
    font-size:14px;
    line-height:1.8;
    max-width:700px;
    margin-bottom:25px;
}

/* ==========================================
   BUTTONS
========================================== */

.banner-cta-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.banner-cta-primary-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
    padding:10px 20px;

    background:#fff;
    color:#071C63;

    border-radius:12px;

    font-weight:700;
    text-decoration:none;

    transition:.3s ease;
}

.banner-cta-primary-btn:hover{
    transform:translateY(-4px);
}

.banner-cta-secondary-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
    padding:10px 20px;

    border-radius:12px;

    color:#fff;
    text-decoration:none;

    border:1px solid rgba(255,255,255,.25);

    transition:.3s ease;
}

.banner-cta-secondary-btn:hover{
    background:rgba(255,255,255,.08);
}

/* ==========================================
   CONTACT CARD
========================================== */

.banner-cta-contact-card{
    padding:15px;

    border-radius:24px;
    text-align:center;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.banner-cta-contact-card h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.banner-cta-contact-card a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    color:#fff;
    text-decoration:none;

    font-size:18px;
    font-weight:800;

    margin-bottom:15px;
}

.banner-cta-contact-card p{
    color:rgba(255,255,255,.85);
    font-size:15px;
    line-height:1.7;
}

/* ==========================================
   3840px (4K)
========================================== */

@media (min-width:3000px){

    .cta-banner{
        padding:30px 0;
    }

    .banner-cta-wrapper{
        gap:120px;
        padding:50px;
        border-radius:40px;
    }

    .banner-cta-content h2{
        font-size:42px;
    }

    .banner-cta-content p{
        font-size:20px;
        max-width:1100px;
    }

    .banner-cta-primary-btn,
    .banner-cta-secondary-btn{
        font-size:20px;
        padding:20px 40px;
    }

    .banner-cta-contact-card{
        padding:45px;
    }

    .banner-cta-contact-card h3{
        font-size:38px;
    }

    .banner-cta-contact-card a{
        font-size:34px;
    }

    .banner-cta-contact-card p{
        font-size:22px;
    }
}

/* ==========================================
   2560px
========================================== */

@media (min-width:2200px) and (max-width:2999px){

    .cta-banner{
        padding:30px 0;
    }

    .banner-cta-wrapper{
        gap:90px;
        padding:50px;
    }

    .banner-cta-content h2{
        font-size:36px;
    }

    .banner-cta-content p{
        font-size:20px;
        max-width:950px;
    }

    .banner-cta-primary-btn,
    .banner-cta-secondary-btn{
        font-size:16px;
        padding:18px 34px;
    }

    .banner-cta-contact-card h3{
        font-size:30px;
    }

    .banner-cta-contact-card a{
        font-size:28px;
    }
}

/* ==========================================
   1920px
========================================== */

@media (min-width:1600px) and (max-width:2199px){

    .banner-cta-content h2{
        font-size:36px;
    }

    .banner-cta-content p{
        font-size:20px;
    }

    .banner-cta-wrapper{
        gap:70px;
    }
}

/* ==========================================
   1440px
========================================== */

@media (max-width:1440px){

    .banner-cta-content h2{
        font-size:30px;
    }

    .banner-cta-wrapper{
        gap:50px;
    }
}

/* ==========================================
   1366px
========================================== */

@media (max-width:1366px){

    .banner-cta-content h2{
        font-size:28px;
    }

    .banner-cta-content p{
        font-size:16px;
    }
}

/* ==========================================
   1280px
========================================== */

@media (max-width:1280px){

    .banner-cta-wrapper{
        gap:40px;
        padding:20px;
    }

    .banner-cta-content h2{
        font-size:26px;
    }
}

/* ==========================================
   1024px
========================================== */

@media (max-width:1024px){

    .banner-cta-wrapper{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .banner-cta-content h2{
        font-size:24px;
    }

    .banner-cta-content p{
        margin:auto auto 30px;
    }

    .banner-cta-buttons{
        justify-content:center;
    }

    .banner-cta-contact-card{
        max-width:500px;
        margin:auto;
    }
}

/* ==========================================
   768px
========================================== */

@media (max-width:768px){

    .cta-banner{
        padding:10px 0;
    }

    .banner-cta-wrapper{
        padding:30px 20px;
        border-radius:22px;
    }

    .banner-cta-content h2{
        font-size:20px;
    }

    .banner-cta-content p{
        font-size:14px;
    }

    .banner-cta-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .banner-cta-primary-btn,
    .banner-cta-secondary-btn{
        width:100%;
        padding:14px;
        font-size:14px;
    }
}

/* ==========================================
   576px
========================================== */

@media (max-width:576px){

    .cta-banner{
        padding:10px 0;
    }

    .banner-cta-content h2{
        font-size:20px;
    }

    .banner-cta-content p{
        font-size:14px;
    }

    .banner-cta-wrapper{
        padding:25px 18px;
    }
}

/* ==========================================
   480px
========================================== */

@media (max-width:480px){

    .banner-cta-content h2{
        font-size:20px;
    }

    .banner-cta-buttons{
        grid-template-columns:1fr;
    }

    .banner-cta-contact-card{
        padding:22px;
    }

    .banner-cta-contact-card h3{
        font-size:18px;
    }

    .banner-cta-contact-card a{
        font-size:16px;
        flex-wrap:wrap;
    }
}

/* ==========================================
   375px
========================================== */

@media (max-width:375px){

    .banner-cta-wrapper{
        padding:20px 15px;
    }

    .banner-cta-content h2{
        font-size:18px;
    }

    .banner-cta-content p{
        font-size:13px;
    }

    .banner-cta-primary-btn,
    .banner-cta-secondary-btn{
        font-size:13px;
        padding:12px;
    }

    .banner-cta-contact-card a{
        font-size:15px;
    }
}

/* ==========================================
   320px
========================================== */

@media (max-width:320px){

    .banner-cta-content h2{
        font-size:22px;
    }

    .banner-cta-content p{
        font-size:14px;
        line-height:1.7;
    }

    .banner-cta-wrapper{
        padding:18px 12px;
    }

    .banner-cta-primary-btn,
    .banner-cta-secondary-btn{
        font-size:12px;
        padding:10px;
    }

    .banner-cta-contact-card{
        padding:18px;
    }

    .banner-cta-contact-card h3{
        font-size:16px;
    }

    .banner-cta-contact-card a{
        font-size:14px;
    }

    .banner-cta-contact-card p{
        font-size:12px;
    }
}