/* Place your unminified version of the theme styles here. */

* {
    font-family: 'Poppins';
}

:root {
    --black: #000;
    --white: #fff;
    --primary: #35ad45;
}

a {
    text-decoration: none;
    color: var(--primary);
}

p {
    line-height: 1.7;
    font-size: 15px;
    color: #000000b3;
}

h1,
.h1 {
    font-size: clamp(1.563rem, 1.625rem + 0.9615vw, 2.5rem);
}

h2,
.h2 {
    font-size: clamp(1.375rem, 1.3846rem + 0.9615vw, 2.25rem);
}

h3,
.h3 {
    font-size: clamp(1.38rem, 1.1346rem + 0.9615vw, 2.0rem);
}

h4,
.h4 {
    font-size: clamp(1.25rem, 1.0577rem + 0.7692vw, 1.75rem);
}

h5,
.h5 {
    font-size: clamp(1.125rem, 0.9808rem + 0.5769vw, 1.5rem);
}

h6,
.h6 {
    font-size: clamp(1.0rem, 0.8808rem + 0.4669vw, 1.25rem);
}

/*------------ common css starts -----------*/
.heading {
    color: var(--black);
}

.btn {
    border-radius: 30px;
    background: var(--primary);
    padding: 8px 25px;
    width: fit-content;
    color: var(--white);
    font-weight: var(--fw-5);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    animation: ripple 0.4s ease-out;
    opacity: 0;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/*---- back to top ----*/
.top-btn {
    background: var(--primary);
    fill: var(--white);
}

/*---------- .header css starts -----------*/
.scrolled {
    background: var(--black);
    border-bottom: 1px solid #7f7d7d30;
}

.header:not(body.home .header){
        background: #000;
    }

.header nav ul li a:not(.show-ul li a) {
    color: var(--white);
}

.dropdown li a:not(.show-ul .dropdown li a) {
    color: var(--black);
}

.header nav ul a:hover {
    color: var(--primary) !important;
}

.search-form form input {
    background: var(--white);
    border: 1px solid #cccccc96;
    color: var(--black);
}

.header .search-bar-show {
    background-color: #edf2f5;
    transform: translateY(0);
}

.hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
    transform: translate(120px, -10px);
}

.header ul .dropdown ul {
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.15);
    transition: all .4s ease-in-out;
    opacity: 0;
    border: 1px solid #cccccc59;
    transform: translate(40px);
}

.header .dropdown:hover>ul {
    visibility: visible;
    transform: translate(0);
    opacity: 1;
}

.show-ul li a {
    color: var(--black);
}

.header-btn .btn {
    border-radius: 5px;
}

/*----------------- hero css starts -------------*/
.hero-content .hero-title span {
    font-weight: var(--fw-5);
}

.hero-content .hero-title,
.hero-sub-title,
.hero-content .hero-title span {
    color: var(--white);
}
/*-------- Services css starts --------*/
.service-box{
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #e2e2e2;
}

.service-title {
    color: var(--black);
    font-size: 20px;
    font-weight: var(--fw-6);
}

.overlap-bg {
    background: var(--white);
    border-radius: 10px;
}

/*----------------- faqs css starts ------------*/
:is(.faq, .accordion) details {
    border-bottom: 2px solid #e3e3e3;
}

:is(.faq, .accordion) .actives::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="15" height="15" fill="%233c3c3c"><path d="M432 256c0 17.7-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32h352c17.7 0 32 14.3 32 32"/></svg>');
}

/*------------ Testimonial css starts --------*/
.testimonial-card {
    background: var(--white);
    box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, .1);
}

.info span {
    color: #6d6d6dc9;
}

.testimonial-slider :is(.button-prev, .button-next) {
    background: var(--white);
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .1);
}

.info .name {
    font-size: 17px;
    color: #3c3c3cd1;
    font-weight: var(--fw-6);
}

.info span {
    font-size: 14px;
}

/*------------ blog-cards css starts ---------*/
.blog-card,
.grid-35 {
    --light: #3c3c3c;
    --date: #3c3c3cc7;
    --cat-bg: #edf2f5;
    --cat-clr: #565656;
}

.overlay-card {
    --position: absolute;
    --h-100: 100%;
    --light: var(--white);
    --date: var(--white);
    --cat-bg: var(--white);
    --cat-clr: var(--black);
    --ellipsis-p: #ffffffa3;
}

.blog-btn,
.blog-title {
    color: var(--light);
}

.img-placeholder {
    background-color: #edf2f5;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
}

.blog-title:hover {
    color: var(--primary);
}

.blog-btn:hover {
    letter-spacing: 0.7px;
    color: var(--primary);
    fill: var(--primary);
}

.blog-btn svg {
    transform: translateX(-15px);
    transition: all 0.3s;
    opacity: 0;
}

.blog-btn:hover svg {
    transform: translateX(5px);
    opacity: 1;
}

/* -----------------Single-Author starts ------------- */

.flex-single-ath-profile{
            font-size: 20px;
            font-weight: 600;
        }

        .flex-single-ath-profile img{
            border-radius: 50%;
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
        }

.related-head {
    font-size: 30px;
    font-weight: 700;
	margin-bottom:40px
}


