/*logp_iumgae */
.pc-brand img {
	max-width: 60%!important;
	height: auto;
}
.pc-hero-visuals{
    position:relative;
    width:600px;
    height:600px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
	z-index:1;
}
/* Product Image */
.product-image{
    position: relative;
    overflow: hidden;   /* Hides the bottom part of the circles */
    display: flex;
    justify-content: center;
    align-items: center;
	z-index:1;
}
/* Background Circles */
.circles {
    position: absolute;
    border-radius: 50%;
    border-top: 3px solid rgba(50,110,255,.12);
    border-right: 3px solid rgba(50,110,255,.12);
    border-bottom: none;
    left: 50%;
    top: 42%;   
    transform: translate(-50%, -50%) rotate(-47deg);
    z-index: -3;
}
.circle1{
    width: 500px;
    height: 500px;
	border-bottom: none;
}
.circle2{
    width: 400px;
    height: 400px;
    border-color: rgba(50,110,255,.20);
	border-bottom: none;
}
.circle3{
    width: 300px;
    height: 300px;
	border-bottom: none;
}
 .orbits{
    position:absolute;
    top:50%;
    left:50%;
    transform-origin:center;
    animation:rotateOrbits linear infinite;
	z-index:-1;
}
.orbit-1{
    width:400px;
    height:400px;
    margin-left:-210px;
    margin-top:-210px;
    animation-duration:15s;
}
.orbit-2{
    width:480px;
    height:480px;
    margin-left:-250px;
    margin-top:-250px;
    animation-duration:20s;
    animation-direction:reverse;
}
.orbit-3{
    width:380px;
    height:380px;
    margin-left:-210px;
    margin-top:-210px;
    animation-duration:25s;
}
@keyframes rotateOrbits{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.pc-hero-pills{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    color:#034bc3;
    padding:10px 18px;
    border-radius:40px;
    font-weight:600;
    font-size:15px;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    animation:counterRotate linear infinite;
}
.orbit-1 .pc-hero-pills{
    animation-duration:15s;
}
.orbit-2 .pc-hero-pills{
    animation-duration:20s;
    animation-direction:reverse;
}
.orbit-3 .pc-hero-pills{
    animation-duration:25s;
}
@keyframes counterRotate{
    from{
        transform:translateX(-50%) rotate(0deg);
    }
    to{
        transform:translateX(-50%) rotate(-360deg);
    }
}
Icons 
.pc-hero-pills i{
    color:#034bc3;
    font-size:18px;
}/* Responsive Only */
/* Mobile */
/* Mobile Hero */
@media (max-width: 768px) {

    .pc-hero {
        width: 100%;
        min-height: auto;
        overflow: hidden;
        padding: 18px 14px 25px;
    }

    .pc-hero-inner {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Main Heading */
    .pc-hero-content {
        width: 100%;
        text-align: center;
    }

    .pc-hero-content h1 {
        width: 100%;
        margin: 0 auto;
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.08;
        text-align: center;
    }

    .pc-hero-content p {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    /* Enquiry and Download buttons */
    .pc-hero-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1.12fr;
        gap: 10px;
        margin-top: 22px;
    }

    .pc-hero-buttons a {
        min-height: 58px;
        padding: 10px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }

    /* Certification cards */
    .pc-hero-features {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .pc-hero-feature {
        min-width: 0;
        min-height: 82px;
        padding: 12px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: left;
    }

    .pc-hero-feature img,
    .pc-hero-feature i,
    .pc-hero-feature svg {
        flex: 0 0 auto;
        width: 34px;
        max-width: 34px;
        height: auto;
    }

    .pc-hero-feature h3 {
        font-size: 15px;
        line-height: 1.25;
        margin: 0 0 3px;
    }

    .pc-hero-feature p {
        font-size: 13px;
        line-height: 1.3;
        margin: 0;
    }

    /* Product visual section */
    .pc-hero-visuals {
        position: relative;
        width: min(100%, 390px);
        height: 430px;
        margin: 8px auto 0;
        overflow: visible;
    }

    .pc-hero-imgs {
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        width: min(94vw, 390px);
        max-width: 390px;
        height: auto;
        z-index: 10;
        object-fit: contain;
    }

    /* Background circles */
    .circle1,
    .circle2,
    .circle3 {
        position: absolute;
        left: 50%;
        top: 52%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    .circle1 {
        width: 330px;
        height: 330px;
    }

    .circle2 {
        width: 270px;
        height: 270px;
    }

    .circle3 {
        width: 210px;
        height: 210px;
    }

    /* Orbit labels */
    .orbit-1 {
        width: 170px;
        height: 200px;
        margin-left: -138px;
        margin-top: -145px;
    }

    .orbit-2 {
        width: 160px;
        height: 190px;
        margin-left: -126px;
        margin-top: -155px;
    }

    .orbit-3 {
        width: 195px;
        height: 198px;
        margin-left: -152px;
        margin-top: -188px;
    }

    .pc-hero-pills {
        font-size: 12px;
        line-height: 1.2;
        padding: 7px 12px;
        white-space: nowrap;
    }
}

/* Standard iPhone and small Android phones */
@media (max-width: 430px) {

    .pc-hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .pc-hero-inner {
        max-width: 100%;
    }

    .pc-hero-content h1 {
        font-size: clamp(31px, 9.5vw, 41px);
    }

    .pc-hero-buttons {
        grid-template-columns: 1fr 1.18fr;
        gap: 8px;
    }

    .pc-hero-buttons a {
        min-height: 54px;
        padding: 8px 5px;
        font-size: 12px;
    }

    .pc-hero-features {
        gap: 8px;
    }

    .pc-hero-feature {
        min-height: 76px;
        padding: 10px 6px;
        gap: 7px;
    }

    .pc-hero-feature img,
    .pc-hero-feature i,
    .pc-hero-feature svg {
        width: 29px;
        max-width: 29px;
    }

    .pc-hero-feature h3 {
        font-size: 13px;
    }

    .pc-hero-feature p {
        font-size: 12px;
    }

    .pc-hero-visuals {
        width: 100%;
        height: 390px;
    }

    .pc-hero-imgs {
        width: min(95vw, 370px);
        bottom: 5px;
    }

    .circle1 {
        width: 300px;
        height: 300px;
    }

    .circle2 {
        width: 245px;
        height: 245px;
    }

    .circle3 {
        width: 190px;
        height: 190px;
    }

    .orbit-1 {
        width: 150px;
        height: 180px;
        margin-left: -125px;
        margin-top: -130px;
    }

    .orbit-2 {
        width: 145px;
        height: 170px;
        margin-left: -114px;
        margin-top: -140px;
    }

    .orbit-3 {
        width: 175px;
        height: 180px;
        margin-left: -137px;
        margin-top: -168px;
    }

    .pc-hero-pills {
        font-size: 11px;
        padding: 6px 9px;
    }
}

/* Very small phones */
@media (max-width: 360px) {

    .pc-hero-content h1 {
        font-size: 30px;
    }

    .pc-hero-buttons a {
        font-size: 11px;
    }

    .pc-hero-visuals {
        height: 355px;
    }

    .pc-hero-imgs {
        width: 340px;
        max-width: 98vw;
    }

    .circle1 {
        width: 275px;
        height: 275px;
    }

    .circle2 {
        width: 225px;
        height: 225px;
    }

    .circle3 {
        width: 170px;
        height: 170px;
    }
}

/* iPhone Safari safe-area support */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .pc-hero {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
            padding-bottom: max(25px, env(safe-area-inset-bottom));
        }
    }
}

/* Keep images stable in Safari */
.pc-hero img,
.pc-hero svg {
    max-width: 100%;
}

.pc-hero-imgs {
    display: block;
}/*herosectionend*/
/*clclulator*/
.pc-calc-pad {
	/* background: #fff; */
	color: var(--pc-navy);
	border-radius: 8px;
	padding: 22px;
	font-size: 3rem;
	margin-top: 8px;
}
.pc-maker-imgs{
    width:100%;
    padding:20px;
}
.pc-maker-p{
    width:100%;
    height:550px;              
    border-radius:25px;
    overflow:hidden;
    background:#f8f9fa;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.pc-maker-p img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:all .5s ease;
}
.pc-maker-p:hover img{
    transform:scale(1.05);
}
/* Responsive */
@media (max-width:991px){

    .pc-maker-p{
        height:420px;
    }

}
@media (max-width:576px){

    .pc-maker-imgs{
        padding:0;
    }
  .pc-maker-p{
        height:300px;
        border-radius:18px;
    }
}
.respi_text{
	font-size:25px
	}	
	.pc-btn-oranges {
	background: ##ee6a1f !important;
	color: #0745c2;
	font-weight: 600;
	border-radius: 6px;
	padding: 15px 40px !important;
	border: none;
	transition: .2s;
}
/*form*/
.text-orange{
    color:#f97316;
}
.form-control{
    height:54px;
    border:1px solid #cddcff;
    border-radius:8px;
    box-shadow:none;
}
textarea.form-control{
    height:160px;
    resize:none;
}
.btn-warning{
    background:#f97316;
    border:none;
    border-radius:8px;
}
.contact-box{
    background:#f8f9fc;
    border-radius:16px;
    min-height:170px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.icon-circle{
    width:48px;
    height:48px;
    background:#2563eb;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:18px;
}
.contact-box p{
    margin:0;
    color:#0a2a5e;
    line-height:1.6;
    font-size:15px;
}
.form-control::placeholder{
    color: #0a2a5e;
    opacity: 1;
}
.product-details{
    background:#fff;
}
.product-title{
    font-size:46px;
    font-weight:700;
    color:#0b3477;
}
.product-subtitle{
    color:#666;
    font-size:15px;
}
.product-list{
    padding-left:18px;
    color:#444;
}
.product-list li{
    margin-bottom:8px;
}
.main-product-img{
    border:1px solid #ddd;
    border-radius:15px;
    overflow:hidden;
}
.main-product-img img{
    width:100%;
}
.thumb{
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}
.thumb img{
    width:100%;
}
.specs-table td{
    border-bottom:1px solid #ddd;
    padding:10px 0;
}
.btn-blue{
    background:#083a84;
    color:#fff;
    border-radius:6px;
    padding:10px 25px;
}
.btn-blue:hover{
    background:#062d66;
    color:#fff;
}
.mechanism h5{
    color:#083a84;
    font-weight:600;
}
.mech-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}
.icon{
    width:45px;
    height:45px;
    border:1px solid #0b3477;
    color:#0b3477;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}
.mech-item h6{
    color:#f57c00;
    font-weight:700;
    margin-bottom:5px;
}
.mech-item p{
    color:#555;
    font-size:14px;
    margin:0;
}
.enquiry-box{
    background:#fff;
    border:1px solid #0d4ca3;
    border-radius:8px;
    padding:22px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.enquiry-title{
    color:#f57c00;
    font-size:34px;
    font-weight:700;
    margin-bottom:2px;
}
.enquiry-text{
    font-size:13px;
    color:#555;
    margin-bottom:20px;
}
.form-label{
    font-size:14px;
    font-weight:600;
    color:#0d3b83;
    margin-bottom:6px;
}
.form-control,
.form-select{
    height:48px;
    border:1px solid #0d4ca3;
    border-radius:6px;
    font-size:14px;
}
textarea.form-control{
    height:90px;
    resize:none;
}
.form-control:focus,
.form-select:focus{
    border-color:#0d4ca3;
    box-shadow:none;
}
.submit-btn{
    background:#f57c00;
    color:#fff;
    font-weight:600;
    border-radius:6px;
    height:48px;
    border:none;
}
.submit-btn:hover{
    background:#dd6d00;
    color:#fff;
}
/* ================= TABLET ================= */
@media(max-width:992px){

    .product-title{
        font-size:36px;
    }

    .contact-box{
        min-height:160px;
        padding:25px 15px;
    }

    .enquiry-title{
        font-size:30px;
    }

}



/* ================= MOBILE ================= */
@media(max-width:768px){

    .product-title{
        font-size:30px;
        line-height:1.2;
    }


    .product-subtitle{
        font-size:14px;
    }


    .main-product-img{
        margin-bottom:15px;
    }


    .thumb{
        margin-bottom:10px;
    }


    .product-list{
        padding-left:18px;
    }


    .product-list li{
        font-size:14px;
    }



    /* Contact boxes */
    .contact-box{
      min-height: 100px !important;
    padding: 10px 10px !important
    }


    .icon-circle{
        width:45px;
        height:45px;
        font-size:16px;
        margin-bottom:12px;
    }


    .contact-box p{
        font-size:13px;
        word-break:break-word;
    }



    /* Mechanism section */
    .mech-item{
        gap:12px;
        margin-bottom:15px;
    }


    .icon{
        width:40px;
        height:40px;
        font-size:17px;
    }


    .mech-item h6{
        font-size:15px;
    }


    .mech-item p{
        font-size:13px;
    }



    /* Enquiry Form */
    .enquiry-box{
        padding:18px;
    }


    .enquiry-title{
        font-size:26px;
    }


    .enquiry-text{
        font-size:12px;
    }


    .form-control,
    .form-select{
        height:45px;
        font-size:13px;
    }


    textarea.form-control{
        height:85px;
    }


    .submit-btn{
        height:45px;
    }

}



/* ================= SMALL MOBILE ================= */
@media(max-width:576px){

    .product-title{
        font-size:26px;
    }


    .contact-box{
        min-height:150px;
    }


    .col-6{
        width:100%;
    }


    .enquiry-title{
        font-size:24px;
    }


    .btn-blue{
        width:100%;
    }

}
/*vedio*/
.pc-video-card{
    width:100%;
}


.pc-video-thumb{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}


.pc-video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}


.pc-video-thumb iframe{
    width:100%;
    height:100%;
    display:block;
    border:0;
}


.pc-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:#f97316;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:2;
}
@media(max-width:768px){

    .pc-video-thumb{
        height:280px;
        width:100%;
        border-radius:12px;
    }


    .pc-video-thumb img{
       width: 100%;
        height: 52%;
        object-fit: fill;
        object-position: center;
        aspect-ratio: 16 / 9;
    }
.pc-video-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--pc-shadow-lg);
display: flex;
        height: 34%;
        align-items: center;
}

    .pc-play{
        width:60px;
        height:60px;
        font-size:22px;
    }

}


@media(max-width:400px){

    .pc-video-thumb{
        height:240px;
    }


    .pc-play{
        width:50px;
        height:50px;
        font-size:18px;
    }

}
/* ===========================
   Main Wrapper
=========================== */
.partner-product-wrap-partner {
	position: relative;
	overflow: hidden;
	background: #fff;
	right: -71px;
}
.partner-product-wrap{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    min-height:430px;
    padding:40px 20px 20px;
    z-index:2;
}
/* Blue Circle*/
#partner-circles {
	position: absolute;
    width: 700px;
    height: 700px;
    border: 62px solid #123b87;
    border-radius: 50%;
    right: -163px;
    bottom: -244px;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(188deg);
    z-index: 1;
}
/* Product Image */
.partner-products {
	position: relative;
    max-width: 544px;
    width: 85%;
    z-index: 2;
    right: -64px;
    top: 86px;
}


.partner-badges {
	position: absolute;
    top: 80px;
    left: 18px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #1d4ed8;
    border-radius: 14px;
    padding: 10px 18px 10px 0;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
/* Orange Circle */
.badge-icon{
    width:58px;
    height:58px;
    background:#f58220;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
    margin-right:-16px;
    z-index:2;
}
/* White Box */
.badge-text {
	position: relative;
	background: #fff;
	padding: -1px 5px 1px 28px !important;
	line-height: 1.2;

}
.badge-text small{
    display:block;
    font-size:13px;
    color:#3d3d3d;
}
.badge-text strong{
    display:block;
    font-size:28px;
    color:#f58220;
    font-weight:700;
}
.badge-text span{
    display:block;
    font-size:18px;
    color:#123b87;
}
/* Curved Connector */
.badge-textw {
	 position: absolute;
    top: 154px;
    left: 89px;
    z-index: 5;
}

.arrow-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}
/*blog sloder */
.pc-blog-slider-section{
    overflow:hidden;
}
.pc-blog-card{
    display:block;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}