.VMV-container .col-lg-4:nth-child(1) .o-vmv-col .col-ttl{
        background: #35ad45c2;
    }
    .VMV-container .col-lg-4:nth-child(2) .o-vmv-col .col-ttl{
        background: #ff000078;
    }
    .VMV-container .col-lg-4:nth-child(3) .o-vmv-col .col-ttl{
        background: #000f3fb3;
    }

     .o-vmv-col{
        background: #cccccc3b;
        border-radius: 20px;
    }

    .o-vmv-col .col-ttl{
        font-size: 20px;
        font-weight: 600;
        color: var(--white);
    }

    .vpn-adv-col{
        background: #35ad450d;
        border-radius: 10px;
        border: 1px solid var(--primary);
    }

    .vpn-adv-col .vpn-ttl{
        font-size: 18px;
        font-weight: 600;
    }
    
    .vpn-big-adv-col{
        background: var(--primary);
        border:unset;
    }

    .vpn-big-adv-col :where(div, p){
        color: var(--white);
    }

/*----------------- Footer css starts -------------*/
.footer {
    background: var(--black);
}

.footer .footer-right span,
.footer .list-heading{
    font-size: 18px;
    color: #e5e5e5;
    font-weight: var(--fw-6);
}

.footer-right ul li a {
    display: inline-block;
    transition: all 0.2s;
}

.newsletter+p{
    color: var(--white) !important;
    font-size: 18px;
}

.footer-left p,
.footer-right ul li a, .btm-footer p {
    color: #919191;
}

.footer-right ul li a:hover {
    transform: translateX(10px);
    color: var(--primary);
}

.btm-footer{
    background: #0e0e0e;
}

.footer-left p a {
    font-weight: var(--fw-6);
}

.media ul li a:hover {
    transform: rotate(360deg);
}

/*------------ single page css starts --------------*/
.wid-title {
    font-size: 22px;
    font-weight: var(--fw-6);
    margin-bottom: 15px;
}

.also-read ul a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 1px;
}

.also-read ul a:hover {
    color: var(--primary);
}

.br-2 {
    border-radius: 20px;
}

/* ------ */
.blog-details span {
    color: #7d7d82;
    letter-spacing: 2px;
}

/*------*/
:is(.author-page, .sticky) ul li a {
    background: #f7f5ff;
}

.contact-bx ul li a{
    background: var(--white);
}

.author-page .media ul li a {
    background: var(--white);
}

/*---------- table of content css starts --------*/
.toc-.header {
    color: var(--white);
    fill: var(--white);
    background: var(--primary);
}

.toc-body::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.toc-body::-webkit-scrollbar {
    background: #ccc;
    width: 5px;
}

.toc-body .active-li>a {
    color: var(--primary);
}

.toc-body ul li a {
    color: var(--black);
    font-size: 14px;
}

#tableofcontent{
	background: #35ad451a;
    width: fit-content;
	border-radius: 10px;
    overflow: hidden;
	margin-block:10px 30px
}

#tableofcontent .head-th{
	background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}

#tableofcontent ul{
	padding:10px 40px;
}

/*------- sources css starts ----------*/

.sources{
    background: #35ad450f;
    padding: 20px;
    margin-bottom: 15px;
	border-left:2px solid var(--primary)
}

/*------- table css starts ----------*/
.table-responsive table tr:first-child th {
    background: var(--primary);
    font-weight: var(--fw-6);
    font-size: 19px;
    color: var(--white);
}

.table-responsive tr td:last-child {
    color: #7a7a7a;
}

.table-responsive tr:nth-child(odd) {
    background: #35ad451c;
    border-block: 1px solid #cccccc61;
}

/*------- pros.cons css starts ----------*/
.pc-container:first-child .pc-.header {
    background: #e6f1ec;
    border-bottom: 2px solid #02783f;
}

.pc-container:last-child .pc-.header {
    background: #ffeae5;
    border-bottom: 2px solid #fe2f00;
}

.pc-container:last-child .pc-body ul li::marker {
    color: #ff0000;
}

/*------- authhor profile css starts ----------*/
.author-profiles {
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}

.author-profiles:hover {
    transform: translateY(5px);
    box-shadow: none;
}

.auth-img {
    outline: 1px solid var(--primary);
    outline-offset: 5px;
}

.auth-img img,
.auth-img {
    border-radius: 50%;
}

.about-profile span {
    color: #6d6d6d;
    font-size: 14px;
}

.footer .grid-blog-card  .date span{
   color: #919191;
	font-size:14px
}

.footer .grid-blog-card a{
   color: var(--cat-bg);
}

/* -------------- media query starts --------------- */
@media screen and (max-width:1024px) {

    .header nav {
        transform: translateY(100%);
        display: block;
        background-color: #f7f5ff;
    }

    .show-ul {
        transform: translate(0) !important;
    }

    .header .dropdown.show-dropdown>ul {
        transform: scaleY(1);
        visibility: visible;
        opacity: 1;
        display: block;
        width: 100%;
        margin-bottom: 0;
        border: 1px solid #ffffff1a;
    }

    .footer-left {
        border: unset;
    }

    .heading {
        font-size: 24px;
    }
}

@media screen and (min-width:768px) and (max-width:1023px) {
    .hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
        transform: translate(200px, -10px);
    }
}

@media screen and (max-width:600px) {
    .vpn-list li {
        border-right: 0 !important;
        padding-right: 0 !important;
    }

    .hero-nav .search-bar-show+.toggle-slide-btn+.mob-search-btn {
        transform: unset;
    }
}