.pc-blog-card:hover{
    transform:translateY(-6px);
}
/* Image */
.pc-blog-img{
    height:230px;
    overflow:hidden;
}
.pc-blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.pc-blog-card:hover .pc-blog-img img{
    transform:scale(1.08);
}
/* Content */
.pc-blog-body{
    padding:20px;
}
.pc-blog-meta{
    color:#f58220;
    font-weight:600;
    font-size:13px;
}
.pc-blog-body h5{
    color:#082c70;
    font-weight:700;
    margin-top:10px;
}
.pc-blog-body p{
    color:#6c757d;
    font-size:14px;
    line-height:1.6;
}
.pc-blog-read{
    color:#0747c4;
    font-weight:600;
    font-size:14px;
}

.pc-btn-orangess {
	background: #e75a1f;
	color: #fff;
	font-weight: 600;
	border-radius: 16px;
	padding: 8px 22px !important;
	border: none;
	transition: .2s;
}

/*tesetimonial */
.pc-testi{
    padding:50px 0;
}


.pc-testimonial-slider .owl-stage{
    display:flex;
}



.pc-testimonial-slider .owl-stage{
    display:flex;
}

.pc-testi-card{

    background:#fff;

    padding:22px;

    border-radius:12px;

    height:100%;

    min-height:210px;

    box-shadow:0 5px 18px rgba(0,0,0,0.08);

    border:1px solid #edf2ff;

}



.pc-testi-card p{

    color:#555;

    line-height:1.7;

    margin:0;

}



.pc-avatar{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#4b93fd;

    color:#fff;

    font-weight:600;

    font-size:18px;

}



.pc-testi-card small{

    font-size:13px;

}



.pc-testimonial-slider .owl-nav{

    position:absolute;

    right:0;

    top:-55px;

}


.pc-testimonial-slider .owl-nav button{

    width:35px;

    height:35px;

    background:#4b93fd!important;

    color:white!important;

    border-radius:50%!important;

    margin-left:8px;

}






.pc-testimonial-slider .owl-dot.active span{

    background:#4b93fd;

}
.pc-testi{
    overflow:hidden;
}

.pc-testimonial-slider{
    width:100%;
    overflow:hidden;
}


.pc-testimonial-slider .owl-stage-outer{
    overflow:hidden;
}


.pc-testimonial-slider .owl-stage{
    display:flex;
}


.pc-testimonial-slider .owl-item{
    padding:0 10px;
    box-sizing:border-box;
}


.pc-testi-card{
    width:100%;
    box-sizing:border-box;
}
/*animatiom*/
.pc-feature-strip{
    width:100%;
    overflow:hidden;
    background:#1267e7;
}


.pc-feature-track{
    display:flex;
    width:max-content;
    flex-shrink:0;
    animation:featureLoop 5s linear infinite;
}


.pc-feature-group{
    display:flex;
    flex-shrink:0;
}


.pc-feature-item{
    width:260px;
    min-width:260px;
    max-width:260px;

    height:90px;

    display:flex;
    align-items:center;

    gap:15px;

    padding:0 25px;

    color:#fff;

    border-right:1px solid rgba(255,255,255,.25);

    flex:0 0 260px; 
    flex-shrink:0;

    box-sizing:border-box;
}


.pc-feature-item img{
    width:45px;
    height:45px;

    object-fit:contain;

    flex-shrink:0;
}


.pc-feature-item span{
    font-size:16px;
    line-height:20px;
    white-space:nowrap;
    flex-shrink:0;
}


@keyframes featureLoop{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-240px);
    }

}


.pc-feature-strip:hover .pc-feature-track{
    animation-play-state:paused;
}

/*productcard */
/* Tablet */
@media (max-width:992px){

    .pc-prod-card{
        gap:15px;
        padding:15px;
    }

    .pc-prod-img{
        width:170px;
        min-width:170px;
        height:170px;
    }

}


/* Mobile */
@media (max-width:768px){

    .pc-prod-card{
        flex-direction:column;
    }

    .pc-prod-img{
        width:200px;
        min-width:200px;
        height:200px;
        margin:auto;
    }

}

/*partner benfits*/

/* Mobile View */
@media(max-width:768px){

 .partner-product-wrap-partner {
	width: 100%;
	right: 0;
	top: 0;
	margin-bottom: -183px;
}

    .partner-product-wrap{
        position:relative;
        height:360px;
        display:flex;
        justify-content:center;
        align-items:center;
        overflow:hidden;
    }

.partner-products {
	width: 220px;
	max-width: 80%;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 2;
	top: -52px;
	left: 77px;
}

    .partner-badges{
        position:absolute;
        top:15px;
        left:50%;
        transform:translateX(-50%);
        z-index:3;
        display:flex;
        align-items:center;
        gap:10px;
    }


    .badge-icon img{
        width:45px;
        height:45px;
    }


    .badge-text{
        font-size:12px;
        line-height:1.2;
    }


    .badge-text strong{
        display:block;
        font-size:15px;
    }


    .badge-textw{
        position:absolute;
        top:80px;
        left:50%;
        transform:translateX(-50%);
        z-index:3;
    }


    .arrow-img{
        width:35px;
    }


#partner-circles {
	position: absolute;
	width: 400px;
	height: 400px;
	border: 34px solid #123b87;
	border-radius: 50%;
	right: -131px;
	bottom: 63px;
	border-top-color: transparent;
	border-left-color: transparent;
	transform: rotate(201deg);
	z-index: 1;
}
}


/* Small Mobile */
@media(max-width:400px){

    .partner-product-wrap{
        height:320px;
    }


    .partner-products{
        width:180px;
    }


    .partner-badges{
        top:10px;
    }


    .badge-icon img{
        width:38px;
        height:38px;
    }


    .badge-text{
        font-size:11px;
    }

}

/*hero setion*/
/* ================= MOBILE ================= */

@media(max-width:768px){

    .col-lg-6{
        text-align:center;
    }


    .display-5{
        font-size:30px;
        line-height:1.2;
    }


    .display-5 span{
        display:inline;
    }


    .fw-semibold.text-navy{
        font-size:15px;
    }


    /* Buttons */
    .d-flex.flex-wrap.gap-3.mt-4{
        flex-wrap:nowrap !important;
        justify-content:center;
        gap:15px !important;
    }


    .custom-btn{
        width:auto;
        max-width:none;
        padding:12px 18px!impotantFvedio
		;
        font-size:13px;
        white-space:nowrap;
    }


    /* Certificates */
    .d-flex.flex-wrap.gap-4.mt-4{
        justify-content:center;
        gap:15px !important;
        margin-top:25px !important;
    }


    .pc-cert-chip{
        padding:10px 15px;
    }


    .pc-cert-chip i{
        font-size:22px;
    }


    .pc-cert-chip span{
        font-size:14px;
    }


}



/* ================= SMALL MOBILE ================= */

@media(max-width:400px){

    .display-5{
        font-size:25px;
        line-height:1.25;
    }


    .display-5 span{
        display:inline;
        font-size:24px;
    }


    .fw-semibold.text-navy{
        font-size:14px;
    }


    /* Buttons */
    .d-flex.flex-wrap.gap-3.mt-4{
        gap:10px !important;
    }


    .custom-btn{
        padding:10px 12px;
        font-size:12px;
    }


    .custom-btn i{
        margin-right:5px !important;
    }


    /* Certificates */
    .d-flex.flex-wrap.gap-4.mt-4{
        gap:10px !important;
    }


    .pc-cert-chip{
        width:48%;
        justify-content:center;
    }


    .pc-cert-chip i{
        font-size:20px;
    }


    .pc-cert-chip span{
        font-size:13px;
    }

}
.pc-feat-text{
    width: calc(100% - 55px);
    min-width: 250px;
}

.pc-feat-text div{
    white-space: nowrap;
}

.pc-feat-text small{
    white-space: nowrap;
}

.woocommerce div.product .woocommerce-tabs .panel {
	margin: 0 0 0 0 !important;
	border: 1px solid #ccc;
	padding: 10px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none;
	padding: 0 0 0 1em;
	margin: 0 0 -1px!important;
	overflow: hidden;
	position: relative;
}